Can I use the <compose bom dependency> in desktop/...
# multiplatform
k
Can I use the compose bom dependency in desktop/shared? or is it limited to the android implementation of compose?
z
That only will assign versions for androidx artifacts. I don't believe there's a BOM for compose multiplatform, but the gradle plugin has included versions which is essentially the same ex:
Copy code
implementation(compose.runtime)
k
ahh thank you!