Hello fellas, I am stuck at ```An exception occurr...
# compose-desktop
a
Hello fellas, I am stuck at
Copy code
An 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
Copy code
plugins {
    id("org.jetbrains.compose") version "1.2.0-alpha01-dev755" apply false
    // other plugins here
}
and, I have a sub project gradle plugin
Copy code
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?
1
Never mind. I had a version catalog namespaced with a name called "Compose"