Home | History | Annotate | Download | only in core-utils
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(':support-annotations')
      5     api project(':support-compat')
      6 
      7     androidTestImplementation libs.test_runner,      { exclude module: 'support-annotations' }
      8     androidTestImplementation libs.espresso_core,    { exclude module: 'support-annotations' }
      9     androidTestImplementation libs.mockito_core,     { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
     10     androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
     11 }
     12 
     13 android {
     14     defaultConfig {
     15         minSdkVersion 14
     16     }
     17 
     18     sourceSets {
     19         main.java.srcDirs = [
     20                 'gingerbread',
     21                 'kitkat',
     22                 'api20',
     23                 'api21',
     24                 'api23',
     25                 'api24',
     26                 'java'
     27         ]
     28     }
     29 }
     30 
     31 supportLibrary {
     32     name 'Android Support Library core utils'
     33     publish true
     34     inceptionYear '2011'
     35     description "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later."
     36 }
     37