123456789101112131415161718192021222324252627282930 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.3"
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 29
- versionCode 7
- versionName "0.7"
- externalNativeBuild {
- cmake {
- arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=system'
- cppFlags '-std=c++11'
- }
- }
- }
- externalNativeBuild {
- cmake {
- path "src/main/cpp/CMakeLists.txt"
- }
- }
- }
- dependencies {
- implementation "androidx.annotation:annotation:1.1.0"
- }
|