Hey! I don’t know if it is “normal” but when I’m u...
# compose
g
Hey! I don’t know if it is “normal” but when I’m using Compose Multiplatform artifacts in an Android Gradle module (so not KMP), I can run my Compose Preview on an Android device but I can’t see my Compose previews anymore in my Android Studio. Can anyone tell me if there is any workaround to keep Compose previews?
For information, Compose Preview dependencies in my
build.gradle.kts
file is declared like this:
Copy code
dependencies {
    implementation(compose.preview)
    debugImplementation(compose.uiTooling)
}