-6

Am trying to customize an android app according to my requirements. Where do I begin from? I've Android Studio installed. Can I modify the code, rebuild an apk, resign and install on my phone? If so how can I view the code?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Icarus
  • 1
  • 2

1 Answers1

0

Most Android applications are digitally signed, minified, and/or obfuscated and therefore not able to be decompiled, but you can try

How to decompile an APK or DEX file on Android platform?

But yes, assuming you could get the code, any text editor or IDE (such as Android Studio) and a supported build system (like Gradle) would work

Note: decompiled code doesn't contain any resources to rebuild the app with all its dependencies

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245