From 9bb898c8461fdeb36fc084319506abe7af322aee Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 5 Sep 2018 07:57:47 -0700 Subject: [PATCH] Add language indicator to code guards Summary: Just to help out the markdown renderer. Reviewed By: jknoxville Differential Revision: D9654370 fbshipit-source-id: bde7afa290a735b77a093221b33a6ca8e12599fc --- docs/getting-started.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index a453ed682..52f12eea3 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,20 +25,21 @@ Once you start Flipper and launch an emulator/simulator or connect a device, you Add the following permissions to your AndroidManifest.xml. The SDK needs these to communicate with the desktop app on localhost via adb. It won't make any external internet requests. -``` +```xml ``` It's recommended that you add the following activity to the manifest too, which can help diagnose integration issues and other problems: -``` + +```xml ``` Flipper is distributed via JCenter. Add dependencies to your `build.gradle` file. -``` +```groovy repositories { jcenter() }