我需要在我的项目中实施proguard
我的默认proguard设置就像这样
android {
...///
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
....////
}
然后我做了一些小改动
android {
...///
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
....////
}
我的proguard-ruler.pro
文件https://ideone.com/ccPvPv
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/Shahar/Library/Android/sdk/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 *;
#}
# 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
#If you not sure about proguard process so uncomment next line
#-dontobfuscate
# view res/layout/design_layout_snackbar_include.xml #generated:18
#-keep class android.support.design.internal.SnackbarContentLayout { <init>
(...); }
# view res/layout/activity_main.xml #generated:11
#-keep class android.support.design.widget.AppBarLayout { <init>(...); }
# view AndroidManifest.xml #generated:19
#-keep class ru.jollydroid.athdemo.MainActivity { <init>(...); }
#
# Proguard configuration for Jackson 2.x (fasterxml package instead of
codehaus package)
#-keep class com.fasterxml.jackson.databind.ObjectMapper {
# public <methods>;
# protected <methods>;
#}
#-keep class com.fasterxml.jackson.databind.ObjectWriter {
# public ** writeValueAsString(**);
#}
#-keepnames class com.fasterxml.jackson.** { *; }
#-----------------
#-keepnames com.fasterxml.jackson.databind.** { *; }
#
#-keepnames com.squareup.okhttp.** { *; }
#
#-keepnames cryptix.util.test.** { *; }
#
#-keepnames jp.wasabeef.recyclerview.animators.** { *; }
#
#-keepnames cryptix.util.gui.** { *; }
#
#-keepnames ui.activities.** { *; }
#
#-keepnames ui.adapters.** { *; }
#
#-keepnames ui.fragments.** { *; }
#
#-keepnames webServices.controllers.** { *; }
#-------------------------
#Was worked
#-----------------
#-dontwarn com.fasterxml.jackson.databind.**
#
#-dontwarn com.squareup.okhttp.**
#
#-dontwarn cryptix.util.test.**
#
#-dontwarn jp.wasabeef.recyclerview.animators.**
#
#-dontwarn cryptix.util.gui.**
#
# -dontwarn ui.activities.**
#
#-dontwarn ui.adapters.**
#
#-dontwarn ui.fragments.**
#
#-dontwarn webServices.controllers.**
#-------------------------
#-dontwarn java.awt.**
#-dontwarn java.beans.Beans
#-dontwarn javax.security.**
#-keep class javamail.** {*;}
#-keep class javax.mail.** {*;}
#-keep class javax.activation.** {*;}
#-keep class com.sun.mail.dsn.** {*;}
#-keep class com.sun.mail.handlers.** {*;}
#-keep class com.sun.mail.smtp.** {*;}
#-keep class com.sun.mail.util.** {*;}
#-keep class mailcap.** {*;}
#-keep class mimetypes.** {*;}
#-keep class myjava.awt.datatransfer.** {*;}
#-keep class org.apache.harmony.awt.** {*;}
#-keep class org.apache.harmony.misc.** {*;}
# Proguard configuration for Jackson 2.x (fasterxml package instead of
codehaus
package)
#-keep class com.fasterxml.jackson.annotation.** { *; }
#
#-dontwarn com.fasterxml.jackson.databind.**
#
#-keepclassmembers class com.myapp.models.** { *; }
#
#-keepattributes SourceFile,LineNumberTable
#-keep class com.parse.*{ *; }
#-keep class android.content.res.Xm.ResourceParser.** { *; }
#-keep class com.googlecode.** { *; }
#-dontwarn com.parse.**
#-dontwarn com.squareup.picasso.**
#-keepclasseswithmembernames class * {
# native <methods>;
#}
我尝试了很多不同的方法为libs制定规则,但是不起作用
如果我在发布模式下尝试make build apk,那么我会得到输出。
据我所知,我遇到了这个问题,因为我需要为外部库添加规则。
我看到了这个资源
https://github.com/krschultz/android-proguard-snippets
但它对我没有帮助......
我在计划方面并不强,所以请告诉我如何添加此规则?
如果我理解正确,我需要编写自定义规则,但该怎么做?
随意询问
提前致谢
修改
进行更改https://gist.github.com/albinmathew/c4436f8371c9c41461ab
现在gradle看起来像
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
我的proguard-rules.pro
我现在的错误
答案 0 :(得分:0)
为什么要为Proguard
设置规则,默认配置是否会出现错误?无论如何,请查看此链接以获取有关Proguard
https://gist.github.com/albinmathew/c4436f8371c9c41461ab https://gist.github.com/Jackgris/c4a71328b1ae346cba04
默认配置意味着您只需输入
行minifyEnabled true
useProguard true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
通过这一行,Gradle使用默认的Proguard规则。
Dexguard(Proguard的商业版)
如果想让代码更安全,可以使用Dexguard
。 Dexguard
是Proguard
的商业版本,因为dexguard
附带string encryption
功能,可使代码更安全。
答案 1 :(得分:0)
shrinkResources true
将压缩您的图片(png
,jpeg
等)
minifyEnabled true
会混淆您的代码。
这两个规则会缩小代码,apk会更轻。
由于minify
已启用,您需要在proguard-rules.pro
中放置一些规则和规则,以便保持类不被混淆,因为某些方法需要可见才能使用。
例如,您有一个Firebase使用的类User
。需要显示该类中的方法和字段才能起作用。 Firebase会将响应转换为该类,并且需要显示。
#-keep class .User.** {*;}
某些规则由库定义,您需要添加它们才能构建项目。
使用-dontwarn
规则可以避免警告。
-dontwarn cryptix.**
答案 2 :(得分:0)
我不知道为什么以及怎么做,但下面的代码对我来说非常适合。
所以我的成绩现在看起来像这样
android {
...///
buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
...///
}
并且有我的proguard-rules.pro
-ignorewarnings
-keep class * {
public private *;
}
我也查看了混淆的结果,这确实很有用。