chachako/sweekt

sweekt-compiler cannot be used with compose-compiler

Closed this issue · 0 comments

When these two compiler plugins are applied at the same time and the priority of sweekt is lower than compose, an error will occur. The simplest solution is that sweekt is applied earlier than compose

plugins {
    id("com.meowool.sweekt") // must be before the compose or android app
 // id("com.android.application")
    id("org.jetbrains.compose")
}