ch4rl3x / HtmlText

Jetpack Compose HtmlText
Apache License 2.0
128 stars 18 forks source link

Material dependency version #5

Closed kaychyka17 closed 1 year ago

kaychyka17 commented 1 year ago

Currently you have material dependency in buildCompose.gradle like this: implementation "androidx.compose.material:material:$compose_version"

which is wrong because compose version and material version is not the same. Currently compose version is 1.2.0 and materil is 1.6.1

ch4rl3x commented 1 year ago

It is not material. It is compose material.

https://developer.android.com/jetpack/androidx/releases/compose-material

kaychyka17 commented 1 year ago

Oh, my mistake. For some reason when I updated this project from 1.2.0 to 1.3.0 nothing from Compose Material wasn't found in my project and I thought that would be the reason.

Now I see I need to add compose material dependency also in my project to work properly.

I apologise for the misunderstanding.