1apply plugin: 'com.android.library' 2 3android { 4 compileSdkVersion 29 5 buildToolsVersion "29.0.1" 6 7 8 defaultConfig { 9 minSdkVersion 26 10 targetSdkVersion 29 11 versionCode 1 12 versionName "1.0" 13 14 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 consumerProguardFiles 'consumer-rules.pro' 16 } 17 18 buildTypes { 19 release { 20 minifyEnabled false 21 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 } 23 } 24 25 externalNativeBuild { 26 cmake { 27 path 'src/main/cpp/CMakeLists.txt' 28 } 29 } 30} 31 32dependencies { 33 implementation fileTree(dir: 'libs', include: ['*.jar']) 34 35 implementation 'androidx.appcompat:appcompat:1.1.0' 36} 37