blob: 853f0613df53124d2572652a7b32bd1582bb9801 [file] [log] [blame]
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" }
}