Created
November 25, 2014 12:27
-
-
Save aziemski/4e952ee5e10daa6e5b91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dagger | |
| -dontwarn dagger.internal.codegen.** | |
| -keepclassmembers,allowobfuscation class * { | |
| @javax.inject.* *; | |
| @dagger.* *; | |
| <init>(); | |
| } | |
| -keep class dagger.* { *; } | |
| -keep class javax.inject.* { *; } | |
| -keep class * extends dagger.internal.Binding | |
| -keep class * extends dagger.internal.ModuleAdapter | |
| -keep class * extends dagger.internal.StaticInjection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment