From 4e2addb8353636dbfd8e72a8217692f385c8c72a Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 6 Feb 2026 03:02:47 -0800 Subject: [PATCH] Set dependencyResolutionManagement to add repositories to all modules Summary: The recommended approach is to define repositories in the `settings.gradle.kts` rather than having to repeat a `repository{}` block in all the subprojects. Fixes #1893 Differential Revision: D92506849 --- android/settings.gradle.kts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/android/settings.gradle.kts b/android/settings.gradle.kts index e3dc1d1b771..431e102f55f 100644 --- a/android/settings.gradle.kts +++ b/android/settings.gradle.kts @@ -15,6 +15,13 @@ pluginManagement { } } +dependencyResolutionManagement { + repositories { + google() + mavenCentral() + } +} + rootProject.name = "hermes-engine" include(":ios-artifacts", ":hermes", ":cppruntime", ":intltest")