blob: 3c847e87f65ca56669b453f2d84c108c384352cd [file] [log] [blame]
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
}
}
apply plugin: 'android'
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<String> 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"
}
}
androidTest.setRoot('tests')
androidTest.java.srcDirs = ['tests/src']
}
}
// 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