Create Tips & Demos — 2: Android Deployment 🤖

Hi Everyone!

I’m back with the next instalment of the LiveCode Create Demo series, and this time it’s all about Android Deployment :robot:

In this tutorial I walk-through the whole process from scratch including:

  • Setting up your Deployment Configuration profile
  • Installing the relevant SDK Packages in Android Studio
  • Generating an Android Keystore to sign your app
  • Building the APK and AAB

Download JDK 11 here: Latest Releases | Adoptium

To generate a keystore in terminal use this command:

keytool -genkeypair -v \
  -keystore my-release-key.keystore \
  -alias my-key-alias \
  -keyalg RSA \
  -keysize 2048 \
  -validity 10000

Drop any questions in the comments and I’ll be sure to get back to them!