Proguard:如何过滤某些包以免被混淆?
有没有办法过滤掉某些包的混淆?目前混淆某个类会导致无法在本地目录中找到本机库,所以我只想混淆主要应用程序逻辑。
Is there a way to filter certain packages from obfuscation? Currently obfusticating a certain class results in failure to find a native library in the local directory, so I just want the main application logic to be obfuscated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Proguard 的“保留”选项来限制混淆的内容。有关所有详细信息,请参阅 Proguard 手册的使用页面。手册的另一部分有很多示例。
如果你很难弄清楚,还有其他关于如何使用 Proguard 的“keep”选项的问题。请随意阅读本页右侧列出的“相关”问题。
You can use Proguard's "Keep" options to limit what gets obfuscated. Refer to the Proguard Manual's Usage page for all of the details. There are many examples in another part of the manual.
If you have difficulty figuring it out, there are other SO Questions on how to use Proguard's "keep" options. Feel free to read through the "Related" questions listed in the right-hand of this page.
这是解决方案
Here is the solution