Skip to content

Android release

Grgur Grisogono edited this page Sep 14, 2018 · 2 revisions
  1. Navigate to ./android/signing
  2. Create a keystore
keytool -genkey -v -keystore beep.keystore -alias beep -keyalg RSA -keysize 2048 -validity 10000
  1. Create a file called keystore.properties
storeFile=../signing/beep.keystore
storePassword=myKeyStorePasswordHere
keyAlias=beep
keyPassword=myKeyPasswordHere
  1. Navigate to ./android
  2. Execute fastlane release
  3. Find the release apk in app/build/outputs/apk/release/

HockeyApp

  1. Make sure you have HOCKEY_API_TOKEN env variable populated with your token. You can obtain it in HockeyApp console under your account settings. Your token needs upload capabilities
  2. cd android
  3. fastlane hockeybeta
Clone this wiki locally