:wave: Howdy folks - Im creating a plugin which ta...
# jewel
w
👋 Howdy folks - Im creating a plugin which targets 2023.2.1 Intellij, which runs fine with
runIde
task and renders correctly in
IntelliJ IDEA 2023.2.1 (Community Edition)
. When installing this plugin in Android Studio (
Android Studio Iguana | 2023.2.1 Canary 17
) Im seeing the following exception:
Copy code
java.lang.NoClassDefFoundError: androidx/compose/runtime/internal/ComposableLambdaKt
Which is thrown when calling
toolwindow.addComposeTab()
. Im applying
"org.jetbrains.compose"
plugin and have the following dependencies:
Copy code
implementation("org.jetbrains.jewel:jewel-ide-laf-bridge:0.11.0-ij-232") {
    exclude(group = "org.jetbrains.kotlinx")
  }
  implementation(compose.desktop.currentOs) {
    exclude(group = "org.jetbrains.compose.material")
    exclude(group = "org.jetbrains.kotlinx")
  }
Is this a symptom of not setting
type
to
AI
in the
intellij
block? (When I do this I also get an error)