23 lines
446 B
Groovy
Raw Permalink Normal View History

2025-07-31 14:43:31 +08:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 24
targetSdkVersion 32
ndk {
abiFilters 'x86', 'armeabi-v7a', 'arm64-v8a'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
namespace 'com.spatialite'
}