summaryrefslogtreecommitdiff
path: root/external/imgui/examples/example_android_opengl3/android/app/build.gradle
diff options
context:
space:
mode:
author0x221E <0x221E@0xinfinity.dev>2026-04-12 16:59:40 +0200
committer0x221E <0x221E@0xinfinity.dev>2026-04-12 16:59:40 +0200
commita66c7433c2c11b8b6c99142277ed4e16b1a2a465 (patch)
treee54bcfb59c303acf6118fd11f06d5c0bd5f24e5d /external/imgui/examples/example_android_opengl3/android/app/build.gradle
initial commitHEADmaster
Diffstat (limited to 'external/imgui/examples/example_android_opengl3/android/app/build.gradle')
-rw-r--r--external/imgui/examples/example_android_opengl3/android/app/build.gradle37
1 files changed, 37 insertions, 0 deletions
diff --git a/external/imgui/examples/example_android_opengl3/android/app/build.gradle b/external/imgui/examples/example_android_opengl3/android/app/build.gradle
new file mode 100644
index 0000000..e142f19
--- /dev/null
+++ b/external/imgui/examples/example_android_opengl3/android/app/build.gradle
@@ -0,0 +1,37 @@
+plugins {
+ alias(libs.plugins.android.application)
+ alias(libs.plugins.kotlin.android)
+}
+
+android {
+ namespace 'imgui.example.android'
+ compileSdk 36
+
+ defaultConfig {
+ applicationId "imgui.example.android"
+ minSdk 24
+ targetSdk 36
+ versionCode 1
+ versionName "1.0"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_11
+ targetCompatibility JavaVersion.VERSION_11
+ }
+ kotlinOptions {
+ jvmTarget = '11'
+ }
+ externalNativeBuild {
+ cmake {
+ path file('../../CMakeLists.txt')
+ version '3.22.1'
+ }
+ }
+}