| .. | ||
| main.cpp | ||
| Makefile | ||
| README.md | ||
How to Build
-
You will need at least Java 9, preferably Java 17, to handle recent Gradle 8.9 versions.
-
You need a way to install Android SDK and NDK and have access to a virtual device for testing (real Android devices can be used as well).
- Android SDK version 21+
- Android NDK version 19+
-
Android Studio is an option for handling Java, Android SDK and NDK dependencies altogether: https://developer.android.com/studio.
-
The provided Makefile will download SDL from the main Git branch and create an Android project using SDL's provided
create-android-project.pyscript. -
Run the Makefile using
make all. It downloads and unpacks SDL, runs the included Python script, and generate a folder with the Android project in this directory. The project contains the Dear ImGui sources and SDL3 backends. -
After the project is generated, the Gradle version can be automatically updated in Android Studio, or updated manually via setting the
classpathanddistributionUrlvalues.
In com.imgui.example/build.gradle:
dependencies {
classpath 'com.android.tools.build:gradle:8.7.2'
...
}
In com.imgui.example/gradle/wrapper/gradle-wrapper.properties:
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
How to Run
To run on a local machine using Windows PowerShell:
- Run
make alland change into the generated Android project folder, for example:cd com.imgui.example/ - Run
.\gradlew.bat buildto start the Gradle Daemons and build the project. This requires theJAVA_HOME,ANDROID_HOME, andANDROID_NDK_HOMEenvironment variables if not done in Android Studio.- Android Studio handles these environment variables itself
- Run
.\gradlew.bat installDebugto install the APK package file onto an Android virtual device or a connected real device.