In Cordova 5, how can I incorporate zipaligning
and signing
of the APK using my keystore
into the build process?
Using the Ionic Framework, I can specify an ant.properties
file that includes the lines below:
key.store=CylonApp.keystore
key.alias=CylonApp
such that running ionic build android --release
automatically prepares an APK that can be submitted directly to the Play Store.
Is there an equivalent in Cordova?