diff --git a/android/build.gradle b/android/build.gradle index 3a4a32a..e0ad133 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -43,7 +43,14 @@ def supportsNamespace() { apply plugin: 'org.jlleitschuh.gradle.ktlint' 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' +} + if (isNewArchitectureEnabled()) { apply plugin: 'com.facebook.react' }