• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: android.support.SupportLibraryPlugin
2archivesBaseName = 'wear'
3
4dependencies {
5    compile project(':support-annotations')
6    compile project(':support-core-ui')
7    compile project(':support-percent')
8    compile project(':support-recyclerview-v7')
9    androidTestCompile (libs.test_runner) {
10        exclude module: 'support-annotations'
11    }
12    androidTestCompile (libs.espresso_core) {
13        exclude module: 'support-annotations'
14    }
15    androidTestCompile libs.mockito_core
16    androidTestCompile libs.dexmaker
17    androidTestCompile libs.dexmaker_mockito
18}
19
20android {
21    defaultConfig {
22        minSdkVersion 23
23    }
24
25    sourceSets {
26        main.java.srcDir 'src'
27        main.res.srcDirs 'res', 'res-public'
28    }
29
30    buildTypes.all {
31        consumerProguardFiles 'proguard-rules.pro'
32    }
33}
34
35supportLibrary {
36    name 'Android Wear Support UI'
37    inceptionYear '2016'
38    description 'Android Wear Support UI'
39}
40