Reputation: 5166
I am developing an android app project and I am able to directly load it on my android phone. But I am unable to find the .apk file corresponding to the app. I have already checked out a few stackoverflow pages for how to resolve this, but I am unable to do so.
I do not have a bin folder at all anywhere within my project. The only .apks I am able to find within the folders are the app-debug.apk and related ones.
How do I force generate the apk when I run the project within Android Studio? Such problems do not exist in Eclipse.
Upvotes: 2
Views: 4725
Reputation: 29416
Android Studio puts resulting apks in the <your-project-name>/<your-app-name>/build/outputs/apk/
directory. Look here.
Upvotes: 2
Reputation: 3578
If you want to debug the application you can use the app-debug. Otherwise go up to build and press generate signed apk and choose release (if you want it as the final app) or debug for debugging.
Upvotes: 1