工作生活

三步防漏——检测内存泄露神器LeakCanary(一)

2019-07-01  本文已影响0人  AlphaGuo

参考
LeakCanary性能优化

1.加依赖

dependencies {
 debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
    releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'

    //可选项,如果使用了support包中的fragments
    debugImplementation 'com.squareup.leakcanary:leakcanary-support-fragment:1.6.1'
}

2.在继承Application里面初始化

public class Global extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        if (LeakCanary.isInAnalyzerProcess(this)) {
            return;
        }
        LeakCanary.install(this);
}
}

3.运行然后会在桌面通知和应用Leaks查看


Leaks
上一篇下一篇

猜你喜欢

热点阅读