Add required permissions to android setup guide

Reviewed By: danielbuechele

Differential Revision: D8821115

fbshipit-source-id: 36949fc9ba5bdbd79d4e3e8349ef7daeebdaa074
This commit is contained in:
John Knox
2018-07-12 09:50:53 -07:00
committed by Facebook Github Bot
parent 1c5ecce667
commit 9a7017298c

View File

@@ -23,6 +23,13 @@ Once you start Sonar and launch an emulator/simulator or connect a device, you w
### Setup your Android app
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.
```
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
```
Sonar is distributed via JCenter. Add dependencies to your `build.gradle` file.
```