diff options
author | fhuya <fhuya@google.com> | 2020-03-27 01:35:23 -0700 |
---|---|---|
committer | fhuya <fhuya@google.com> | 2020-03-27 01:35:23 -0700 |
commit | 8a50b716f5d335d0c060eb096032fc2d214dc635 (patch) | |
tree | 720c5f933732a949e0c2368a4cb0ee62354d9c28 /build.gradle | |
parent | 6837796a9d7acd3a5ea7ef241a23fd393c3a6609 (diff) | |
download | godot-android-samples-8a50b716f5d335d0c060eb096032fc2d214dc635.tar.gz godot-android-samples-8a50b716f5d335d0c060eb096032fc2d214dc635.tar.bz2 godot-android-samples-8a50b716f5d335d0c060eb096032fc2d214dc635.zip |
Add `HelloSignals` sample project to show how to register and emit signals with a Godot Android plugin
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 9494940..601d66a 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,9 @@ buildscript { + ext { + kotlin_version = '1.3.70' + } repositories { google() jcenter() @@ -9,7 +12,8 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:3.6.1' - + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files |