June 2016
Intermediate to advanced
910 pages
18h 59m
English
Building the Android Application Package (APK) is a bit more cryptic than releasing for iOS. There are a few steps that we need to follow before we generate the static bundle, like we did in iOS:
keytool. Navigate to the android/app folder in a terminal and run this command:$ keytool -genkey -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000 [Storing my-release-key.keystore]
Note that this is a private file and should never be shared with anyone. Keep it somewhere safe!
android/ directory open gradle.properties and add these ...Read now
Unlock full access