From 688d157a59692b718e281969828ada7a2dc9b131 Mon Sep 17 00:00:00 2001 From: Mrinal Maheshwari Date: Tue, 7 Jun 2022 12:14:37 +0530 Subject: [PATCH] removed jCenter() it has been closed --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 8fce879d..4144c6ca 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' repositories { mavenLocal() - jcenter() + mavenCentral() maven { // For developing the library outside the context of the example app, expect `react-native` // to be installed at `./node_modules`. @@ -40,7 +40,7 @@ android { buildscript { if (project == rootProject) { repositories { - jcenter() + mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.3.2' @@ -53,7 +53,7 @@ buildscript { allprojects { repositories { - jcenter() + mavenCentral() } }