You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
933 B
46 lines
933 B
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
// ndkPath = "D:\\Android\\NDK\\android-ndk-r23b\\"
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 26
|
|
externalNativeBuild {
|
|
cmake {
|
|
abiFilters 'armeabi-v7a'
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
all {
|
|
ndk {
|
|
abiFilters 'armeabi-v7a'
|
|
}
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
debug {
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
externalNativeBuild {
|
|
/*cmake {
|
|
path file('src/main/cpp/CMakeLists.txt')
|
|
version "3.10.2"
|
|
}*/
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
} |