blob: 707a32deb97019d02978c06c7625bf2160e4b19d [file] [log] [blame]
plugins {
id 'com.android.library'
}
android {
compileSdk 30
defaultConfig {
minSdk 21
targetSdk 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
externalNativeBuild {
cmake {
// Lowest version of cmake that is available on the Android SDK that
// is greater than or equal to 3.13 is 3.18.1.
version '3.18.1'
path 'src/main/jni/CMakeLists.txt'
}
}
}
dependencies {
}