Skip to content

Commit

Permalink
1、完善FastLib库混淆规则并增加部分三方库混淆规则
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Aug 12, 2019
1 parent acc077c commit e900723
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 215 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Demo中使用到的网络请求api来源于[豆瓣API V2](https://developers.dou

![](/apk/qr.png)

## 关于混淆

1、**2.2.13_beta12版本**开始自带混淆规则,并且会自动导入,正常情况下无需手动导入。

2、**2.2.13_beta12以上版本**可参考[proguard-rules.pro](https://github.com/AriesHoo/FastLib/blob/dev/library/proguard-rules.pro)

## 重大更新日志 其它版本参看[Release](https://github.com/AriesHoo/FastLib/releases)

* 2.2.13
Expand Down
Binary file modified apk/sample.apk
Binary file not shown.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ android {
//是否debug模式用于控制是否打印log等
debuggable true
zipAlignEnabled true //是否支持Zip Align
shrinkResources true //是否清理无用资源
minifyEnabled true //是否启动混淆
shrinkResources false //是否清理无用资源
minifyEnabled false //是否启动混淆
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
release {
debuggable true
debuggable false
zipAlignEnabled true //是否支持Zip Align
shrinkResources true //是否清理无用资源
minifyEnabled true //是否启动混淆
Expand Down Expand Up @@ -87,7 +87,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:'.concat(supportVersion)
implementation 'androidx.recyclerview:recyclerview:'.concat(supportVersion)
//万能适配器--一般都需要吧
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.45-androidx'
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.49-androidx'
//webView库 继承FastWebActivity需要,不需要内置WebView可以不implementation
implementation 'com.just.agentweb:agentweb:4.0.2'
//webView提供下载功能
Expand Down
220 changes: 40 additions & 180 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in D:\Android\sdk/tools/proguard/proguard-android.txt
# in /Users/lihui/work/AndroidStudio/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
Expand All @@ -15,188 +15,48 @@
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

#实体类不要混淆不然无法解析
-keep class com.aries.library.fast.demo.base.**{*;}
-keep class com.aries.library.fast.demo.entity.**{*;}
##
##-------------------------------------------基本不用动区域----------------------------------------------
##
##
## -----------------------------基本 -----------------------------
##
#
## 指定代码的压缩级别 0 - 7(指定代码进行迭代优化的次数,在Android里面默认是5,这条指令也只有在可以优化时起作用。)
#-optimizationpasses 5
## 混淆时不会产生形形色色的类名(混淆时不使用大小写混合类名)
#-dontusemixedcaseclassnames
## 指定不去忽略非公共的库类(不跳过library中的非public的类)
#-dontskipnonpubliclibraryclasses
## 指定不去忽略包可见的库类的成员
#-dontskipnonpubliclibraryclassmembers
##不进行优化,建议使用此选项,
#-dontoptimize
# # 不进行预校验,Android不需要,可加快混淆速度。
#-dontpreverify
## 屏蔽警告
#-ignorewarnings
## 指定混淆是采用的算法,后面的参数是一个过滤器
## 这个过滤器是谷歌推荐的算法,一般不做更改
#-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
## 保护代码中的Annotation不被混淆
#-keepattributes *Annotation*
## 避免混淆泛型, 这在JSON实体映射时非常重要
#-keepattributes Signature
## 抛出异常时保留代码行号
#-keepattributes SourceFile,LineNumberTable
# #优化时允许访问并修改有修饰符的类和类的成员,这可以提高优化步骤的结果。
## 比如,当内联一个公共的getter方法时,这也可能需要外地公共访问。
## 虽然java二进制规范不需要这个,要不然有的虚拟机处理这些代码会有问题。当有优化和使用-repackageclasses时才适用。
##指示语:不能用这个指令处理库中的代码,因为有的类和类成员没有设计成public ,而在api中可能变成public
#-allowaccessmodification
##当有优化和使用-repackageclasses时才适用。
#-repackageclasses ''
# # 混淆时记录日志(打印混淆的详细信息)
# # 这句话能够使我们的项目混淆后产生映射文件
# # 包含有类名->混淆后类名的映射关系
#-verbose

#
# ----------------------------- 默认保留 -----------------------------
#
#----------------------------------------------------
# 保持哪些类不被混淆
#继承activity,application,service,broadcastReceiver,contentprovider....不进行混淆
#-keep public class * extends android.app.Activity
#-keep public class * extends android.app.Application
#-keep public class * extends android.support.multidex.MultiDexApplication
#-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.google.vending.licensing.ILicensingService
#-keep public class com.android.vending.licensing.ILicensingService
#表示不混淆上面声明的类,最后这两个类我们基本也用不上,是接入Google原生的一些服务时使用的。
#----------------------------------------------------
-keep class com.aries.library.fast.demo.entity.**{*;}

#
##表示不混淆任何包含native方法的类的类名以及native方法名,这个和我们刚才验证的结果是一致
#-keepclasseswithmembernames class * {
# native <methods>;
#}
#
#
##这个主要是在layout 中写的onclick方法android:onclick="onClick",不进行混淆
##表示不混淆Activity中参数是View的方法,因为有这样一种用法,在XML中配置android:onClick=”buttonClick”属性,
##当用户点击该按钮时就会调用Activity中的buttonClick(View view)方法,如果这个方法被混淆的话就找不到了
#-keepclassmembers class * extends android.app.Activity{
# public void *(android.view.View);
#}
#
##表示不混淆枚举中的values()和valueOf()方法,枚举我用的非常少,这个就不评论了
#-keepclassmembers enum * {
# public static **[] values();
# public static ** valueOf(java.lang.String);
#}
#
##表示不混淆任何一个View中的setXxx()和getXxx()方法,
##因为属性动画需要有相应的setter和getter的方法实现,混淆了就无法工作了。
#-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);
#}
#-keepclasseswithmembers class * {
# public <init>(android.content.Context, android.util.AttributeSet);
# public <init>(android.content.Context, android.util.AttributeSet, int);
#}
#
##表示不混淆Parcelable实现类中的CREATOR字段,
##毫无疑问,CREATOR字段是绝对不能改变的,包括大小写都不能变,不然整个Parcelable工作机制都会失败。
#-keep class * implements android.os.Parcelable {
# public static final android.os.Parcelable$Creator *;
#}
## 这指定了继承Serizalizable的类的如下成员不被移除混淆
#-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();
#}
## 保留R下面的资源
##-keep class **.R$* {
## *;
##}
##不混淆资源类下static的
#-keepclassmembers class **.R$* {
# public static <fields>;
#}
#
## 对于带有回调函数的onXXEvent、**On*Listener的,不能被混淆
#-keepclassmembers class * {
# void *(**On*Event);
# void *(**On*Listener);
#}
#
## 保留我们自定义控件(继承自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);
#}
#
##
##----------------------------- WebView(项目中没有可以忽略) -----------------------------
##
##webView需要进行特殊处理
#-keepclassmembers class fqcn.of.javascript.interface.for.Webview {
# public *;
#}
#-keepclassmembers class * extends android.webkit.WebViewClient {
# public void *(android.webkit.WebView, java.lang.String, android.graphics.Bitmap);
# public boolean *(android.webkit.WebView, java.lang.String);
#}
#-keepclassmembers class * extends android.webkit.WebViewClient {
# public void *(android.webkit.WebView, jav.lang.String);
#}
#-------------------------------------------基本不用动区域----------------------------------------------
#
##
## ----------------------------- 其他的 -----------------------------
##
## 删除代码中Log相关的代码
#-assumenosideeffects class android.util.Log {
# public static boolean isLoggable(java.lang.String, int);
# public static int v(...);
# public static int i(...);
# public static int w(...);
# public static int d(...);
# public static int e(...);
#}
#
## 保持测试相关的代码
#-dontnote junit.framework.**
#-dontnote junit.runner.**
#-dontwarn android.test.**
#-dontwarn android.support.test.**
#-dontwarn org.junit.**
#
# -----------------------------基本 -----------------------------
#
##
## ----------------------------- 第三方 -----------------------------
##
#-dontwarn com.orhanobut.logger.**
#-keep class com.orhanobut.logger.**{*;}
#-keep interface com.orhanobut.logger.**{*;}
#
#-dontwarn com.google.gson.**
#-keep class com.google.gson.**{*;}
#-keep interface com.google.gson.**{*;}
## 。。。。。。

# 指定代码的压缩级别 0 - 7(指定代码进行迭代优化的次数,在Android里面默认是5,这条指令也只有在可以优化时起作用。)
-optimizationpasses 5
# 混淆时不会产生形形色色的类名(混淆时不使用大小写混合类名)
-dontusemixedcaseclassnames
# 指定不去忽略非公共的库类(不跳过library中的非public的类)
-dontskipnonpubliclibraryclasses
# 指定不去忽略包可见的库类的成员
-dontskipnonpubliclibraryclassmembers
#不进行优化,建议使用此选项,
-dontoptimize
# 不进行预校验,Android不需要,可加快混淆速度。
-dontpreverify
# 屏蔽警告
-ignorewarnings
# 指定混淆是采用的算法,后面的参数是一个过滤器
# 这个过滤器是谷歌推荐的算法,一般不做更改
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
# 保护代码中的Annotation不被混淆
-keepattributes *Annotation*
# 避免混淆泛型, 这在JSON实体映射时非常重要
-keepattributes Signature
# 抛出异常时保留代码行号
-keepattributes SourceFile,LineNumberTable
#优化时允许访问并修改有修饰符的类和类的成员,这可以提高优化步骤的结果。
# 比如,当内联一个公共的getter方法时,这也可能需要外地公共访问。
# 虽然java二进制规范不需要这个,要不然有的虚拟机处理这些代码会有问题。当有优化和使用-repackageclasses时才适用。
#指示语:不能用这个指令处理库中的代码,因为有的类和类成员没有设计成public ,而在api中可能变成public
-allowaccessmodification
#当有优化和使用-repackageclasses时才适用。
-repackageclasses ''
# 混淆时记录日志(打印混淆的详细信息)
# 这句话能够使我们的项目混淆后产生映射文件
# 包含有类名->混淆后类名的映射关系
-verbose
4 changes: 2 additions & 2 deletions app/src/main/java/com/aries/library/fast/demo/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ public void onCreate() {
start = System.currentTimeMillis();
LoggerManager.i(TAG, "start:" + start + ";Application:" + FastUtil.getApplication());
mContext = this;
//最简单UI配置模式-必须进行初始化
FastManager.init(this);
//最简单UI配置模式-必须进行初始化-最新版本无需初始化FastLib内部自动初始化
// FastManager.init(this);
//以下为更丰富自定义方法
//全局UI配置参数-按需求设置
AppImpl impl = new AppImpl(mContext);
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ ext{
minLibSdkVersion = 15
targetSdkVersion = 28
supportVersion = "1.0.0"
versionCode = 242
versionName = "2.2.13_beta11"
versionCode = 243
versionName = "2.2.13_beta12"
}
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
// compileOnly 'androidx.appcompat:appcompat:'.concat(supportVersion)
compileOnly 'androidx.recyclerview:recyclerview:'.concat(supportVersion)
//万能适配器
compileOnly 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.45-androidx'
compileOnly 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.49-androidx'
//webView库
compileOnly 'com.just.agentweb:agentweb:4.0.2'
//下拉刷新库
Expand Down
Loading

0 comments on commit e900723

Please sign in to comment.