From 6cf1c0d173468295ff5ce2dfc13f365e06b57484 Mon Sep 17 00:00:00 2001 From: Yossi Elkrief Date: Sat, 16 Jun 2018 08:03:56 -0700 Subject: [PATCH] Update getting-started.md (#61) Summary: Using debugImplementation instead of deprecated debugCompile Closes https://github.com/facebook/Sonar/pull/61 Differential Revision: D8466425 Pulled By: passy fbshipit-source-id: b3dd4185b307933c0781a798385a66ab128b43f2 --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 0cf2611e7..b5eca1a9f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -31,7 +31,7 @@ repositories { } dependencies { - debugCompile 'com.facebook.sonar:sonar:0.0.1' + debugImplementation 'com.facebook.sonar:sonar:0.0.1' } ```