读书笔记-2019年05月31日

Android内存泄漏

// debugImplementation because LeakCanary should only run in debug builds.

Android 如何有效的解决内存泄漏的问题 - 赵彦军 - 博客园

square/leakcanary: A memory leak detection library for Android

Getting started
Add LeakCanary to build.gradle:

dependencies {
  // debugImplementation because LeakCanary should only run in debug builds.
  debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.0-alpha-2'
}

That’s it, there is no code change needed! LeakCanary will automatically show a notification when a memory leak is detected in debug builds.

GT Home

在这里插入图片描述

flutter

深圳GDG【Flutter沙龙】Flutter 的移动端跨平台实践
在这里插入图片描述

发布了100 篇原创文章 · 获赞 2 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/panda_8/article/details/90711727