Created
March 9, 2011 17:06
-
-
Save matthawley/862555 to your computer and use it in GitHub Desktop.
RoboGuice Proguard with Optimizations and Obfuscation
This file contains 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
-optimizationpasses 5 | |
-dontusemixedcaseclassnames | |
-dontskipnonpubliclibraryclasses | |
-dontpreverify | |
-verbose | |
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* | |
-ignorewarnings | |
-renamesourcefileattribute SourceFile | |
-keepattributes SourceFile,LineNumberTable,*Annotation*,Signature | |
-keep public class * extends android.app.Activity | |
-keep public class * extends android.app.Application | |
-keep public class * extends android.app.Service | |
-keep public class * extends android.content.BroadcastReceiver | |
-keep public class * extends android.content.ContentProvider | |
-keep public class com.android.vending.licensing.ILicensingService | |
-keepclasseswithmembers class * { native <methods>; } | |
-keepclasseswithmembers class * { | |
public <init> (android.content.Context, android.util.AttributeSet); | |
} | |
-keepclasseswithmembers class * { | |
public <init> (android.content.Context, android.util.AttributeSet, int); | |
} | |
-keepclassmembers class * implements android.os.Parcelable { static android.os.Parcelable$Creator *; } | |
-keepclassmembers class **.R$* { public static <fields>; } | |
-keepclasseswithmembernames class * { native <methods>; } | |
-keepclassmembers enum * { | |
public static **[] values(); | |
public static ** valueOf(java.lang.String); | |
} | |
-keepclassmembers class * extends android.app.Activity { | |
public void *(android.view.View); | |
} | |
-keepclassmembers class * { | |
@com.google.inject.Inject <init>(...); | |
@com.google.inject.Inject <fields>; | |
} | |
-keepclassmembers class * { | |
void *(net.eworldui.videouploader.events.*); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment