
The new Android Testing Support library stuff causes proguard to freak out, so make proguard ignore all that stuff when running tests.
17 lines
344 B
Prolog
17 lines
344 B
Prolog
-dontwarn android.test.**
|
|
-dontwarn android.support.test.**
|
|
-dontnote junit.framework.**
|
|
-dontnote junit.runner.**
|
|
|
|
# Uncomment this if you use Mockito
|
|
#-dontwarn org.mockito.**
|
|
|
|
-keep class org.hamcrest.** { *; }
|
|
-dontwarn org.hamcrest.**
|
|
|
|
-keep class org.junit.** { *; }
|
|
-dontwarn org.junit.**
|
|
|
|
-keep class junit.** { *; }
|
|
-dontwarn junit.**
|