Reputation: 348
My question is basically the title.
Suppose that I already have the application that I have programmed, finished and tested. I just run this command line
ionic cordova run android
then... I'm going to
platforms \ android \ app \ build \ outputs \ apk \ debug \
Rename app-debug.apk and ... Ready? Can I upload this APK to Google Store? Or is it necessary to do something else? Or is there any additional good practice that you need?
Upvotes: 0
Views: 176
Reputation: 358
Here's the documentation for publishing your app on android :
https://ionicframework.com/docs/publishing/play-store
And the same for Ios:
https://ionicframework.com/docs/publishing/app-store
Upvotes: 2
Reputation: 407
first you should create release version and then sign it , you can follow this and it shows detailed steps to create keystore and release apk and sign it .
Upvotes: 0