浏览代码

Fix typo in README.md

wkh237 8 年前
父节点
当前提交
cd6eb3ccf7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      README.md

+ 2
- 2
README.md 查看文件

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
 ...