内存泄漏检测:
引入依赖:
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.3'
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.3'
debugImplementation 'com.squareup.leakcanary:leakcanary-support-fragment:1.6.3'
Application里写:
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);