From 545937864fc8c4b521ce7a20688d233cd55fd941 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Tue, 14 Jan 2025 10:58:52 +0000 Subject: [PATCH] Move JSC to be consumed from Maven Central --- template/android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/android/app/build.gradle b/template/android/app/build.gradle index 4fd5d93..c6a92bd 100644 --- a/template/android/app/build.gradle +++ b/template/android/app/build.gradle @@ -63,14 +63,14 @@ def enableProguardInReleaseBuilds = false * The preferred build flavor of JavaScriptCore (JSC) * * For example, to use the international variant, you can use: - * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` + * `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+` * * The international variant includes ICU i18n library and necessary data * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that * give correct results when using with locales other than en-US. Note that * this variant is about 6MiB larger per architecture than default. */ -def jscFlavor = 'org.webkit:android-jsc:+' +def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+' android { ndkVersion rootProject.ext.ndkVersion