Deploying to Android

Deploying your game to Android is best done using Android Studio.

After installing Android Studio, use the SDK Manager to install:

  1. Android SDK Build-Tools
  2. NDK
  3. Android SDK Command-line Tools
  4. CMake

Then open the Android project that’s included with your game (folder android_project):

After Gradle is done with the setup, you should be able to build the game like any normal Android Studio project.


Configuring the project

Building the game produces an Android package (.apk) with all of the necessary metadata.

To change the various metadata such as package name and company, search for "TODO:" entries within the android_project folder and replace the property values as necessary.