blob: 0bbd03d17ff596e3427b7a5926e795a31f2c6682 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.ESPRESSO_CORE
import static android.support.dependencies.DependenciesKt.TEST_RUNNER
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":support-compat"))
api(project(":support-annotations"))
androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
androidTestImplementation(project(":support-testutils"))
}
android {
defaultConfig {
minSdkVersion(15)
}
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
}