reference from:https://square.github.io/leakcanary/getting_started/
Confirm vt. 确认;确定;证实;批准;使巩固
To use LeakCanary, add the leakcanary-androID dependency to your app’s build.gradle file:
使用LeakCanary,添加 leakcanary-androID 的依赖库到你 app(Model) 的 build.gradle 文件中
dependencIEs { // deBUGImplementation because LeakCanary should only run in deBUG builds. deBUGImplementation 'com.squareup.leakcanary:leakcanary-androID:2.6'}
That’s it, there is no code change needed!
Confirm that LeakCanary is running on startup by filtering on the LeakCanary tag in Logcat:
就这样,这里不需要任何代码的改变确定LeakCanary是否运行的方式是在Logcat中使用“LeakCanary”来过滤标记
D LeakCanary: LeakCanary is running and ready to detect leaks
Info
LeakCanary automatically detects leaks of the following objects:
destroyed Activity instances
destroyed Fragment instances
destroyed fragment VIEw instances
cleared viewmodel instances
提示LeakCanary 自动检测以下对象的泄漏销毁的Activity实例销毁的Fragment实例销毁的fragment视图的实例清空的viewmodel实例
总结 以上是内存溢出为你收集整理的【LeakCanary】Getting Started全部内容,希望文章能够帮你解决【LeakCanary】Getting Started所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)