Home > database >  How to export my android studio project as an APK file?
How to export my android studio project as an APK file?

Time:11-17

I need to export my android studio project as an APK for a college project. What is the correct procedure to do it?

CodePudding user response:

You build it, and it creates an apk in the build/outputs/apk folder.

CodePudding user response:

In Android Studio in the Build Menu there is an option to build apk. you will have to specify if it is to debug or production ready. Make a developer key. Once all of that is set up you let it run and it makes the apk file for you. I can remember exactly where it outputs the file but I want to say that it pops up a dialog or lets you choose the location the apk is put.

  • Related