You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
apply plugin: android.support.SupportAndroidLibraryPlugin |
|
|
|
dependencies { |
|
api project(':support-annotations') |
|
api project(':support-core-ui') |
|
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 |
|
} |
|
|
|
android { |
|
defaultConfig { |
|
minSdkVersion 23 |
|
} |
|
|
|
sourceSets { |
|
main.java.srcDir 'src' |
|
main.res.srcDirs 'res', 'res-public' |
|
} |
|
|
|
buildTypes.all { |
|
consumerProguardFiles 'proguard-rules.pro' |
|
} |
|
} |
|
|
|
supportLibrary { |
|
name 'Android Wear Support UI' |
|
publish true |
|
inceptionYear '2016' |
|
description 'Android Wear Support UI' |
|
}
|
|
|