use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.
the class CustomViewFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.
the class MonthViewFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
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);
}
use of com.squareup.leakcanary.RefWatcher in project CorePage by lizhangqu.
the class TestFragment1 method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = BaseApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project CorePage by lizhangqu.
the class TestFragment3 method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = BaseApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
Aggregations