From 33d2e75e22f1911cf5e8294b84379e94acdf6b61 Mon Sep 17 00:00:00 2001 From: Toby Murray Date: Wed, 23 Oct 2024 14:20:44 -0400 Subject: [PATCH] Replace jcenter with Maven Central JCenter was stopped working (as of ~2022?). As far as I can tell this project still doesn't build, but this addresses one of the reasons for that. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index cc521ef..1ceee5d 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { repositories { google() - jcenter() + mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:4.1.3' @@ -33,7 +33,7 @@ allprojects { } } google() - jcenter() + mavenCentral() } }