mirror of
https://github.com/ocornut/imgui.git
synced 2025-09-13 06:48:24 +00:00
38 lines
803 B
Groovy
38 lines
803 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|