blob: 87bc171e519618704a30b932e7759352ccc3bb25 [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -04002archivesBaseName = 'support-v4'
Aurimas Liutikas94d018a2016-12-19 11:39:07 -08003
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -04004dependencies {
5 compile project(':support-compat')
Kirill Grouchnikovd3c53472016-05-10 08:02:18 -07006 compile project(':support-media-compat')
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07007 compile project(':support-core-utils')
8 compile project(':support-core-ui')
9 compile project(':support-fragment')
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040010}
11
12android {
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040013 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080014 minSdkVersion 14
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040015 // This disables the builds tools automatic vector -> PNG generation
16 generatedDensities = []
17 }
Kirill Grouchnikov3ac77bf2016-04-27 12:46:47 -040018}
19
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080020supportLibrary {
21 name 'Android Support Library v4'
22 inceptionYear '2011'
Kirill Grouchnikov5c5181c2017-05-16 10:58:53 -070023 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 -080024}