blob: a7c130ea3412b7bf10eeb2fe707c2c8cac6a03aa [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07002archivesBaseName = 'support-fragment'
3
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07004dependencies {
5 compile project(':support-compat')
Kirill Grouchnikovff22d812016-05-11 15:24:25 -07006 compile project(':support-core-ui')
Kirill Grouchnikov5dd39aa2016-05-16 16:34:01 -07007 compile project(':support-core-utils')
Aurimas Liutikasf09d8582017-01-20 21:49:51 -08008
9 androidTestCompile (libs.test_runner) {
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070010 exclude module: 'support-annotations'
11 }
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080012 androidTestCompile (libs.espresso_core) {
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070013 exclude module: 'support-annotations'
14 }
Aurimas Liutikasf09d8582017-01-20 21:49:51 -080015 androidTestCompile libs.mockito_core
16 androidTestCompile libs.dexmaker
17 androidTestCompile libs.dexmaker_mockito
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070018}
19
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070020android {
Alan Viverette9439d702016-10-25 14:45:10 +010021 compileSdkVersion project.ext.currentSdk
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070022
23 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080024 minSdkVersion 14
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070025 }
26
27 sourceSets {
Alan Viverette9439d702016-10-25 14:45:10 +010028 main.java.srcDirs = [
29 'gingerbread',
30 'honeycomb',
31 'jellybean',
32 'api21',
33 'java'
34 ]
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070035 }
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070036}
37
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080038supportLibrary {
39 name 'Android Support Library v4'
40 inceptionYear '2011'
41 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."
42}
43