Reputation: 131
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
Reputation: 947
Android Studio 3.0.1 (at the time of writing this answer) has a built in function to import an apk file.
This is what it looks like after you click on the import apk button.
Upvotes: 2
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