Luiz Santana
Luiz Santana
did anyone fix this? I'm also facing the same issue
I found a workaround to fix this problem. Instead of having my test related classes/packages inside: `app/src/androidTest/com.company.app.**` I'm createad a subpackage called test: `app/src/androidTest/com.company.app.**` Then, in my gradle file for...
I've updated the solution above 👆 check it out
@MarisaLopes, note that you should not add to `proguardFiles` to your **buildVariant** but with `multiDexKeepProguard` Then you add that line to your rules files. Something like: ```groovy buildTypes { uitesting...