use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class AlbumFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class ArtistFragment method onDestroyView.
@Override
public void onDestroyView() {
super.onDestroyView();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class ArtistFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project TourGuide by worker8.
the class MemoryLeakTestActivity method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MyApplication.getRefWatcher(this);
Log.d("ddw", "refWatcher: " + refWatcher);
refWatcher.watch(this);
refWatcher.watch(mTutorialHandler);
}
use of com.squareup.leakcanary.RefWatcher in project RxJava-Android-Samples by kaushikgopal.
the class BaseFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MyApp.getRefWatcher();
refWatcher.watch(this);
}
Aggregations