Browse Source

Fix manual link instruction #101

wkh237 8 years ago
parent
commit
b70b1719c2
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      README.md

+ 9
- 0
README.md View File

61
 
61
 
62
 If rnpm link command failed to link the package automatically, you might try manually link the package.
62
 If rnpm link command failed to link the package automatically, you might try manually link the package.
63
 
63
 
64
+Open `android/build.gradle`, add this line 
65
+
66
+```diff
67
+dependencies {
68
+    ...
69
++    compile project(':react-native-fetch-blob')                                                                      
70
+}
71
+```
72
+
64
 Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
73
 Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
65
 
74
 
66
 ```diff
75
 ```diff