Android開發(fā)中掌握混淆規(guī)則是必備技能之一斤寂。
混淆方式
主module中統(tǒng)一配置
這種情況簡單眶蕉,針對自己項目代碼和三方庫代碼編寫混淆規(guī)則即可。當(dāng)取消某些module依賴時,需要剔除響應(yīng)的混淆規(guī)則哩陕,較麻煩沥邻。
各module單獨配置
隨著項目不斷擴(kuò)大晚吞,多個module同時存在的項目已很普遍。
主module配置一些通用的混淆規(guī)則谋国。
-
子module在gradle中配置consumerProguardFiles屬性來指定混淆文件就可以槽地。
// 子模塊單獨配置混淆規(guī)則 buildTypes { release { consumerProguardFiles 'proguard-rules.pro' } }
proguard使用及規(guī)則
主module開啟混淆配置
android {
...
buildTypes {
release {
// zipAlign可以讓安裝包中的資源按4字節(jié)對齊,這樣可以減少應(yīng)用在運行時的內(nèi)存消耗芦瘾。
zipAlignEnabled true
// 壓縮資源
shrinkResources true
// 開啟混淆
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
通用規(guī)則
#指定壓縮級別
-optimizationpasses 5
#不跳過非公共的庫的類成員
-dontskipnonpubliclibraryclassmembers
#混淆時采用的算法
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
#把混淆類中的方法名也混淆了
-useuniqueclassmembernames
#優(yōu)化時允許訪問并修改有修飾符的類和類的成員
-allowaccessmodification
#將文件來源重命名為“SourceFile”字符串
-renamesourcefileattribute SourceFile
#保留行號
-keepattributes SourceFile,LineNumberTable
#保持泛型
-keepattributes Signature
#保持所有實現(xiàn) Serializable 接口的類成員
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
#Fragment不需要在AndroidManifest.xml中注冊捌蚊,需要額外保護(hù)下
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames class * {
native <methods>;
}
# keep setters in Views so that animations can still work.
# see http://proguard.sourceforge.net/manual/examples.html#beans
-keepclassmembers public class * extends android.view.View {
void set*(***);
*** get*();
}
# We want to keep methods in Activity that could be used in the XML attribute onClick
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
# 保持Parcelable不被混淆
public static final android.os.Parcelable$Creator CREATOR;
}
-keepclassmembers class **.R$* {
public static <fields>;
}
# The support library contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontwarn android.support.**
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep @android.support.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <init>(...);
}
# 保持測試相關(guān)的代碼
-dontnote junit.framework.**
-dontnote junit.runner.**
-dontwarn android.test.**
-dontwarn android.support.test.**
-dontwarn org.junit.**
哪些需要添加keep規(guī)則
- 三方庫
- 反射代碼
- JNI native代碼
- webview js注入方法相關(guān)類
自定義規(guī)則及語法
- 不混淆某個類
-keep public class name.huihui.example.Test { *; }
- 不混淆某個包所有的類
-keep class name.huihui.test.** { *; }
- 不混淆某個類的子類
-keep public class * extends name.huihui.example.Test { *; }
- 不混淆所有類名中包含了“model”的類及其成員
-keep public class **.*model*.** {*;}
- 不混淆某個接口的實現(xiàn)
-keep class * implements name.huihui.example.TestInterface { *; }
- 不混淆某個類的構(gòu)造方法
-keepclassmembers class name.huihui.example.Test {
<init>; #匹配所有構(gòu)造器
<fields>;#匹配所有域
<methods>;#匹配所有方法}
public void test(java.lang.String); # 特定方法
public <methods>;#保持該類下所有的共有方法不被混淆
public *;#保持該類下所有的共有內(nèi)容不被混淆
private <methods>;#保持該類下所有的私有方法不被混淆
private *;#保持該類下所有的私有內(nèi)容不被混淆
public <init>(java.lang.String);#保持該類的String類型的構(gòu)造方法
}
- 不混淆某個類的內(nèi)部類
-keep class name.huihui.example.Test$* {
*;
}