From 32d3da15d574fdca23b34e70551c24e03f084072 Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 17 Sep 2024 08:56:50 +0200 Subject: [PATCH] build: migrate from jcenter to mavenCentral Switched the build script repository from JCenter to Maven Central as JCenter is being deprecated. This ensures continued access to dependencies and improves future compatibility and support. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0579d434..3e8ae65b 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { repositories { google() - jcenter() + mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:8.1.0'