1apply plugin: 'com.android.library'
2
3android {
4    compileSdkVersion 'android-P'
5    buildToolsVersion "25.0.0"
6
7    lintOptions {
8        abortOnError false
9    }
10
11    defaultConfig {
12        minSdkVersion 25
13        targetSdkVersion 25
14        versionName VERSION_NAME
15    }
16
17    externalNativeBuild {
18        cmake {
19            path 'CMakeLists.txt'
20        }
21    }
22
23}
24
25repositories {
26    jcenter()
27}
28
29dependencies {
30    compile project(':dexmaker')
31    compile 'org.mockito:mockito-core:2.15.0', { exclude group: "net.bytebuddy" }
32}
33
34