diff options
author | fhuya <fhuya@google.com> | 2020-02-23 13:43:08 -0500 |
---|---|---|
committer | fhuya <fhuya@google.com> | 2020-02-23 13:43:08 -0500 |
commit | 84aa6bbbe4f13072181c0437103d2430f8ea6551 (patch) | |
tree | be18caa4ff1c51d1aee35c04ab4c4a1193af48b7 /hello_world/build.gradle | |
parent | 259ae7a9fdcfad643412eedec84e0be883debec0 (diff) | |
download | godot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.tar.gz godot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.tar.bz2 godot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.zip |
Add sample hello world plugin and demo project.
Diffstat (limited to 'hello_world/build.gradle')
-rw-r--r-- | hello_world/build.gradle | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/hello_world/build.gradle b/hello_world/build.gradle new file mode 100644 index 0000000..f084cc9 --- /dev/null +++ b/hello_world/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.5.3' + + + // 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 +} |