blob: b62784be1786b73199db0e614320a04d2c809b6f [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 {
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070021 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080022 minSdkVersion 14
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070023 }
24
25 sourceSets {
Aurimas Liutikas434607f2017-04-10 14:16:15 -070026 main.java.srcDirs = ['java']
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070027 }
Kirill Grouchnikovff22d812016-05-11 15:24:25 -070028}
29
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080030supportLibrary {
31 name 'Android Support Library v4'
32 inceptionYear '2011'
33 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."
34}
35