summaryrefslogtreecommitdiff
path: root/platform/android/example/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/example/build.gradle')
-rw-r--r--platform/android/example/build.gradle27
1 files changed, 16 insertions, 11 deletions
diff --git a/platform/android/example/build.gradle b/platform/android/example/build.gradle
index d92ef895..ec337e49 100644
--- a/platform/android/example/build.gradle
+++ b/platform/android/example/build.gradle
@@ -1,18 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
- repositories {
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle-experimental:0.6.0-alpha9'
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:2.1.2'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
}
allprojects {
- repositories {
- jcenter()
- }
+ repositories {
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
}