diff --git a/packages/document-picker/android/build.gradle b/packages/document-picker/android/build.gradle index afa4f7a8..dc5f5c45 100644 --- a/packages/document-picker/android/build.gradle +++ b/packages/document-picker/android/build.gradle @@ -26,7 +26,13 @@ def isNewArchitectureEnabled() { } 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" diff --git a/packages/document-viewer/android/build.gradle b/packages/document-viewer/android/build.gradle index 1d041c89..7ac6148b 100644 --- a/packages/document-viewer/android/build.gradle +++ b/packages/document-viewer/android/build.gradle @@ -26,7 +26,13 @@ def isNewArchitectureEnabled() { } 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"