blob: 65a3e6f497f9dbe8fb129373acb28e8f4160eadf [file] [log] [blame]
apply plugin: 'com.android.library'
archivesBaseName = 'customtabs'
dependencies {
compile project(':support-v4')
compile project(':support-annotations')
androidTestCompile ('com.android.support.test:runner:0.4.1') {
exclude module: 'support-annotations'
}
androidTestCompile ('com.android.support.test.espresso:espresso-core:2.2.1') {
exclude module: 'support-annotations'
}
testCompile 'junit:junit:4.12'
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
main.java.srcDirs = ['src']
main.aidl.srcDirs = ['src']
main.res.srcDir 'res'
main.assets.srcDir 'assets'
main.resources.srcDir 'java'
androidTest.setRoot('tests')
androidTest.java.srcDir('tests/src/')
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}