1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'support-v4' 3 4dependencies { 5 compile project(':support-compat') 6 compile project(':support-media-compat') 7 compile project(':support-core-utils') 8 compile project(':support-core-ui') 9 compile project(':support-fragment') 10} 11 12android { 13 defaultConfig { 14 minSdkVersion 14 15 // This disables the builds tools automatic vector -> PNG generation 16 generatedDensities = [] 17 } 18} 19 20supportLibrary { 21 name 'Android Support Library v4' 22 inceptionYear '2011' 23 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." 24} 25