DonkeyBanana
DonkeyBanana

Reputation: 3546

Deploying Ionic app to the Google store

I'm trying to deploy my first (very generic) app built using Ionic. According to the docs for deployment, I'm supposed to use some plugins. However, other sources suggest that I'm supposed to install Google's IDE called Android Studio and create an APK file.

I can't judge which approach is most valid nor if the one is an obsoleted version of the other. And we know how fast the wheels rotate in JS world...

NB. I'm confident in programming in general, I know Angular and have experience with deployments as such. In this case, I'm not looking to set up CI nor testing. I simply want my first app to be reachable through the store.

Upvotes: 0

Views: 223

Answers (1)

Robin Dijkhof
Robin Dijkhof

Reputation: 19278

My suggestion would be to make a build: ionic cordova build android. Next sign it using the command line. https://developer.android.com/studio/publish/app-signing.html

Upvotes: 1

Related Questions