blob: 458f7226e9401577b35c503beed4434093eb345a [file] [log] [blame]
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api project(':support-annotations')
api project(':support-core-ui')
api project(':support-fragment')
api project(':percent')
api project(':recyclerview-v7')
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' }
androidTestImplementation libs.mockito_core, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
androidTestImplementation libs.dexmaker_mockito, { exclude group: 'net.bytebuddy' } // DexMaker has it"s own MockMaker
provided 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"]
}
}
buildTypes.all {
consumerProguardFiles 'proguard-rules.pro'
}
}
supportLibrary {
name = "Android Wear Support UI"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2016"
description = "Android Wear Support UI"
legacySourceLocation = true
}