Parker Zink
Parker Zink

Reputation: 131

Importing downloaded .apk to Android Studio?

You download an .apk file (ex. Radio Disney app) and you want to import it to Android Studio. How could you be able to do that? Explain.

Upvotes: 11

Views: 108375

Answers (2)

Tad
Tad

Reputation: 947

Android Studio 3.0.1 (at the time of writing this answer) has a built in function to import an apk file.enter image description here

This is what it looks like after you click on the import apk button.

Upvotes: 2

x13
x13

Reputation: 2227

You can decompile the .apk using this decompiler or another one to decompile the apk and download sources, those can be imported in android studio.

The first compiler's results look the easiest to be imported into android studio. I'm going to try this in a couple of hours so i may improve my answer over time.

Upvotes: 21

Related Questions