blob: 04818758342ef79f2e674d9a7874984baf781800 [file] [log] [blame]
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}
apply plugin: 'android'
dependencies {
// Add the support lib that is appropriate for SDK 4
compile "com.android.support:support-v4:18.0.+"
}
// 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 18
buildToolsVersion "18.0.1"
sourceSets {
main {
dirs.each { dir ->
java.srcDirs "src/${dir}/java"
res.srcDirs "src/${dir}/res"
}
}
}
}
task preflight (dependsOn: parent.preflight) {}
// 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
}