andylamax
08/21/2022, 5:59 AMAn exception occurred applying plugin request [id: 'org.jetbrains.compose']
> Failed to apply plugin 'org.jetbrains.compose'.
> Cannot add extension with name 'compose', as there is an extension already registered with that name.
I have a project level build.gradle.kts file with just
plugins {
id("org.jetbrains.compose") version "1.2.0-alpha01-dev755" apply false
// other plugins here
}
and, I have a sub project gradle plugin
plugins {
id("org.jetbrains.compose")
// other plugins here
}
I can't seem to find any other plugin that defines the "compose" extension. What am I doing wrong?andylamax
08/21/2022, 6:08 AM