blob: 88a21283942017f46528f5887489c43b5ad39088 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
android {
defaultConfig {
minSdkVersion 16
}
}
dependencies {
api("androidx.core:core:1.1.0-rc01")
api("androidx.annotation:annotation:1.1.0")
api(project(":interpolator"))
implementation("androidx.collection:collection:1.1.0")
implementation(project(":concurrent:concurrent-futures"))
annotationProcessor(NULLAWAY)
testImplementation(ANDROIDX_TEST_CORE)
testImplementation(ANDROIDX_TEST_RUNNER)
testImplementation(JUNIT)
testImplementation(ROBOLECTRIC)
testImplementation(MOCKITO_CORE)
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
androidTestImplementation(ANDROIDX_TEST_RULES)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(project(":internal-testutils"))
}
androidx {
name = "Android Support Custom Tabs"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenVersion = LibraryVersions.BROWSER
mavenGroup = LibraryGroups.BROWSER
inceptionYear = "2015"
description = "Android Support Custom Tabs"
failOnDeprecationWarnings = false
}