Search in sources :

Example 56 with RefWatcher

use of com.squareup.leakcanary.RefWatcher in project scissors by lyft.

the class MainActivity method onDestroy.

@Override
protected void onDestroy() {
    super.onDestroy();
    subscriptions.unsubscribe();
    RefWatcher refWatcher = App.getRefWatcher(this);
    refWatcher.watch(this, "MainActivity");
    refWatcher.watch(cropView, "cropView");
}
Also used : RefWatcher(com.squareup.leakcanary.RefWatcher)

Example 57 with RefWatcher

use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.

the class ReportViewFragment method onDestroy.

@Override
public void onDestroy() {
    super.onDestroy();
    RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
    refWatcher.watch(this);
}
Also used : RefWatcher(com.squareup.leakcanary.RefWatcher)

Example 58 with RefWatcher

use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.

the class TagViewFragment method onDestroy.

@Override
public void onDestroy() {
    super.onDestroy();
    RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
    refWatcher.watch(this);
}
Also used : RefWatcher(com.squareup.leakcanary.RefWatcher)

Example 59 with RefWatcher

use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.

the class TodayViewFragment method onDestroy.

@Override
public void onDestroy() {
    super.onDestroy();
    RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
    refWatcher.watch(this);
}
Also used : RefWatcher(com.squareup.leakcanary.RefWatcher)

Example 60 with RefWatcher

use of com.squareup.leakcanary.RefWatcher in project CorePage by lizhangqu.

the class MainFragment method onDestroy.

@Override
public void onDestroy() {
    super.onDestroy();
    RefWatcher refWatcher = BaseApplication.getRefWatcher(getActivity());
    refWatcher.watch(this);
}
Also used : RefWatcher(com.squareup.leakcanary.RefWatcher)

Aggregations

RefWatcher (com.squareup.leakcanary.RefWatcher)62 SharedPreferences (android.content.SharedPreferences)2 IOException (java.io.IOException)2 Manifest (android.Manifest)1 Application (android.app.Application)1 ContentProviderOperation (android.content.ContentProviderOperation)1 ContentUris (android.content.ContentUris)1 ContentValues (android.content.ContentValues)1 PackageManager (android.content.pm.PackageManager)1 Environment (android.os.Environment)1 StrictMode (android.os.StrictMode)1 MediaStore (android.provider.MediaStore)1 NonNull (android.support.annotation.NonNull)1 ContextCompat (android.support.v4.content.ContextCompat)1 PreferenceManager (android.support.v7.preference.PreferenceManager)1 TelephonyManager (android.telephony.TelephonyManager)1 TextUtils (android.text.TextUtils)1 Log (android.util.Log)1 Collectors (com.annimon.stream.Collectors)1 Stream (com.annimon.stream.Stream)1