Aurimas Liutikas | 9697da7 | 2016-12-22 15:50:42 -0800 | [diff] [blame] | 1 | apply plugin: android.support.SupportLibraryPlugin |
Xavier Ducrohet | 86fb8ef | 2013-02-22 15:04:37 -0800 | [diff] [blame] | 2 | archivesBaseName = 'support-v13' |
| 3 | |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 4 | dependencies { |
| 5 | compile project(':support-annotations') |
| 6 | compile project(':support-v4') |
Vladislav Kaznacheev | 8a771cd | 2016-11-15 13:22:38 -0800 | [diff] [blame] | 7 | |
Aurimas Liutikas | f09d858 | 2017-01-20 21:49:51 -0800 | [diff] [blame] | 8 | androidTestCompile (libs.test_runner) { |
Vladislav Kaznacheev | 8a771cd | 2016-11-15 13:22:38 -0800 | [diff] [blame] | 9 | exclude module: 'support-annotations' |
| 10 | } |
Aurimas Liutikas | f09d858 | 2017-01-20 21:49:51 -0800 | [diff] [blame] | 11 | androidTestCompile (libs.espresso_core) { |
Vladislav Kaznacheev | 8a771cd | 2016-11-15 13:22:38 -0800 | [diff] [blame] | 12 | exclude module: 'support-annotations' |
| 13 | } |
Aurimas Liutikas | f09d858 | 2017-01-20 21:49:51 -0800 | [diff] [blame] | 14 | androidTestCompile libs.mockito_core |
| 15 | androidTestCompile libs.dexmaker |
| 16 | androidTestCompile libs.dexmaker_mockito |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 17 | } |
Justin Klaassen | 68e7adb | 2016-01-21 12:50:47 -0800 | [diff] [blame] | 18 | |
Yigit Boyar | 5932b6f | 2014-04-30 13:43:59 -0700 | [diff] [blame] | 19 | android { |
Yigit Boyar | 5932b6f | 2014-04-30 13:43:59 -0700 | [diff] [blame] | 20 | defaultConfig { |
Aurimas Liutikas | f751306 | 2017-01-05 13:02:27 -0800 | [diff] [blame] | 21 | minSdkVersion 14 |
Yigit Boyar | 5932b6f | 2014-04-30 13:43:59 -0700 | [diff] [blame] | 22 | } |
| 23 | |
Yigit Boyar | 5932b6f | 2014-04-30 13:43:59 -0700 | [diff] [blame] | 24 | sourceSets { |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 25 | main.java.srcDirs = [ |
Alan Viverette | 9439d70 | 2016-10-25 14:45:10 +0100 | [diff] [blame] | 26 | 'java' |
| 27 | ] |
Yigit Boyar | 02a9e8c | 2016-01-26 20:41:00 -0800 | [diff] [blame] | 28 | } |
Yigit Boyar | 5932b6f | 2014-04-30 13:43:59 -0700 | [diff] [blame] | 29 | } |
| 30 | |
Aurimas Liutikas | 16cd13b | 2017-01-04 15:00:13 -0800 | [diff] [blame] | 31 | supportLibrary { |
| 32 | name 'Android Support Library v13' |
| 33 | inceptionYear '2011' |
| 34 | 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 4 or later." |
| 35 | } |