blob: 88a1f9fafdfd4bfaa6a6ed7b427efce965e37cfb [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Aurimas Liutikas94d018a2016-12-19 11:39:07 -08002
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -04003dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -07004 api project(':support-compat')
5 api project(':support-media-compat')
6 api project(':support-core-utils')
7 api project(':support-core-ui')
8 api project(':support-fragment')
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -04009}
10
11android {
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040012 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080013 minSdkVersion 14
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040014 // This disables the builds tools automatic vector -> PNG generation
15 generatedDensities = []
16 }
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040017}
18
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080019supportLibrary {
20 name 'Android Support Library v4'
21 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070022 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 -080023}