115 lines
3.9 KiB
Prolog
115 lines
3.9 KiB
Prolog
# 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
|
|
|
|
# Gson
|
|
-keep class com.zj.model**{*;} # 自定义数据模型的bean目录
|
|
-keep class com.google.gson.stream.** { *; }
|
|
-keepattributes EnclosingMethod
|
|
|
|
#retrofit2 混淆
|
|
-dontwarn javax.annotation.**
|
|
-dontwarn javax.inject.**
|
|
# OkHttp3
|
|
-dontwarn okhttp3.logging.**
|
|
-keep class okhttp3.internal.**{*;}
|
|
-dontwarn okio.**
|
|
# Retrofit
|
|
-dontwarn retrofit2.**
|
|
-keep class retrofit2.** { *; }
|
|
-keepattributes Signature
|
|
-keepattributes Exceptions
|
|
|
|
# 3D 地图 V5.0.0之后:
|
|
-keep class com.amap.api.maps.**{*;}
|
|
-keep class com.autonavi.**{*;}
|
|
-keep class com.amap.api.trace.**{*;}
|
|
|
|
# 定位
|
|
-keep class com.amap.api.location.**{*;}
|
|
-keep class com.amap.api.fence.**{*;}
|
|
-keep class com.autonavi.aps.amapapi.model.**{*;}
|
|
|
|
# 搜索
|
|
-keep class com.amap.api.services.**{*;}
|
|
|
|
# 2D地图
|
|
-keep class com.amap.api.maps2d.**{*;}
|
|
-keep class com.amap.api.mapcore2d.**{*;}
|
|
|
|
# 导航
|
|
-keep class com.amap.api.navi.**{*;}
|
|
-keep class com.autonavi.**{*;}
|
|
|
|
-dontwarn com.amap.api.location.AMapLocation
|
|
-dontwarn com.amap.api.location.AMapLocationClient
|
|
-dontwarn com.amap.api.location.AMapLocationClientOption$AMapLocationMode
|
|
-dontwarn com.amap.api.location.AMapLocationClientOption
|
|
-dontwarn com.amap.api.location.AMapLocationListener
|
|
|
|
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
|
|
# EnclosingMethod is required to use InnerClasses.
|
|
-keepattributes Signature, InnerClasses, EnclosingMethod
|
|
|
|
# Retrofit does reflection on method and parameter annotations.
|
|
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations
|
|
|
|
# Keep annotation default values (e.g., retrofit2.http.Field.encoded).
|
|
-keepattributes AnnotationDefault
|
|
|
|
# Retain service method parameters when optimizing.
|
|
-keepclassmembers,allowshrinking,allowobfuscation interface * {
|
|
@retrofit2.http.* <methods>;
|
|
}
|
|
|
|
# Ignore annotation used for build tooling.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
|
|
# Ignore JSR 305 annotations for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
|
|
-dontwarn kotlin.Unit
|
|
|
|
# Top-level functions that can only be used by Kotlin.
|
|
-dontwarn retrofit2.KotlinExtensions
|
|
-dontwarn retrofit2.KotlinExtensions$*
|
|
|
|
# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
|
|
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
-keep,allowobfuscation interface <1>
|
|
|
|
# Keep inherited services.
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
-keep,allowobfuscation interface * extends <1>
|
|
|
|
# With R8 full mode generic signatures are stripped for classes that are not
|
|
# kept. Suspend functions are wrapped in continuations where the type argument
|
|
# is used.
|
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|
|
|
|
# R8 full mode strips generic signatures from return types if not kept.
|
|
-if interface * { @retrofit2.http.* public *** *(...); }
|
|
-keep,allowoptimization,allowshrinking,allowobfuscation class <3>
|
|
|
|
# With R8 full mode generic signatures are stripped for classes that are not kept.
|
|
-keep,allowobfuscation,allowshrinking class retrofit2.Response |