summaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2023-07-02 16:36:16 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2023-07-02 16:36:16 -0700
commitf6a336cf56d5d653b05c12fb7f71b5da595e49d4 (patch)
tree0c92274b81918a3442aab23f51524ed29ce90b21 /settings.gradle
parent8a50b716f5d335d0c060eb096032fc2d214dc635 (diff)
downloadgodot-android-samples-f6a336cf56d5d653b05c12fb7f71b5da595e49d4.tar.gz
godot-android-samples-f6a336cf56d5d653b05c12fb7f71b5da595e49d4.tar.bz2
godot-android-samples-f6a336cf56d5d653b05c12fb7f71b5da595e49d4.zip
Update the 'Hello World' Android plugin to match the new Godot 4.2 format
See https://github.com/godotengine/godot/pull/78958 for reference.
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle20
1 files changed, 17 insertions, 3 deletions
diff --git a/settings.gradle b/settings.gradle
index 153a4a9..ed12156 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,4 +1,18 @@
-rootProject.name='Godot Android Plugins'
+pluginManagement {
+ apply from: 'config.gradle'
-include ':hello_world'
-include ':hello_signals'
+ repositories {
+ gradlePluginPortal()
+ google()
+ }
+}
+
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+rootProject.name = "Godot Android Plugins"
+include ':hello_world', ':hello_signals'