What methods are being used to protect this Android APK: Reflection? Encryption? How do I reverse engineer it and analyze it?

后端 未结 2 1143
野性不改
野性不改 2021-01-24 19:12

I know the basics to java programming, but I\'m new to reverse engineering APKs, so explanations would be nice!


I have an APK file file, but not the Java source. A

2条回答
  •  野性不改
    2021-01-24 19:38

    The ProGuard tool shrinks, optimizes, and obfuscates your code by removing unused code and renaming classes, fields, and methods with semantically obscure names. The result is a smaller sized .apk file that is more difficult to reverse engineer.

    You could read more here: http://developer.android.com/intl/es/tools/help/proguard.html

提交回复
热议问题