Proguard:如何过滤某些包以免被混淆?

发布于 2024-12-19 14:23:41 字数 62 浏览 0 评论 0原文

有没有办法过滤掉某些包的混淆?目前混淆某个类会导致无法在本地目录中找到本机库,所以我只想混淆主要应用程序逻辑。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稚然 2024-12-26 14:23:41

您可以使用 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.

深爱成瘾 2024-12-26 14:23:41

这是解决方案

-keep class com.example.abc.** { *; }

Here is the solution

-keep class com.example.abc.** { *; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文