Which apk file runs on the Android device after the cli command ionic run android
? Where can I find this file inside my project?
which apk runs on the Android device ionic
2k views Asked by PhiceDev At
2
Which apk file runs on the Android device after the cli command ionic run android
? Where can I find this file inside my project?
The exact path can be a little different per Cordova version, but if you want to get the exact path, take a look at the output when running
ionic run android
. At the end you'll see something like:Notice the output with the text
Using apk:
. This display's the complete path to the APK used installing on the device. In my case /home/myuser/Documents/Projects/mysuperapp/platforms/android/build/outputs/apk/android-debug.apkEDIT:
If you want to create an APK for production usage / release into the Play Store, make sure to follow the next steps: http://ionicframework.com/docs/guide/publishing.html