|
@@ -2,6 +2,8 @@
|
2
|
2
|
|
3
|
3
|
A project committed to make file acess and transfer easier and effiecient for React Native developers.
|
4
|
4
|
|
|
5
|
+# [Please visit out Github page for latest document](https://github.com/wkh237/react-native-fetch-blob)
|
|
6
|
+
|
5
|
7
|
## TOC
|
6
|
8
|
* [About](#user-content-about)
|
7
|
9
|
* [Installation](#user-content-installation)
|
|
@@ -40,6 +42,17 @@ Link package using [rnpm](https://github.com/rnpm/rnpm)
|
40
|
42
|
rnpm link
|
41
|
43
|
```
|
42
|
44
|
|
|
45
|
+### version 0.7.0+ does not work with react-native 0.27 (Android)
|
|
46
|
+
|
|
47
|
+On 0.7.5, we have fixed Android OkHttp dependency issue on pre 0.28 projects excepted 0.27, 0.29.0, and 0.29.1. For 0.29.0 and 0.29.1 it's because `rnpm link` is broken in these versions, you may need to manually link Android package. It is recommended to upgrade you project if possible
|
|
48
|
+
|
|
49
|
+```
|
|
50
|
+$ react-native upgrade
|
|
51
|
+```
|
|
52
|
+
|
|
53
|
+After the project upgraded, run `rnpm link` again.
|
|
54
|
+
|
|
55
|
+
|
43
|
56
|
### Manually link the package (Android)
|
44
|
57
|
|
45
|
58
|
If rnpm link command failed to link the package automatically, you might try manually link the package.
|