imgui

FORK: Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
git clone https://git.neptards.moe/neptards/imgui.git
Log | Files | Refs

build.gradle (738B)


      1 apply plugin: 'com.android.application'
      2 apply plugin: 'kotlin-android'
      3 
      4 android {
      5     compileSdkVersion 29
      6     buildToolsVersion "30.0.3"
      7     ndkVersion "21.4.7075529"
      8     defaultConfig {
      9         applicationId "imgui.example.android"
     10         minSdkVersion 23
     11         targetSdkVersion 29
     12         versionCode 1
     13         versionName "1.0"
     14     }
     15 
     16     buildTypes {
     17         release {
     18             minifyEnabled false
     19             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
     20         }
     21     }
     22 
     23     externalNativeBuild {
     24         cmake {
     25             path "../../CMakeLists.txt"
     26         }
     27     }
     28 }
     29 repositories {
     30     mavenCentral()
     31 }
     32 dependencies {
     33     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
     34 }