blob: f007373eb757c92e6d0ade94c366b72b8d71d329 [file] [log] [blame]
Aurimas Liutikas9697da72016-12-22 15:50:42 -08001apply plugin: android.support.SupportLibraryPlugin
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08002archivesBaseName = 'gridlayout-v7'
3
Xavier Ducrohete8b71222013-11-20 16:30:26 -08004dependencies {
Kirill Grouchnikov55fc3f22016-05-12 12:17:09 -07005 compile project(':support-compat')
6 compile project(':support-core-ui')
Kirill Grouchnikov1d3991c2016-02-12 10:58:38 -08007
Aurimas Liutikasdfe75782016-08-03 14:27:20 -07008 androidTestCompile ("com.android.support.test:runner:${project.rootProject.ext.testRunnerVersion}") {
Kirill Grouchnikov1d3991c2016-02-12 10:58:38 -08009 exclude module: 'support-annotations'
10 }
Aurimas Liutikasdfe75782016-08-03 14:27:20 -070011 androidTestCompile ("com.android.support.test.espresso:espresso-core:${project.rootProject.ext.espressoVersion}") {
Kirill Grouchnikov1d3991c2016-02-12 10:58:38 -080012 exclude module: 'support-annotations'
13 }
14 testCompile 'junit:junit:4.12'
Xavier Ducrohete8b71222013-11-20 16:30:26 -080015}
16
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080017android {
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080018 compileSdkVersion project.ext.currentSdk
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080019
Kirill Grouchnikov1d3991c2016-02-12 10:58:38 -080020 defaultConfig {
Aurimas Liutikasf7513062017-01-05 13:02:27 -080021 minSdkVersion 14
Kirill Grouchnikov1d3991c2016-02-12 10:58:38 -080022 }
23
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080024 sourceSets {
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080025 main.java.srcDir 'src'
26 main.res.srcDir 'res'
27 main.assets.srcDir 'assets'
28 main.resources.srcDir 'src'
Yigit Boyar02a9e8c2016-01-26 20:41:00 -080029 }
Raphael Moll5057daa2013-10-29 17:01:14 -070030}
Xavier Ducrohet11b83982015-03-31 15:12:42 -070031
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080032supportLibrary {
33 name 'Android Support Grid Layout'
34 inceptionYear '2013'
35 description 'Android Support Grid Layout'
36}
37
Xavier Ducrohet11b83982015-03-31 15:12:42 -070038uploadArchives {
39 repositories {
40 mavenDeployer {
41 repository(url: uri(rootProject.ext.supportRepoOut)) {
42 }
Xavier Ducrohet11b83982015-03-31 15:12:42 -070043 }
44 }
45}