Home | History | Annotate | Download | only in wear
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(':support-annotations')
      5     api project(':support-core-ui')
      6     api project(':percent')
      7     api project(':recyclerview-v7')
      8 
      9     androidTestImplementation libs.test_runner,      { exclude module: 'support-annotations' }
     10     androidTestImplementation libs.espresso_core,    { exclude module: 'support-annotations' }
     11     androidTestImplementation libs.mockito_core,     { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
     12     androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
     13 }
     14 
     15 android {
     16     defaultConfig {
     17         minSdkVersion 23
     18     }
     19 
     20     sourceSets {
     21         main.java.srcDir 'src'
     22         main.res.srcDirs 'res', 'res-public'
     23     }
     24 
     25     buildTypes.all {
     26         consumerProguardFiles 'proguard-rules.pro'
     27     }
     28 }
     29 
     30 supportLibrary {
     31     name 'Android Wear Support UI'
     32     publish true
     33     inceptionYear '2016'
     34     description 'Android Wear Support UI'
     35 }
     36