mirror of
https://github.com/MobileGL-Dev/MobileGlues.git
synced 2025-08-02 23:16:13 -04:00
39 lines
914 B
Groovy
39 lines
914 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'com.swung0x48.mobileglues'
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
minSdk 21
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles "consumer-rules.pro"
|
|
ndkVersion '27.1.12297006'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
proguard {
|
|
minifyEnabled true
|
|
initWith debug
|
|
}
|
|
fordebug {
|
|
debuggable true
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "src/main/cpp/CMakeLists.txt"
|
|
version "3.22.1"
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|