1 apply plugin: 'android-library' 2 3 archivesBaseName = 'appcompat-v7' 4 5 dependencies { 6 compile project(':v4') 7 } 8 9 android { 10 compileSdkVersion "current" 11 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 }