Status Update
Comments
ca...@google.com <ca...@google.com> #2
Thank you for posting.
We have logged this issue internally. Please note that we cannot give you any timelines, but you can star the issue to get notifications.
as...@google.com <as...@google.com> #3
#1: do you use plain Navigation SDK, or with Jetpack Compose, or with Flutter/ReactNative?
be...@goflink.com <be...@goflink.com> #4
what do you mean by plain Navigation SDK?
yes the app is built with Jetback compose we are integrating the nav SDK fragment using AndroidViewBinding
here is how the factory method looks like
factory = { inflater, parent, attachToParent ->
NavigationFragmentBinding.inflate(inflater, parent, attachToParent).also {
// AndroidViewBinding handles restoration if frag already in the stack
val fragment = it.navigationFragmentContainerView.getFragment<SupportNavigationFragment>()
onMapReady(fragment)
}
}
as...@google.com <as...@google.com> #5
By "plain Navigation SDK" I wanted to say "just Navigation SDK, nothing else". Thanks for confirming that you use Compose. We are still gathering information on what could cause the crash.
jo...@meterapp.co <jo...@meterapp.co> #6
I'm also getting this crash on 6.0.0+ and using jetpack compose to inflate the fragment like this:
AndroidFragment<SupportNavigationFragment> { supportNavigationFragment -> }
jo...@meterapp.co <jo...@meterapp.co> #7
For people running into this: The most stable release I've used is com.google.android.libraries.navigation:navigation:5.4.1
, I will try 6.0.2 to see if the issue is fixed and if not revert back to the 5.4.1 until this is fixed. Let me know if there is anything I can do to help
Description
Hey guys after updating the
com.google.android.libraries.navigation:navigation
library to version6.0.0
, we started getting an increase in the crash rate of the app caused byI have attached the full stack trace