In your project's platforms directory, you have two complete native projects: one for Android, and one for iOS. You can build release versions of these projects and publish them to Google Play or to the iOS App Store.
To publish your Android application to the Play Store:
-
Edit
platforms/android/AndroidManifest.xmland set theversionCodeandversionNameproperties correctly. -
Edit (or create)
platforms/android/ant.propertiesand set thekey.storeandkey.aliasproperties (as explained in the Android developer docs). -
Build your project:
cca build android --release -
Find your signed .apk located in
platforms/android/ant-build. -
Upload your signed application to the Google Play developer console.
Instructions coming soon.