Summary: Translated all cases where we had a parent-relative link to use the base URL instead. Reviewed By: jknoxville Differential Revision: D22256229 fbshipit-source-id: 81ee6fecb77dbaa19d112cb319771c22ff66d02a
16 lines
738 B
Plaintext
16 lines
738 B
Plaintext
---
|
|
id: leak-canary-plugin
|
|
title: LeakCanary
|
|
---
|
|
import useBaseUrl from '@docusaurus/useBaseUrl';
|
|
import Link from '@docusaurus/Link';
|
|
|
|
→ <Link to={useBaseUrl("/docs/setup/leak-canary-plugin")}>See setup instructions for the LeakCanary</Link>
|
|
|
|
The LeakCanary plugin provides developers with Flipper support for [LeakCanary](https://github.com/square/leakcanary), an open source memory leak detection library.
|
|
|
|
Leaks detected by LeakCanary will appear automatically in Flipper. Each leak will display a hierarchy of objects, beginning from the garbage collector root and ending at the leaked class.
|
|
Selecting any object in this list will display contents of the object's various fields.
|
|
|
|
Note: this plugin is only available for Android.
|