如何避免在我的应用程序中将 APK 反编译为 Java 文件

发布于 2025-01-07 03:36:36 字数 194 浏览 0 评论 0原文

任何人都可以帮助我避免将我的应用程序 APK 反编译为 Java 文件吗?

我想加密文件 APK 中的代码并避免使用某些工具将文件 .apk 反转为 Java 文件

非常感谢!

抱歉:感谢 Proguard.cfg 但是:使用工具: dex2jar 。我还可以反编译APK

Anyone can help me to Avoid the decompile my app APK to Java file ?

i would like to encrypt my code in file APK and avoid some tool to reverse the file .apk to Java file

Thanks so much!

Sorry: thank with Proguard.cfg
However: with tool: dex2jar . I can also decompile APK

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

千仐 2025-01-14 03:36:36

加密会很困难,但您可以混淆字节码以使其更难以阅读。查看 Proguard

如果您还希望它可以运行,则不能使其无法反编译。即使您的程序是用 C 或 C++ 编写的(只是更难),情况也是如此。

您也许可以动态加载程序的某些部分并对这些部分进行加密,但是用户需要指定加密密钥,因此无论如何都能够反编译。

Encryption will be hard, but you can obfuscate the byte code to make it harder to read. Check out Proguard.

You cannot make it impossible to decompile if you also want it possible to run. This would be true even if your program was made in for example C or C++ (just harder).

You could perhaps load parts of the program dynamically and encrypt those parts, but then the user would need to specify an encryption key and will therefore be able to decompile anyway.

花落人断肠 2025-01-14 03:36:36

您可以尝试混淆您的代码,例如使用 ProGuard 。您可以阅读以下文章,其中描述了以下过程:一个Android应用程序。

You can try to obfuscate your code, using ProGuard for instance. You can read the following article which describes the process for an Android application.

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