buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:1.0.0-rc1' } } apply plugin: 'com.android.application' dependencies { compile "com.android.support:support-v4:20.+" compile "com.android.support:support-v13:20.+" } // The sample build uses multiple directories to // keep boilerplate and common code separate from // the main sample code. List dirs = [ 'main', // main sample code; look here for the interesting stuff. 'common', // components that are reused by multiple samples 'template'] // boilerplate code that is generated by the sample template process android { compileSdkVersion "android-L" buildToolsVersion "20.0.0" sourceSets { main { dirs.each { dir -> java.srcDirs "src/${dir}/java" res.srcDirs "src/${dir}/res" } } } } // BEGIN_EXCLUDE // Tasks below this line will be hidden from release output task preflight (dependsOn: parent.preflight) { project.afterEvaluate { // Inject a preflight task into each variant so we have a place to hook tasks // that need to run before any of the android build tasks. // android.applicationVariants.each { variant -> tasks.getByPath("prepare${variant.name.capitalize()}Dependencies").dependsOn preflight } } } // END_EXCLUDE