• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: android.support.SupportLibraryPlugin
2archivesBaseName = 'customtabs'
3
4dependencies {
5    compile project(':support-compat')
6    compile project(':support-annotations')
7
8    androidTestCompile (libs.test_runner) {
9        exclude module: 'support-annotations'
10    }
11
12    androidTestCompile (libs.espresso_core) {
13        exclude module: 'support-annotations'
14    }
15
16    androidTestCompile project(':support-testutils')
17}
18
19android {
20    defaultConfig {
21        minSdkVersion 15
22    }
23
24    sourceSets {
25        main.java.srcDirs = ['src']
26        main.aidl.srcDirs = ['src']
27        main.res.srcDir 'res'
28        main.assets.srcDir 'assets'
29        main.resources.srcDir 'java'
30    }
31}
32
33supportLibrary {
34    name 'Android Support Custom Tabs'
35    inceptionYear '2015'
36    description 'Android Support Custom Tabs'
37}
38