allwinner_a64/android/external/dexmaker/dexmaker-tests/build.gradle
2018-08-08 16:14:42 +08:00

27 lines
560 B
Groovy

apply plugin: 'com.android.application'
repositories {
jcenter()
}
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.linkedin.dexmaker"
minSdkVersion 8
targetSdkVersion 25
versionCode 1
versionName VERSION_NAME
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
dependencies {
compile project(":dexmaker")
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'junit:junit:4.12'
}