use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class ViewSavedDNA 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 ViewAlbumFragment 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 ViewArtistFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project Shuttle by timusus.
the class BaseFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = ShuttleApplication.getInstance().getRefWatcher();
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project qksms by moezbhatti.
the class QKFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = QKSMSApp.getRefWatcher(getActivity());
refWatcher.watch(this);
}
Aggregations