1 apply plugin: android.support.SupportAndroidLibraryPlugin 2 3 dependencies { 4 api project(':support-annotations') 5 api project(':support-v4') 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 'java' 21 ] 22 } 23 } 24 25 supportLibrary { 26 name 'Android Support Library v13' 27 publish true 28 inceptionYear '2011' 29 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." 30 } 31