"android - gradle testproguardfile - what is its purpose relating to unit tests" Code Answer

3

now i see what it is testproguadfile ('some proguard file') gives your test apk a proguard file to use when testing. this allows us test our app using a proguard file. the test apk generated when you run a test will be obfuscated with proguard and then the test will run. this is a good way to test for any anomalies proguard could create in your app.

By Cristian Lucaci on June 4 2022

Answers related to “android - gradle testproguardfile - what is its purpose relating to unit tests”

Only authorized users can answer the Search term. Please sign in first, or register a free account.