Debug why your Android app is getting slower over time by finding objects that aren't being released.
Fix crashes caused by out-of-memory errors by identifying which parts of your code are holding onto memory.
Optimize app performance during development by catching memory leaks before they reach users.
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.
Generated 2026-05-18 · Model: sonnet-4-6 · Verify against the repo before relying on details.