blob: 4fc6b12e6fada1112525919e1138948bca5b86fb [file] [log] [blame]
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08001apply plugin: 'android-library'
2
3archivesBaseName = 'gridlayout-v7'
4
5android {
6 compileSdkVersion "unstubbed"
7 buildToolsVersion "17"
8
9 sourceSets {
10 main.manifest.srcFile 'AndroidManifest.xml'
11 main.java.srcDir 'src'
12 main.res.srcDir 'res'
13 main.assets.srcDir 'assets'
14 main.resources.srcDir 'src'
15 instrumentTest.java.srcDir 'tests/src'
16
17 // this moves src/instrumentTest to tests so all folders follow:
18 // tests/java, tests/res, tests/assets, ...
19 // This is a *reset* so it replaces the default paths
20 instrumentTest.setRoot('tests')
21 }
22}