1import androidx.build.LibraryGroups 2import androidx.build.LibraryVersions 3 4plugins { 5 id("SupportAndroidLibraryPlugin") 6} 7 8dependencies { 9 api(project(":core")) 10 api(project(":media")) 11 api(project(":legacy-support-core-utils")) 12 api(project(":legacy-support-core-ui")) 13 api(project(":fragment")) 14} 15 16supportLibrary { 17 name = "Android Support Library v4" 18 publish = true 19 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 20 mavenGroup = LibraryGroups.LEGACY 21 inceptionYear = "2011" 22 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." 23} 24