From 6837796a9d7acd3a5ea7ef241a23fd393c3a6609 Mon Sep 17 00:00:00 2001 From: fhuya Date: Thu, 26 Mar 2020 07:34:07 -0700 Subject: Update repository structure: make each sample project (e.g: `hello_world`) a subproject in the `Godot-Android-Plugins` project. --- build.gradle | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 build.gradle (limited to 'build.gradle') 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 +} -- cgit v1.2.3