From ea1b14ca8ce7cc57823659d1c1f12192195d8e41 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Mon, 31 Oct 2022 09:15:59 -0700 Subject: [PATCH] fix: remove jcenter --- android/build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 2617bd7..caa9a7f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,7 +16,6 @@ def _minSdkVersion = safeExtGet('minSdkVersion', 16) buildscript { repositories { google() - jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.4.1' @@ -43,7 +42,6 @@ android { repositories { mavenLocal() google() - jcenter() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url "$rootDir/../node_modules/react-native/android" @@ -51,7 +49,7 @@ repositories { } dependencies { - compileOnly 'com.facebook.react:react-native:+' + implementation 'com.facebook.react:react-native:+' } task customClean(type: Delete) {