# Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # 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 *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile # Retrofit 和 OkHttp 的混淆规则 -dontwarn okhttp3.** -dontwarn okio.** -keep class okhttp3.** { *; } -keep class retrofit2.** { *; } -dontwarn retrofit2.** -dontwarn javax.annotation.Nullable -keep class com.offline.music.player.javabean.A_data.AudioItem { *; } # 保持 Context、Intent 和权限相关的公共方法 -keep class android.content.Context { *; } -keep class android.content.Intent { *; } -keep class android.content.pm.PackageManager { *; } -keep class android.net.Uri { *; } -keep class com.google.gson.** { *; } -keepattributes Signature -keep class com.google.gson.reflect.TypeToken { *; } -keep class * extends com.google.gson.reflect.TypeToken -keepattributes AnnotationDefault,RuntimeVisibleAnnotations