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