codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Publish a Cordova Generated Android App to the Google Play Store

Erik C. Rutledge
codeburst
Published in
4 min readJan 7, 2018

--

$ cordova platform remove android

Details

# config.xml<widget id="com.example.androidapp"> # user your own domain
...

Icon

# config.xml<widget>
...
<icon src="/path/to/generic/icon" /> # generic icon
<platform name="android">
<icon src="/path/to/android/icon" /> # android specific icon
</platform
...
</widget>

Versioning

# config.xml<widget version="1.0.1">
...

Generate API File

$ cordova platform add android
$ cordova build --release

Uploading to the Play Store

Google Play App Signing

$ keytool -genkey -v -keystore android.keystore -alias 
android-app-key -keyalg RSA -keysize 2048 -validity 10000
$ jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore android.keystore app-release-unsigned.apk android-app-key
# if zipalign is not installed
$ sudo apt install zipalign
$ zipalign -v 4 app-release-unsigned.apk app-release.apk

Google Play Store Console

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Responses (9)

Write a response