Hi, I know that `lib.x.x` is in the libs.versions...
# multiplatform
b
Hi, I know that
lib.x.x
is in the libs.versions.toml but what about
compose.x
?
Copy code
implementation(compose.components.uiToolingPreview)
 implementation(libs.androidx.lifecycle.viewmodel)
d
compose
object is provided by the Compose plugin; it's unrelated to Version Catalogs.
b
Can I remove it and put my dependency like material3 of jetpack compose?
d
Yes. The plugin provides references to expected, matched version artifacts, but it's doing nothing more magic than that - you can remove that and specify the artifact versions yourself. BOM (Bill of Materials) is another, intermediate, supported approach.
b
Thanks a lot
👍 1