嘿,我是proGuard的新手,我用它来保护代码免受逆向工程的侵害,
但是,当我构建签名的apk时,启用proGuard时出现很多错误,我用谷歌搜索了我的问题,找到了对错误消息中显示的类使用-dontwarn的答案,但在查看了proGuard的文档后说
而且我不知道我在做什么
这是我的proguard-rules.pro
文件
-dontwarn okio.**
-dontwarn org.apache.**
-dontwarn com.appodeal.**
-dontwarn com.parse.**
-dontwarn com.squareup.**
我已经看到一些答案说使用
-keep class
有人可以解释吗
最佳答案
-keep class
保留指定的类和类成员。-dontwarn
完全不要警告 Unresolved 引用。
更多信息在这里http://proguard.sourceforge.net/manual/refcard.html