Is there any major difference between `org.jetbrai...
# compose
s
Is there any major difference between
org.jetbrains.compose.material3:material3
and
androidx.compose.material3:material3:1.1.2
?
z
I’m guessing the jetbrains one is the material library you’re gonna want to use for desktop and other multiplatform targets. The androidx one is for android.
s
i see many
androidx...material3
are not accessible in compose multiplatform because it uses
org.jetbrains...material3
. it's weird.
z
Yes the androidx artifacts are only for android. Compose Multiplatform is a jetbrains initiative and all those artifacts are released by them, with a different group id
👍 1