Changes between Version 5 and Version 6 of DeveloperGuidelines/EdenMobile/DevelopmentEnvironment
- Timestamp:
- 04/06/17 11:43:33 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/EdenMobile/DevelopmentEnvironment
v5 v6 50 50 writable: false, 51 51 }}} 52 - @ToDo: Branding 52 53 - create the non-debug APK 53 54 {{{ … … 55 56 cordova build --release android 56 57 }}} 57 - File available as: {{{platforms/android/build/outputs/a ndroid-release-unsigned.apk}}}58 - File available as: {{{platforms/android/build/outputs/apk/android-release-unsigned.apk}}} 58 59 - Sign the app: 59 60 * https://developer.android.com/studio/publish/app-signing.html 60 61 * https://cordova.apache.org/docs/en/latest/guide/platforms/android/ 61 62 {{{ 62 # Generate Private Key (just once )63 # Generate Private Key (just once, outside the eden_mobile folder) 63 64 # keytool comes with your JRE, so may need to ensure it's bin directory is in your PATH 64 65 keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias