Hi guys, is the Navigation compose library not a p...
# compose
k
Hi guys, is the Navigation compose library not a part of BOM ?
s
Which BOM would you expect it to be part of?
k
Android compose😅
s
The compose bom 2023.01.00 contains the following artifacts:
Copy code
androidx.compose.animation:animation:1.3.3
androidx.compose.animation:animation-core:1.3.3
androidx.compose.animation:animation-graphics:1.3.3
androidx.compose.foundation:foundation:1.3.1
androidx.compose.foundation:foundation-layout:1.3.1
androidx.compose.material:material:1.3.1
androidx.compose.material:material-icons-core:1.3.1
androidx.compose.material:material-icons-extended:1.3.1
androidx.compose.material:material-ripple:1.3.1
androidx.compose.material3:material3:1.0.1
androidx.compose.material3:material3-window-size-class:1.0.1
androidx.compose.runtime:runtime:1.3.3
androidx.compose.runtime:runtime-livedata:1.3.3
androidx.compose.runtime:runtime-rxjava2:1.3.3
androidx.compose.runtime:runtime-rxjava3:1.3.3
androidx.compose.runtime:runtime-saveable:1.3.3
androidx.compose.ui:ui:1.3.3
androidx.compose.ui:ui-geometry:1.3.3
androidx.compose.ui:ui-graphics:1.3.3
androidx.compose.ui:ui-test:1.3.3
androidx.compose.ui:ui-test-junit4:1.3.3
androidx.compose.ui:ui-test-manifest:1.3.3
androidx.compose.ui:ui-text:1.3.3
androidx.compose.ui:ui-text-google-fonts:1.3.3
androidx.compose.ui:ui-tooling:1.3.3
androidx.compose.ui:ui-tooling-data:1.3.3
androidx.compose.ui:ui-tooling-preview:1.3.3
androidx.compose.ui:ui-unit:1.3.3
androidx.compose.ui:ui-util:1.3.3
androidx.compose.ui:ui-viewbinding:1.3.3
As you can tell, this BOM is for
androidx.compose
artifacts, and the navigation one is
androidx.navigation.navigation-compose
. So it doesn’t fit in that BOM.
k
Ok perfect thanks