When my application is build with ProGuard, it fails with following message. I use a default proguard.cfg generated by Android SDK with some -libraryjars. What can I do for it?<
Sometimes it happens when you include one of your test libraries as a regular module dependency. For example don't do:
implementation 'com.android.support.test:runner:1.0.2' //wrong!!
do:
androidTestImplementation 'com.android.support.test:runner:1.0.2' //right (: