blob: 57d60df50c0c8fd00c5ab6fa07784af9828b7f56 [file] [log] [blame]
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":annotation"))
api(project(":legacy-support-core-ui"))
api(project(":fragment"))
api(project(":recyclerview"))
api(CONSTRAINT_LAYOUT, { transitive = true })
androidTestImplementation(TEST_EXT_JUNIT)
androidTestImplementation(TEST_CORE)
androidTestImplementation(TEST_RUNNER)
androidTestImplementation(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
compileOnly fileTree(dir: 'wear_stubs', include: ['com.google.android.wearable-stubs.jar'])
}
android {
defaultConfig {
minSdkVersion 23
}
sourceSets {
main.res.srcDirs 'res', 'res-public'
main.resources {
includes = ["wear_stubs/LICENSE"]
}
}
}
supportLibrary {
name = "Android Wear Support UI"
publish = true
mavenVersion = LibraryVersions.WEAR
mavenGroup = LibraryGroups.WEAR
inceptionYear = "2016"
description = "Android Wear Support UI"
failOnDeprecationWarnings = false
}