1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'support-v13' 3 4dependencies { 5 compile project(':support-annotations') 6 compile project(':support-v4') 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 19android { 20 defaultConfig { 21 minSdkVersion 14 22 } 23 24 sourceSets { 25 main.java.srcDirs = [ 26 'java' 27 ] 28 } 29} 30 31supportLibrary { 32 name 'Android Support Library v13' 33 inceptionYear '2011' 34 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." 35} 36