diff options
Diffstat (limited to 'settings.gradle')
-rw-r--r-- | settings.gradle | 20 |
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' |