Minor doc improvements in Debugging.md

Summary:
As per: https://github.com/facebook/react-native/pull/9276#issuecomment-238153756

Minor clarity and styling improvements for Debugging.md for the "Stetho" section

No test changes required.
Closes https://github.com/facebook/react-native/pull/9303

Differential Revision: D3690557

Pulled By: hramos

fbshipit-source-id: f5ce13d96884f1c11836b278697d2815f40c5216
This commit is contained in:
Evgueni Naverniouk 2016-08-09 11:12:49 -07:00 committed by Facebook Github Bot
parent a5678983bb
commit e2aa237cfe
1 changed files with 2 additions and 2 deletions

View File

@ -94,14 +94,14 @@ The debugger will receive a list of all project roots, separated by a space. For
### Debugging with [Stetho](http://facebook.github.io/stetho/) on Android
1. In ```android/app/build.gradle``` , add
1. In ```android/app/build.gradle```, add these lines in the `dependencies` section:
```gradle
compile 'com.facebook.stetho:stetho:1.3.1'
compile 'com.facebook.stetho:stetho-okhttp3:1.3.1'
```
2. In ```android/app/src/main/java/com/{yourAppName}/MainApplication.java```, add the following imports :
2. In ```android/app/src/main/java/com/{yourAppName}/MainApplication.java```, add the following imports:
```java
import com.facebook.react.modules.network.ReactCookieJarContainer;