Import downloaded .apk into Android Studio?

You are downloading an .apk file (for example, the Radio Disney app) and want to import it into Android Studio. How could you do this? Explain.

+6
source share
2 answers

You can decompile .apk using this decompiler or another , to decompile apk and download sources, you can import them into android studio.

The first results of the compiler look the easiest to import into android studio. I'm going to try this in a couple of hours, so I can improve my answer over time.

+13
source

Android Studio 3.0.1 (at the time of writing the answer) has a built-in function for importing the apk file. enter image description here

Here is what it looks like after clicking apk import button.

0
source

All Articles