Open ivan-avalos opened 1 year ago
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.
override fun onDestroyView() {
super.onDestroyView()
loader?.shutdown()
loader = null
}
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?