Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2012
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. -optimizationpasses 5
  2. -dontusemixedcaseclassnames
  3. -dontskipnonpubliclibraryclasses
  4. -dontpreverify
  5. #-ignorewarnings
  6. -verbose
  7. -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
  8.  
  9. -keep public class * extends android.app.Activity
  10. -keep public class * extends android.app.Application
  11. -keep public class * extends android.app.Service
  12. -keep public class * extends android.content.BroadcastReceiver
  13. -keep public class * extends android.content.ContentProvider
  14. -keep public class * extends android.app.backup.BackupAgentHelper
  15. -keep public class * extends android.preference.Preference
  16. -keep public class com.android.vending.licensing.ILicensingService
  17.  
  18. -keepclasseswithmembernames class * {
  19. native <methods>;
  20. }
  21.  
  22. -keepclasseswithmembers class * {
  23. public <init>(android.content.Context, android.util.AttributeSet);
  24. }
  25.  
  26. -keepclasseswithmembers class * {
  27. public <init>(android.content.Context, android.util.AttributeSet, int);
  28. }
  29.  
  30. -keepclassmembers class * extends android.app.Activity {
  31. public void *(android.view.View);
  32. }
  33.  
  34. -keepclassmembers enum * {
  35. public static **[] values();
  36. public static ** valueOf(java.lang.String);
  37. }
  38.  
  39. -keep class * implements android.os.Parcelable {
  40. public static final android.os.Parcelable$Creator *;
  41. }
  42.  
  43. -keep class android.support.v4.app.** { *; }
  44. -keep interface android.support.v4.app.** { *; }
  45. -keep class com.actionbarsherlock.** { *; }
  46. -keep interface com.actionbarsherlock.** { *; }
  47. -keepattributes *Annotation*
  48.  
  49. -keepclassmembers class **.R$* { public static <fields>; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement