Hello!
We are investigating possibility to use ProGuard or DexGuard to obfuscate our code.
We also have a bunch of Robotium automated tests. We have a problem when we build the app with obfuscation enabled. The classes in the app project are obfuscated, but the references to those classes in the tests are not. Hence tests fail right away.
In Proguard/DexGuard there is an option to apply mapping from previous build to the next one. But I can't find a place where to put this option for tests, so that classes will be renamed according to obfuscation mapping. I think we need to put this option into buildType used for building tests, but I can't find how to access it. Does anyone now how to do that?
Thanks!