How to avoid reverse engineering of an APK file?

后端 未结 30 2238
醉梦人生
醉梦人生 2020-11-21 22:27

I am developing a payment processing app for Android, and I want to prevent a hacker from accessing any resources, assets or source code from the APK file.<

30条回答
  •  粉色の甜心
    2020-11-21 22:52

    There is no way to completely avoid reverse engineering of an APK. To protect application assets, resources, you can use encryption.

    • Encryption will make harder to use it without decryption.choosing some strong encryption algorithm will make cracking harder.
    • Adding some spoof code into your main logic to make more harder for cracking.
    • If you can write your critical logic in any native language and that surely make harder for decompile.
    • Using any third party security frameworks like Quixxi

提交回复
热议问题