You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
5.7 KiB
183 lines
5.7 KiB
# Add project specific ProGuard rules here.
|
|
# By default, the flags in this file are appended to flags specified
|
|
# in /usr/local/Cellar/android-sdk/24.3.3/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 *;
|
|
#}
|
|
|
|
# Disabling obfuscation is useful if you collect stack traces from production crashes
|
|
# (unless you are using a system that supports de-obfuscate the stack traces).
|
|
|
|
-dontobfuscate
|
|
-dontoptimize
|
|
-dontwarn java.lang.invoke.**
|
|
|
|
-dontwarn org.bitcoinj.**
|
|
-dontwarn org.slf4j.**
|
|
-dontwarn com.google.**
|
|
-dontwarn org.bouncycastle.**
|
|
-dontwarn java8.util.**
|
|
-dontwarn jnr.posix.**
|
|
-dontwarn com.fasterxml.**
|
|
-dontwarn com.kenai.**
|
|
-dontwarn com.samsung.android.**
|
|
|
|
-keep,includedescriptorclasses class org.bitcoinj.crypto.HDKeyDerivation { *; }
|
|
|
|
# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
|
|
-dontwarn android.text.StaticLayout
|
|
|
|
# okhttp
|
|
|
|
-keepattributes Signature
|
|
-keepattributes *Annotation*
|
|
-keep class okhttp3.** { *; }
|
|
-keep interface okhttp3.** { *; }
|
|
-dontwarn okhttp3.**
|
|
|
|
# okio
|
|
|
|
-keep class sun.misc.Unsafe { *; }
|
|
-dontwarn java.nio.file.*
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
-dontwarn okio.**
|
|
-dontwarn com.googlecode.protobuf.format.*
|
|
|
|
-dontwarn com.google.android.gms.**
|
|
######### initialize by facebook #########
|
|
|
|
|
|
######### general #########
|
|
# 代码混淆压缩比,在0~7之间,默认为5,一般不做修改
|
|
-optimizationpasses 5
|
|
|
|
# 混合时不使用大小写混合,混合后的类名为小写
|
|
-dontusemixedcaseclassnames
|
|
|
|
# 指定不去忽略非公共库的类
|
|
-dontskipnonpubliclibraryclasses
|
|
|
|
# 这句话能够使我们的项目混淆后产生映射文件
|
|
# 包含有类名->混淆后类名的映射关系
|
|
-verbose
|
|
|
|
# 指定不去忽略非公共库的类成员
|
|
-dontskipnonpubliclibraryclassmembers
|
|
|
|
# 不做预校验,preverify 是 proguard 的四个步骤之一,Android 不需要 preverify,去掉这一步能够加快混淆速度。
|
|
-dontpreverify
|
|
|
|
# 保留 Annotation 不混淆
|
|
-keepattributes *Annotation*,InnerClasses
|
|
|
|
# 避免混淆泛型
|
|
-keepattributes Signature
|
|
|
|
# 抛出异常时保留代码行号
|
|
-keepattributes SourceFile,LineNumberTable
|
|
|
|
# 指定混淆是采用的算法,后面的参数是一个过滤器
|
|
# 这个过滤器是谷歌推荐的算法,一般不做更改
|
|
-optimizations !code/simplification/cast,!field/*,!class/merging/*
|
|
|
|
#############################################
|
|
#
|
|
# Android开发中一些需要保留的公共部分
|
|
#
|
|
#############################################
|
|
|
|
# 保留我们使用的四大组件,自定义的 Application 等等这些类不被混淆
|
|
# 因为这些子类都有可能被外部调用
|
|
-keep public class * extends android.app.Activity
|
|
-keep public class * extends android.app.Appliction
|
|
-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 * extends android.view.View
|
|
-keep public class com.android.vending.licensing.ILicensingService
|
|
|
|
|
|
# 保留 support 下的所有类及其内部类
|
|
-keep class android.support.** {*;}
|
|
-keep class androidx.** {*;}
|
|
|
|
# 保留继承的
|
|
-keep public class * extends android.support.v4.**
|
|
-keep public class * extends android.support.v7.**
|
|
-keep public class * extends android.support.annotation.**
|
|
|
|
-keep public class * extends androidx.**
|
|
|
|
# 保留本地 native 方法不被混淆
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# 保留在 Activity 中的方法参数是view的方法,
|
|
# 这样以来我们在 layout 中写的 onClick 就不会被影响
|
|
-keepclassmembers class * extends android.app.Activity{
|
|
public void *(android.view.View);
|
|
}
|
|
|
|
# 保留枚举类不被混淆
|
|
-keepclassmembers enum * {
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
|
|
# 保留我们自定义控件(继承自 View)不被混淆
|
|
-keep public class * extends android.view.View{
|
|
*** get*();
|
|
void set*(***);
|
|
public <init>(android.content.Context);
|
|
public <init>(android.content.Context, android.util.AttributeSet);
|
|
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
}
|
|
|
|
# 保留 Parcelable 序列化类不被混淆
|
|
-keep class * implements android.os.Parcelable {
|
|
public static final android.os.Parcelable$Creator *;
|
|
}
|
|
|
|
# 保留 Serializable 序列化的类不被混淆
|
|
-keepclassmembers class * implements java.io.Serializable {
|
|
static final long serialVersionUID;
|
|
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
|
!static !transient <fields>;
|
|
!private <fields>;
|
|
!private <methods>;
|
|
private void writeObject(java.io.ObjectOutputStream);
|
|
private void readObject(java.io.ObjectInputStream);
|
|
java.lang.Object writeReplace();
|
|
java.lang.Object readResolve();
|
|
}
|
|
######### general #########
|
|
|
|
|
|
######### custom #########
|
|
-ignorewarnings
|
|
|
|
-keep class com.facebook.react.** { *; }
|
|
-keep class com.eclipsesource.v8.** { *; }
|
|
-keep class com.cobo.cold.protobuf.** { *; }
|
|
-keep class com.cobo.coinlib.coins.** { *; }
|
|
|
|
-useuniqueclassmembernames
|
|
|
|
-obfuscationdictionary keywords.txt
|
|
-classobfuscationdictionary keywords.txt
|
|
-packageobfuscationdictionary keywords.txt
|
|
######### custom #########
|
|
|