Xamarin.Android applications can leak memory when framework objects like Activities are not properly cleaned up. StrictMode and the Android Debug Bridge (ADB) are useful tools for detecting memory leaks caused by lingering Activity references. Demonstrations showed an obvious leak from a static Activity reference and a less obvious leak from an anonymous delegate closure. Proper cleanup involves disposing of framework peers when no longer needed to allow garbage collection.