You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! I'm getting crashes, apparently after initializing and de-initializing multiple times a fragment in the app that contains a map. I'm not getting very useful information from Android Studio, only the following logs before the app crashes:
libc FORTIFY: pthread_mutex_lock called on a destroyed mutex (0xb400d26bd84434c8)
libc Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 23219 (External Maply ), pid 22965 (rmap.****)
...
DEBUG Cmdline: com.****.****
DEBUG pid: 22965, tid: 23219, name: External Maply >>> com.****.**** <<<
I tried to make sure I was de-initializing the map correctly, and I wasn't, so I added this:
override fun onDestroyView() {
super.onDestroyView()
loader?.shutdown()
loader = null
}
But no luck. Still getting random crashes. How do I get more debug information?
The text was updated successfully, but these errors were encountered:
That's the kind of error you get without a proper shutdown. There should be a teardown or shutdown on the map controller. Make sure that's getting called in the course of tearing down the fragment.
That's the kind of error you get without a proper shutdown. There should be a teardown or shutdown on the map controller. Make sure that's getting called in the course of tearing down the fragment.
Hey! I'm getting crashes, apparently after initializing and de-initializing multiple times a fragment in the app that contains a map. I'm not getting very useful information from Android Studio, only the following logs before the app crashes:
I tried to make sure I was de-initializing the map correctly, and I wasn't, so I added this:
But no luck. Still getting random crashes. How do I get more debug information?
The text was updated successfully, but these errors were encountered: