hello guys, i am unable to get `1.5.0-rc0x` howev...
# compose-ios
b
hello guys, i am unable to get
1.5.0-rc0x
however i can get
1.5.0-betax
what am i missing ? i am getting the error
Could not find org.jetbrains.compose.runtime:runtime:1.5.0-rc01
i
You should add this maven repo to be able to use prerelease versions:
Copy code
repositories {
        ...
        maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
    }
1.5.0 beta's were an exception and published to maven central
2
b
@Igor Demin thanks for your support
@Igor Demin here is the error i am getting when using
1.5.0-rc06
Copy code
Cannot cast androidx.compose.compiler.plugins.kotlin.ComposePluginRegistrar to org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar
i
b
@Igor Demin thanks worked after upgrade
👍 1