如何避免在我的应用程序中将 APK 反编译为 Java 文件
任何人都可以帮助我避免将我的应用程序 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
加密会很困难,但您可以混淆字节码以使其更难以阅读。查看 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.
您可以尝试混淆您的代码,例如使用 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.
对最关键的代码使用 NDK
Use NDK for the most critical code