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