gitmyhub

leakcanary

Kotlin ★ 30k updated 2mo ago

A memory leak detection library for Android.

LeakCanary is an Android development library that automatically detects memory leaks in your app while you test it, pinpointing exactly which objects are being held in memory unnecessarily so you can fix the cause before shipping.

Kotlinsetup: easycomplexity 2/5

LeakCanary is a library for Android apps that automatically detects memory leaks. A memory leak happens when an app holds onto chunks of memory it no longer needs, which over time causes the app to use more and more RAM, slow down, or crash. LeakCanary runs alongside your Android app during development, watches for these leaks, and reports exactly which objects are being held unnecessarily so developers can track down and fix the problem. Written in Kotlin, it integrates directly into Android projects.

Where it fits