blob: 6f5afe04c804b347dfd4be6dc24656b56f8bc1a5 [file] [log] [blame]
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08001apply plugin: 'android-library'
2
3archivesBaseName = 'appcompat-v7'
4
5dependencies {
Xavier Ducrohet855a9222014-01-02 19:00:43 -08006 compile project(':support-v4')
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -08007}
8
9android {
Xavier Ducroheta3e11a52014-01-23 12:02:24 -080010 compileSdkVersion 19
11 buildToolsVersion "19.0.1"
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080012
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 }
Xavier Ducrohet61becda2014-01-29 19:02:16 -080026
27 lintOptions {
28 // TODO: fix errors and reenable.
29 abortOnError false
30 }
Xavier Ducrohet86fb8ef2013-02-22 15:04:37 -080031}