标签:create can 依赖 col time process handler square leak
添加依赖:
implementation ‘com.squareup.leakcanary:leakcanary-android:1.6.3‘
public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); if (LeakCanary.isInAnalyzerProcess(this)) {//1 // This process is dedicated to LeakCanary for heap analysis. // You should not init your app in this process. return; } LeakCanary.install(this); } }
标签:create can 依赖 col time process handler square leak
原文地址:https://www.cnblogs.com/Ocean123123/p/11025138.html