android-proguard-snippets
android-proguard-snippets copied to clipboard
Proguard configurations for common Android libraries
After upgrading rxjava to 1.1.1, the original proguard rules did not work anymore. This resulted in runtime exceptions including `java.lang.NoSuchFieldException: producerIndex` ([more info](https://github.com/ReactiveX/RxJava/issues/3097)). I now used the proguard rules from...
Added amazon iap
add rules for latest release of RxJava and update link of RxJava
It would be awesome to have the configuration for Admob, the one on the site does not work for proguard with optimize
See this line: https://github.com/krschultz/android-proguard-snippets/blob/master/libraries/proguard-guava.pro#L7 according to: https://code.google.com/p/guava-libraries/wiki/UsingProGuardWithGuava You must in use jsr305.jar not jsr250
The guava snippet didn't work for me. As described I added `provided 'javax.annotation:jsr250-api:1.0'` to my dependecies. But that didn't help. So I added ``` -dontwarn javax.annotation.** -dontwarn sun.misc.Unsafe ``` to...
Hi, you could add the proguard config to avoid a bug in some samsung phones https://code.google.com/p/android/issues/detail?id=78377 ``` something like this # https://phabricator.wikimedia.org/T78197: # NoClassDefFoundError: android.support.v7.internal.view.menu.MenuBuilder # http://stackoverflow.com/questions/26657348/appcompat-v7-v21-0-0-causing-crash-on-samsung-devices-with-android-v4-2-2 # Allow obfuscation...