Reputation: 9
How to find apk file
in android studio 0.5.2. I checked build file but apk is not generate.
Can anyone help me in finding this file?
Upvotes: 0
Views: 875
Reputation: 69
I had a same problem
I run the app once on AVD
the apk file is generated
Upvotes: 0
Reputation: 80010
In later versions of Android Studio, it doesn't build a full APK from the "Make Project" command in order to make builds faster; it only builds an APK when you run the project, or use the "Generate Signed APK" wizard. If you want to force it to build an APK, go to thew Gradle window, open up the Tasks view, and choose "assembleDebug" to make a debug APK. When you do that your APK will be built in the build/apk directory in your module's directory.
Upvotes: 2
Reputation: 6426
As soon as your build is successful .apk file is generated and it's path is like project/build/apk directory.
Upvotes: -1