InstallableWatcher.kt
TLDR
This file defines an interface called InstallableWatcher
in the leakcanary
package. This interface has two methods install()
and uninstall()
.
Methods
install
This method is responsible for installing the watcher.
uninstall
This method is responsible for uninstalling the watcher.
package leakcanary
interface InstallableWatcher {
fun install()
fun uninstall()
}