Has anyone else noticed their @Preview not working...
# compose
m
Has anyone else noticed their @Preview not working in Arctic Fox Beta 5? This is all i see for any preview function i create.
c
I think there has been a few threads about it recently regarding compose rc01 breaking preview. but newest AS build was supposed to fix it?
m
apparantly not so much
m
🤦
@Adam Powell I downgraded my ui-tooling as it suggests to beta 09, still not working
Too many transitive dependencies. Had to do this:
Copy code
configurations.all {
    resolutionStrategy {
        force("androidx.compose.ui:ui-tooling:1.0.0-beta09")
        force("androidx.compose.ui:ui-tooling-data:1.0.0-beta09")
        force("androidx.compose.ui:ui-tooling-preview:1.0.0-beta09")
    }
}
👍 2