How can I obfuscate only com.foo.* and com.bar.* (ProGuard)?

依然范特西╮ 提交于 2019-12-03 06:34:11

问题


I want to obfuscate only some packages:

com.foo.*
com.bar.*

I have tried

-keepclasseswithmembers class **, !com.foo.**, !com.bar.** { *; }

and

-keepclasseswithmembers class !com.foo.** { *; }
-keepclasseswithmembers class !com.bar.** { *; }

In both cases the classes from com.foo.* and com.bar.* was NOT obfuscated.


回答1:


This should work

-keep class !com.foo.**,!com.bar.** { *; }

You can find a summary of the various -keep options at http://proguard.sourceforge.net/manual/usage.html#keepoverview

You can find the explanation of ProGuard's regular expressions at http://proguard.sourceforge.net/manual/usage.html#filters



来源:https://stackoverflow.com/questions/4536016/how-can-i-obfuscate-only-com-foo-and-com-bar-proguard

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