| import static android.support.dependencies.DependenciesKt.* |
| import android.support.LibraryGroups |
| import android.support.LibraryVersions |
| |
| plugins { |
| id("SupportAndroidLibraryPlugin") |
| } |
| |
| dependencies { |
| api(project(":support-compat")) |
| api(project(":support-annotations")) |
| api(project(":support-core-ui")) |
| api(project(":appcompat-v7")) |
| |
| androidTestImplementation(TEST_RUNNER) |
| androidTestImplementation(ESPRESSO_CORE) |
| androidTestImplementation(project(":support-testutils")) |
| } |
| |
| android { |
| sourceSets { |
| main.aidl.srcDirs = ["src/main/java"] |
| } |
| } |
| |
| supportLibrary { |
| name = "Android Support Custom Tabs" |
| publish = true |
| mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
| mavenGroup = LibraryGroups.SUPPORT |
| inceptionYear = "2015" |
| description = "Android Support Custom Tabs" |
| legacySourceLocation = true |
| minSdkVersion = 15 |
| } |