Search code examples
androidandroid-jetpack-composeandroid-jetpack

Missing material icons in Android Jetpack Compose


implementation "androidx.compose.material:material-icons-extended:$compose_version" is included on my build.graddle file with the latest stable realease of Compose (1.1.1).

However, I am unable to reference any of the NetworkWifiXBar icons (e.g. NetworkWifi1Bar ) as seen here.

I had the understanding that all icons were included with material-icons-extended.

Is this an issue on my end or are these not included?


Solution

  • You can use the below Compose Material dependencies updated on July-24, 2024:

    Stable Release:

    implementation "androidx.compose.material:material-icons-extended:1.6.8"

    Alpha Release:

    implementation "androidx.compose.material:material-icons-extended:1.7.0-beta06"