aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/android/helloworld/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'examples/android/helloworld/build.gradle')
-rw-r--r--examples/android/helloworld/build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/android/helloworld/build.gradle b/examples/android/helloworld/build.gradle
new file mode 100644
index 0000000000..bd5f337f01
--- /dev/null
+++ b/examples/android/helloworld/build.gradle
@@ -0,0 +1,24 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.0.1'
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}