From b65ffb049c9f1e2704adbeb1aa19c61693c946a5 Mon Sep 17 00:00:00 2001 From: Abel Mengistu Date: Wed, 12 Jan 2022 19:36:33 -0800 Subject: [PATCH] Prefer mavenCentral for Android builds. https://blog.gradle.org/jcenter-shutdown jcenter is shutting down and this can cause Android build failures in some regions atm, and globally in the future. --- facebook_auth/android/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/facebook_auth/android/build.gradle b/facebook_auth/android/build.gradle index 9a0f80cd..54fa62ce 100644 --- a/facebook_auth/android/build.gradle +++ b/facebook_auth/android/build.gradle @@ -4,6 +4,7 @@ version '1.0' buildscript { repositories { google() + mavenCentral() jcenter() } @@ -34,4 +35,4 @@ android { dependencies { implementation 'com.facebook.android:facebook-login:12.2.0' -} \ No newline at end of file +}