普通文本  |  34行  |  539 B

apply plugin: 'com.android.library'

android {
    compileSdkVersion 'android-P'
    buildToolsVersion "25.0.0"

    lintOptions {
        abortOnError false
    }

    defaultConfig {
        minSdkVersion 25
        targetSdkVersion 25
        versionName VERSION_NAME
    }

    externalNativeBuild {
        cmake {
            path 'CMakeLists.txt'
        }
    }

}

repositories {
    jcenter()
}

dependencies {
    compile project(':dexmaker')
    compile 'org.mockito:mockito-core:2.15.0', { exclude group: "net.bytebuddy" }
}