Android常用混淆代码集合(不断更新中...)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/codekxx/article/details/82760634

Glide图片加载框架混淆

# glide 的混淆代码
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
  **[] $VALUES;
  public *;
}

banner for youth5201314的混淆代码

# banner 的混淆代码
-keep class com.youth.banner.** {
    *;
 }

SmartRefreshLayout
没有使用到:序列化、反序列化、JNI、反射,所以并不需要添加混淆过滤代码,并且已经混淆测试通过,如果你在项目的使用中混淆之后出现问题,请及时通知我。

猜你喜欢

转载自blog.csdn.net/codekxx/article/details/82760634