From 86f00692ce07cd7164c2a4829809a0ab639c6cff Mon Sep 17 00:00:00 2001 From: Gabriel Donadel Dall'Agnol Date: Sat, 5 Sep 2026 02:38:50 -0700 Subject: [PATCH] fix(android): skip explicit Kotlin plugin when AGP registers the kotlin extension --- android/build.gradle | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index ce0970f9..7b9d7296 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,7 +16,14 @@ buildscript { } apply plugin: "com.android.library" -apply plugin: "kotlin-android" +// AGP 9 ships built-in Kotlin support and registers the `kotlin` extension +// itself. Applying the Kotlin plugin on top of it fails configuration with +// "Cannot add extension with name 'kotlin'". Only apply it when nothing has +// registered that extension yet. +if (project.extensions.findByName('kotlin') == null) { + apply plugin: "kotlin-android" +} + apply plugin: "com.facebook.react" def getExtOrDefault(name) {