1 apply plugin: android.support.SupportLibraryPlugin 2 archivesBaseName = 'support-core-utils' 3 4 dependencies { 5 compile project(':support-annotations') 6 compile project(':support-compat') 7 8 androidTestCompile (libs.test_runner) { 9 exclude module: 'support-annotations' 10 } 11 androidTestCompile (libs.espresso_core) { 12 exclude module: 'support-annotations' 13 } 14 androidTestCompile libs.mockito_core 15 androidTestCompile libs.dexmaker 16 androidTestCompile libs.dexmaker_mockito 17 } 18 19 android { 20 defaultConfig { 21 minSdkVersion 14 22 } 23 24 sourceSets { 25 main.java.srcDirs = [ 26 'gingerbread', 27 'kitkat', 28 'api20', 29 'api21', 30 'api23', 31 'api24', 32 'java' 33 ] 34 } 35 } 36 37 supportLibrary { 38 name 'Android Support Library core utils' 39 inceptionYear '2011' 40 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." 41 } 42