Aurimas Liutikas | f8b708a | 2017-11-02 16:07:13 -0700 | [diff] [blame] | 1 | plugins { |
| 2 | id("SupportAndroidLibraryPlugin") |
| 3 | } |
Yusuf Ozuysal | 08889ac | 2015-06-18 11:28:34 -0700 | [diff] [blame] | 4 | |
Benoit Lize | 97ee4f3 | 2015-07-31 14:28:59 +0200 | [diff] [blame] | 5 | dependencies { |
Aurimas Liutikas | 1989c3c | 2017-07-05 14:44:09 -0700 | [diff] [blame] | 6 | api project(':support-compat') |
| 7 | api project(':support-annotations') |
Kirill Grouchnikov | f8b9ac8 | 2016-02-11 18:44:27 -0800 | [diff] [blame] | 8 | |
Aurimas Liutikas | 9edca68 | 2017-07-25 09:12:35 -0700 | [diff] [blame] | 9 | androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' } |
| 10 | androidTestImplementation libs.espresso_core, { exclude module: 'support-annotations' } |
Aurimas Liutikas | 1989c3c | 2017-07-05 14:44:09 -0700 | [diff] [blame] | 11 | androidTestImplementation project(':support-testutils') |
Benoit Lize | 97ee4f3 | 2015-07-31 14:28:59 +0200 | [diff] [blame] | 12 | } |
| 13 | |
Yusuf Ozuysal | 08889ac | 2015-06-18 11:28:34 -0700 | [diff] [blame] | 14 | android { |
Kirill Grouchnikov | f8b9ac8 | 2016-02-11 18:44:27 -0800 | [diff] [blame] | 15 | defaultConfig { |
Aurimas Liutikas | 9697da7 | 2016-12-22 15:50:42 -0800 | [diff] [blame] | 16 | minSdkVersion 15 |
Kirill Grouchnikov | f8b9ac8 | 2016-02-11 18:44:27 -0800 | [diff] [blame] | 17 | } |
Aurimas Liutikas | 809d1e4 | 2017-09-29 17:02:48 +0000 | [diff] [blame] | 18 | |
| 19 | sourceSets { |
Aurimas Liutikas | 034bc50 | 2017-10-02 17:45:56 -0700 | [diff] [blame] | 20 | main.aidl.srcDirs = ['src/main/java'] |
Aurimas Liutikas | 809d1e4 | 2017-09-29 17:02:48 +0000 | [diff] [blame] | 21 | } |
Aurimas Liutikas | 16cd13b | 2017-01-04 15:00:13 -0800 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | supportLibrary { |
Aurimas Liutikas | ea5ee82 | 2017-11-06 12:52:28 -0800 | [diff] [blame^] | 25 | name = "Android Support Custom Tabs" |
| 26 | publish = true |
| 27 | inceptionYear = "2015" |
| 28 | description = "Android Support Custom Tabs" |
| 29 | legacySourceLocation = true |
Aurimas Liutikas | 16cd13b | 2017-01-04 15:00:13 -0800 | [diff] [blame] | 30 | } |