1import androidx.build.LibraryGroups 2import androidx.build.LibraryVersions 3 4plugins { 5 id("SupportAndroidLibraryPlugin") 6} 7 8dependencies { 9 api(project(":annotation")) 10 api(project(":core")) 11} 12 13supportLibrary { 14 name = "Android Support Library Async Layout Inflater" 15 publish = true 16 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 17 mavenGroup = LibraryGroups.ASYNCLAYOUTINFLATER 18 inceptionYear = "2018" 19 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." 20} 21