Browse Source

Fix typo in README.md

wkh237 8 years ago
parent
commit
cd6eb3ccf7
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      README.md

+ 2
- 2
README.md View File

51
 
51
 
52
 If rnpm link command failed to link the package automatically, you might try manually link the package.
52
 If rnpm link command failed to link the package automatically, you might try manually link the package.
53
 
53
 
54
-Edit add package to`android/settings.gradle`
54
+Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
55
 
55
 
56
 ```diff
56
 ```diff
57
 include ':app'      
57
 include ':app'      
59
 + project(':react-native-fetch-blob').projectDir = new File(rootProject.projectDir,' ../node_modules/react-native-fetch-blob/android')                        
59
 + project(':react-native-fetch-blob').projectDir = new File(rootProject.projectDir,' ../node_modules/react-native-fetch-blob/android')                        
60
 ```
60
 ```
61
 
61
 
62
-Add this code to `MainApplication.java`
62
+Add this line to `MainApplication.java`, so that RNFetchBlob package becomes part of react native package.
63
 
63
 
64
 ```diff
64
 ```diff
65
 ...
65
 ...