Branch
Hash :
446ce804
Author :
Thomas de Grivel
Date :
2025-11-10T21:27:50
gradle
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
apply plugin: 'com.android.application'
android {
namespace 'io.kmx.kc3.window.egl.android.demo'
compileSdkVersion 31
defaultConfig {
applicationId "io.kmx.kc3.demo"
minSdkVersion 21
targetSdkVersion 31
versionCode 1
versionName "1.0"
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a'
}
}
buildTypes {
release {
minifyEnabled false
}
debug {
debuggable true
jniDebuggable true
}
}
sourceSets {
main {
jniLibs.srcDirs = ['src/main/jni/lib']
}
}
}
dependencies {
// No Java dependencies needed for pure native app
}