From 2ce30cf68b6eca4ee6d48b163c8d9d931058d4c3 Mon Sep 17 00:00:00 2001 From: michael-bc Date: Mon, 20 Jul 2026 16:59:26 +0200 Subject: [PATCH] fix(android): replace removed jcenter() with mavenCentral() Gradle 9 removed the jcenter() repository shorthand (it was only deprecated through Gradle 8.x). Building this plugin on Gradle 9 now fails at project evaluation with "Could not find method jcenter()". Swap both repository blocks (buildscript + allprojects) to mavenCentral(), which serves the same artifacts (JCenter is sunset/read-only). --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 2199420..d5e2a05 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,7 +4,7 @@ version '1.0' buildscript { repositories { google() - jcenter() + mavenCentral() } dependencies { @@ -15,7 +15,7 @@ buildscript { rootProject.allprojects { repositories { google() - jcenter() + mavenCentral() } }