blob: 54e85ec30a1a8a588639be6f8225398c9cbf600e [file] [log] [blame]
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
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.12.0'
}