Using Proguard with Android without obfuscation

让人想犯罪 __ 提交于 2019-11-28 19:10:27
Phil

Add !code/allocation/variable is workaround for ProGuard bug when -dontobfuscate is set to your -optimizations

For example

-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable

You should make sure that you are using the latest version of the Android SDK or at least the latest version of ProGuard (version 4.7 at this time of writing) inside the SDK (android-sdk/tools/proguard/lib/proguard.jar).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!