Skip to content
Advertisement

LeakCanary detecting a leak in my Java Android app – Google Maps

I am relatively new to the scene with little programming background, therefore I apologise in advance if I ask something silly. I am show a google map using SupportMapFragment. I am doing this to prevent a leak in onDestroyView(), however no clue whether this is right or wrong?

JavaScript

Full code is here:

https://github.com/warfo09/warforepo/blob/main/MainActivity.java

This is what I get when I exit my application:

JavaScript

Advertisement

Answer

The leaktrace indicates that MainActivity was destroyed but is held in memory by MapView which has the activity as its context.

Now, what’s really weird here is that the MapView is the parent of a FrameLayout that has the Application as its context, which itself is the parent of a view called ‘ac’ (obfuscated name) which is held by a field of the “RenderDrive” thread instance.

This definitely is a bug in the Google Maps library. You should report the issue on their bug tracker, feel free to also use this answer that I just posted.

I don’t know what bug exactly is causing this leak, but you could fix it by removing all children of MapView when the activity is destroyed.

JavaScript
Advertisement