blob: 8019c0eae800aefca4fac4fdc6227cc37e041520 [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08002
Alan Viverette9439d702016-10-25 14:45:10 +01003dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-annotations')
5 api project(':support-v4')
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -08006
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07007 androidTestImplementation (libs.test_runner) {
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -08008 exclude module: 'support-annotations'
9 }
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070010 androidTestImplementation (libs.espresso_core) {
Vladislav Kaznacheev8a771cd2016-11-15 13:22:38 -080011 exclude module: 'support-annotations'
12 }
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070013 androidTestImplementation libs.mockito_core
14 androidTestImplementation libs.dexmaker_mockito
Alan Viverette9439d702016-10-25 14:45:10 +010015}
Justin Klaassen68e7adb2016-01-21 12:50:47 -080016
Yigit Boyar5932b6f2014-04-30 13:43:59 -070017android {
Yigit Boyar5932b6f2014-04-30 13:43:59 -070018 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080019 minSdkVersion 14
Yigit Boyar5932b6f2014-04-30 13:43:59 -070020 }
21
Yigit Boyar5932b6f2014-04-30 13:43:59 -070022 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010023 main.java.srcDirs = [
Alan Viverette9439d702016-10-25 14:45:10 +010024 'java'
25 ]
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080026 }
Yigit Boyar5932b6f2014-04-30 13:43:59 -070027}
28
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080029supportLibrary {
30 name 'Android Support Library v13'
31 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070032 description "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later."
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080033}