summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorfhuya <fhuya@google.com>2020-03-26 07:34:07 -0700
committerfhuya <fhuya@google.com>2020-03-26 07:34:07 -0700
commit6837796a9d7acd3a5ea7ef241a23fd393c3a6609 (patch)
treea90acbe1a388d1aeec0e70836225890eb0894577 /build.gradle
parentf1a5737ecff60476da0a797c8063b44e4f2659b1 (diff)
downloadgodot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.tar.gz
godot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.tar.bz2
godot-android-samples-6837796a9d7acd3a5ea7ef241a23fd393c3a6609.zip
Update repository structure: make each sample project (e.g: `hello_world`) a subproject in the `Godot-Android-Plugins` project.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..9494940
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,29 @@
+// 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.6.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
+}