1apply plugin: 'com.android.library'
2
3android {
4    compileSdkVersion 28
5    defaultConfig {
6        minSdkVersion 16
7        targetSdkVersion 28
8        versionCode 1
9        versionName "1.0"
10        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
11        externalNativeBuild {
12            cmake {
13                cppFlags ""
14            }
15        }
16    }
17    buildTypes {
18        release {
19            minifyEnabled false
20            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21        }
22    }
23}
24
25dependencies {
26    implementation fileTree(dir: 'libs', include: ['*.jar'])
27    testImplementation 'junit:junit:4.12'
28}
29