aboutsummaryrefslogtreecommitdiff
path: root/ui/window
diff options
context:
space:
mode:
authorTrevor Johns <trevorjohns@google.com>2014-08-08 18:49:32 -0700
committerTrevor Johns <trevorjohns@google.com>2014-08-08 18:51:09 -0700
commit13619960f2566eadd34b242e3b81f5e781ab33d0 (patch)
tree8cc0d27145813069b5587103aac61a75c4eda156 /ui/window
parent63ed998e421eecc72303a7f22065ea565d9833aa (diff)
downloadandroid-13619960f2566eadd34b242e3b81f5e781ab33d0.tar.gz
Remove managed build.gradle files
These build files are managed by a template and shouldn't be checked in. This is normally harmless, but can prevent the build system from applying global changes if a dependency breaks. Change-Id: I5d0ab1bf2244659172fa8c29957d227abbc4d886
Diffstat (limited to 'ui/window')
-rw-r--r--ui/window/AdvancedImmersiveMode/AdvancedImmersiveModeSample/build.gradle60
1 files changed, 0 insertions, 60 deletions
diff --git a/ui/window/AdvancedImmersiveMode/AdvancedImmersiveModeSample/build.gradle b/ui/window/AdvancedImmersiveMode/AdvancedImmersiveModeSample/build.gradle
deleted file mode 100644
index dc1a8bfc..00000000
--- a/ui/window/AdvancedImmersiveMode/AdvancedImmersiveModeSample/build.gradle
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-buildscript {
- repositories {
- mavenCentral()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:0.8.+'
- }
-}
-
-apply plugin: 'android'
-
-dependencies {
- // Add the support lib that is appropriate for SDK 4
- compile "com.android.support:support-v4:19.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 19
-
- buildToolsVersion "19.0.1"
-
- sourceSets {
- main {
- dirs.each { dir ->
- java.srcDirs "src/${dir}/java"
- res.srcDirs "src/${dir}/res"
- }
- }
- instrumentTest.setRoot('tests')
- instrumentTest.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