Created
July 10, 2015 20:53
-
-
Save silmood/6240060ecd2a51f79153 to your computer and use it in GitHub Desktop.
The-FM proguard rules
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
| # Add project specific ProGuard rules here. | |
| # By default, the flags in this file are appended to flags specified | |
| # in /Users/Silmood/Library/Android/sdk/tools/proguard/proguard-android.txt | |
| # You can edit the include path and order by changing the proguardFiles | |
| # directive in build.gradle. | |
| # | |
| # For more details, see | |
| # http://developer.android.com/guide/developing/tools/proguard.html | |
| # Add any project specific keep options here: | |
| # If your project uses WebView with JS, uncomment the following | |
| # and specify the fully qualified class name to the JavaScript interface | |
| # class: | |
| #-keepclassmembers class fqcn.of.javascript.interface.for.webview { | |
| # public *; | |
| #} | |
| -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 * extends android.app.backup.BackupAgentHelper | |
| -keep public class * extends android.preference.Preference | |
| -keep public class com.android.vending.licensing.ILicensingService | |
| -dontnote com.android.vending.licensing.ILicensingService | |
| -keepclasseswithmembernames class * { | |
| public <init>(android.content.Context, android.util.AttributeSet); | |
| } | |
| -keepclasseswithmembernames class * { | |
| public <init>(android.content.Context, android.util.AttributeSet, int); | |
| } | |
| # Preserve static fields of inner classes of R classes that might be accessed | |
| # through introspection. | |
| -keepclassmembers class **.R$* { | |
| public static <fields>; | |
| } | |
| # Preserve the special static methods that are required in all enumeration classes. | |
| -keepclassmembers enum * { | |
| public static **[] values(); | |
| public static ** valueOf(java.lang.String); | |
| } | |
| -keep public class * { | |
| public protected *; | |
| } | |
| -keep class * implements android.os.Parcelable { | |
| public static final android.os.Parcelable$Creator *; | |
| } | |
| # Gson uses generic type information stored in a class file when working with fields. Proguard | |
| # removes such information by default, so configure it to keep all of it. | |
| -keepattributes Signature | |
| # Gson specific classes | |
| -keep class sun.misc.Unsafe { *; } | |
| #-keep class com.google.gson.stream.** { *; } | |
| # Application classes that will be serialized/deserialized over Gson | |
| -keep class com.google.gson.examples.android.model.** { *; } | |
| -keep class com.squareup.okhttp.** { *; } | |
| -keep interface com.squareup.okhttp.** { *; } | |
| -dontwarn com.squareup.okhttp.** | |
| -dontwarn rx.** | |
| -dontwarn retrofit.** | |
| -dontwarn okio.** | |
| -keep class retrofit.** { *; } | |
| -keepclasseswithmembers class * { | |
| @retrofit.http.* <methods>; | |
| } | |
| -dontwarn java.lang.invoke.* | |
| -keep public class android.support.v7.widget.** { *; } | |
| -keep public class android.support.v7.internal.widget.** { *; } | |
| -keep public class android.support.v7.internal.view.menu.** { *; } | |
| -keep public class * extends android.support.v4.view.ActionProvider { | |
| public <init>(android.content.Context); | |
| } | |
| -dontwarn android.support.design.** | |
| -keep class android.support.design.** { *; } | |
| -keep interface android.support.design.** { *; } | |
| -keep public class android.support.design.R$* { *; } | |
| -keep class android.support.v7.widget.RoundRectDrawable { *; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment