Where is APK file stored after phonegap android build is successful?

Viewed 40060

I don't understand where can I find my package that is compiled so I can copy it into my device and install it from there.

What I did is create an empty project, then made build on it with no errors, however, I cannot find .apk file.

\platforms\android\bin has HelloWorld-debug.apk but I don't want to debug package but a normal one.

I tried phonegap build android as well as phonegap build android local and no difference was found between these two commands. Also, why is it even named HelloWorld if I named my project lololol?

6 Answers

in the newest versions the apk file should be located at /platforms/android/app/build/outputs/apk/release/

Related