1 package com.example.leakcanary
2 
3 import android.view.View
4 
5 object LeakingSingleton {
6   val leakedViews = mutableListOf<View>()
7 }