blob: c61fd69484cb0e8eabf876a4d33bab78b8391353 [file] [log] [blame]
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }
apply plugin: 'com.android.application'
apply from: "../commonLocalRepo.gradle"
android {
compileSdkVersion rootProject.latestCompileSdk
buildToolsVersion = rootProject.buildToolsVersion
defaultConfig {
versionCode 12
versionName "2.0"
minSdkVersion 16
//noinspection ExpiringTargetSdkVersion,ExpiredTargetSdkVersion
targetSdkVersion 16
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation "com.android.support.test:runner:${project.testSupportLibVersion}"
androidTestImplementation "com.android.support.test:rules:${project.testSupportLibVersion}"
api 'com.google.guava:guava:18.0'
// this is added by the test to control the version.
//androidTestImplementation 'com.google.guava:guava:x.y'
}