blob: ad387b4a4ffd5dae485100d07c2504ea3b7f079a [file] [log] [blame]
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08001apply plugin: 'android-library'
2
3archivesBaseName = 'gridlayout-v7'
4
Raphael Moll5057daa2013-10-29 17:01:14 -07005dependencies {
6 compile project(':v4')
7}
8
9
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080010android {
Raphael Moll5057daa2013-10-29 17:01:14 -070011 compileSdkVersion "current"
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080012 buildToolsVersion "17"
13
14 sourceSets {
15 main.manifest.srcFile 'AndroidManifest.xml'
16 main.java.srcDir 'src'
17 main.res.srcDir 'res'
18 main.assets.srcDir 'assets'
19 main.resources.srcDir 'src'
20 instrumentTest.java.srcDir 'tests/src'
21
22 // this moves src/instrumentTest to tests so all folders follow:
23 // tests/java, tests/res, tests/assets, ...
24 // This is a *reset* so it replaces the default paths
25 instrumentTest.setRoot('tests')
26 }
Raphael Moll5057daa2013-10-29 17:01:14 -070027}