When using compose bom `2023.03.00` with compiler ...
# compose-android
m
When using compose bom
2023.03.00
with compiler version
1.4.4
text fields are not opening the keyboard. If I downgrade the compiler to
1.4.3
then it starts working again. I'm showing a ComposeView inside a BottomSheetFragmentDialog (still have a mix of UI tools). It doesn't seem like the compiler version is include in the BOM. I can go with the downgraded compiler version for now, but I'm worried about needing to upgrade in the future to support newer versions of Kotlin. I'm also not sure if a future version of compose itself will work with the newer compiler version. Downgrading the BOM to
2023.01.00
also fixes the problem, so I don't know where the bug is or which dependency I should downgrade.
a
Speaking to the issue of the keyboard opening in a non-Compose dialog, that looks like https://issuetracker.google.com/issues/262140644. There’s a workaround you can try in the comments there.
m
Thanks