60 lines
1.7 KiB
Prolog
60 lines
1.7 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
|
||
|
||
|
||
-ignorewarnings
|
||
#----------------------------Part-----基本指令区----------------------------------
|
||
# 代码混淆压缩比,在0~7之间,默认为5,一般不做修改
|
||
-optimizationpasses 5
|
||
|
||
# 混合时不使用大小写混合,混合后的类名为小写
|
||
-dontusemixedcaseclassnames
|
||
|
||
# 指定不去忽略非公共库的类
|
||
-dontskipnonpubliclibraryclasses
|
||
|
||
# 这句话能够使我们的项目混淆后产生映射文件
|
||
# 包含有类名->混淆后类名的映射关系
|
||
-verbose
|
||
|
||
# 指定不去忽略非公共库的类成员
|
||
-dontskipnonpubliclibraryclassmembers
|
||
|
||
# 不做预校验,preverify是proguard的四个步骤之一,Android不需要preverify,去掉这一步能够加快混淆速度。
|
||
-dontpreverify
|
||
|
||
# 保留Annotation不混淆
|
||
-keepattributes *Annotation*,InnerClasses
|
||
|
||
# 避免混淆泛型
|
||
-keepattributes Signature
|
||
|
||
# 抛出异常时保留代码行号
|
||
-keepattributes SourceFile,LineNumberTable
|
||
|
||
|
||
|
||
|
||
-keep class com.omicronapplications.** { *; }
|
||
-keep class net.sf.sevenzipjbinding.** { *; }
|
||
|