You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In recent versions of Android projects (Android Gradle Plugin maybe?), the filenames contain the name of the app, version name, version code, and the build variant. This becomes problematic because the tests will start failing once the version name, version code changes or if the developer switches the build variant.
As a work around, I use a custom namer that strips this information off the file name. Things are good with the custom namer. However, when it comes to combination approvals, the API doesn't allow me to specify a namer. I tried using the Options API, but I am unable to get a namer in.
What is the best way to achieve this?
The text was updated successfully, but these errors were encountered:
In recent versions of Android projects (Android Gradle Plugin maybe?), the filenames contain the name of the app, version name, version code, and the build variant. This becomes problematic because the tests will start failing once the version name, version code changes or if the developer switches the build variant.
As a work around, I use a custom namer that strips this information off the file name. Things are good with the custom namer. However, when it comes to combination approvals, the API doesn't allow me to specify a namer. I tried using the Options API, but I am unable to get a namer in.
What is the best way to achieve this?
The text was updated successfully, but these errors were encountered: