From 12f766a0804f8760c2ade85eb60897a9b18d440d Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 26 Sep 2019 06:42:01 -0700 Subject: [PATCH] Mention leakcanary plugin artifact in docs Summary: Per title. Reviewed By: danielbuechele Differential Revision: D17571218 fbshipit-source-id: 35f0f2d90cd8582200d6a50127c43a38f823aba2 --- docs/setup/leak-canary-plugin.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/setup/leak-canary-plugin.md b/docs/setup/leak-canary-plugin.md index 7005e4bf0..805ade5dd 100644 --- a/docs/setup/leak-canary-plugin.md +++ b/docs/setup/leak-canary-plugin.md @@ -5,10 +5,11 @@ sidebar_label: LeakCanary --- Ensure that you already have an explicit dependency in your application's -`build.gradle`, e.g. +`build.gradle` including the plugin dependency, e.g. ```groovy dependencies { + debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.25.0' debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1' releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1' }