Advertisement
Guest User

Untitled

a guest
Oct 1st, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. -dontwarn org.apache.**
  2. -keep class com.google.**
  3. -dontwarn com.google.**
  4. -keep public class com.android.vending.licensing.ILicensingService
  5.  
  6. -keep class autovalue.shaded.com.google.**
  7. -dontwarn autovalue.shaded.com.google.**
  8.  
  9. -dontwarn okhttp3.**
  10. -dontwarn okio.**
  11.  
  12. -optimizationpasses 5
  13. -dontusemixedcaseclassnames
  14. -dontskipnonpubliclibraryclasses
  15. -dontskipnonpubliclibraryclassmembers
  16. -dontpreverify
  17. -verbose
  18. -dump class_files.txt
  19. -printseeds seeds.txt
  20. -printusage unused.txt
  21. -printmapping mapping.txt
  22. -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
  23.  
  24. -allowaccessmodification
  25. -keepattributes *Annotation*
  26. -renamesourcefileattribute SourceFile
  27. -keepattributes SourceFile,LineNumberTable
  28. -repackageclasses ''
  29.  
  30.  
  31. -keep public class * extends android.app.Activity
  32. -keep public class * extends android.app.Application
  33. -keep public class * extends android.app.Service
  34. -keep public class * extends android.content.BroadcastReceiver
  35. -keep public class * extends android.content.ContentProvider
  36. -keep public class * extends android.app.backup.BackupAgentHelper
  37. -keep public class * extends android.preference.Preference
  38. -keep public class com.android.vending.licensing.ILicensingService
  39.  
  40.  
  41. # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
  42. -keepclasseswithmembernames class * {
  43. native <methods>;
  44. }
  45. -keep public class * extends android.view.View {
  46. public <init>(android.content.Context);
  47. public <init>(android.content.Context, android.util.AttributeSet);
  48. public <init>(android.content.Context, android.util.AttributeSet, int);
  49. public void set*(...);
  50. }
  51. -keepclasseswithmembers class * {
  52. public <init>(android.content.Context, android.util.AttributeSet);
  53. }
  54. -keepclasseswithmembers class * {
  55. public <init>(android.content.Context, android.util.AttributeSet, int);
  56. }
  57. -keepclassmembers class * extends android.app.Activity {
  58. public void *(android.view.View);
  59. }
  60. # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
  61. -keepclassmembers enum * {
  62. public static **[] values();
  63. public static ** valueOf(java.lang.String);
  64. }
  65. -keep class * implements android.os.Parcelable {
  66. public static final android.os.Parcelable$Creator *;
  67. }
  68. -keepclassmembers class **.R$* {
  69. public static <fields>;
  70. }
  71. # The support library contains references to newer platform versions.
  72. # Don't warn about those in case this app is linking against an older
  73. # platform version. We know about them, and they are safe.
  74. -dontwarn android.support.**
  75.  
  76.  
  77.  
  78.  
  79. -dontwarn android.support.design.**
  80. -keep class android.support.design.** { *; }
  81. -keep interface android.support.design.** { *; }
  82. -keep public class android.support.design.R$* { *; }
  83.  
  84. -keep public class android.support.v7.widget.** { *; }
  85. -keep public class android.support.v7.internal.widget.** { *; }
  86. -keep public class android.support.v7.internal.view.menu.** { *; }
  87.  
  88. -keep class android.support.v7.internal.** { *; }
  89. -keep interface android.support.v7.internal.** { *; }
  90. -keep class android.support.v7.** { *; }
  91. -keep interface android.support.v7.** { *; }
  92.  
  93. -keep class com.google.firebase.** { *; }
  94. -keep class com.firebase.ui.database.** { *; }
  95. -dontwarn android.support.v7.**
  96. -keep class android.support.v7.** { *; }
  97. -keep interface android.support.v7.** { *; }
  98. -keep public class * extends android.support.v4.view.ActionProvider {
  99. public <init>(android.content.Context);
  100. }
  101.  
  102. -keep class package.ViewHolder.** {
  103. *;
  104. }
  105.  
  106. -keepclassmembers class package.Models.** {
  107. *;
  108. }
  109. -keep class su.gamepoint.opendomofon.pro.viewholders.** { *; }
  110. -keep class su.gamepoint.opendomofon.pro.FirechatMsgViewHolder.** { *; }
  111. -keep class com.firebase.ui.database.FirebaseRecyclerAdapter.** { *; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement