Browse Source

Update README.md

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

+ 2
- 2
README.md View File

2
 
2
 
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
4
 
4
 
5
-**Why do we need this**
5
+**Rationale**
6
 
6
 
7
 React Native does not support `Blob` object at this moment, which means if you're going to send/receive binary data via `fetch` API, that might not work as you expect. See [facebook/react-native#854](https://github.com/facebook/react-native/issues/854).
7
 React Native does not support `Blob` object at this moment, which means if you're going to send/receive binary data via `fetch` API, that might not work as you expect. See [facebook/react-native#854](https://github.com/facebook/react-native/issues/854).
8
 
8
 
46
 
46
 
47
 ### For React Native 0.29.0
47
 ### For React Native 0.29.0
48
 
48
 
49
-If you're using react-native `0.29.0`, the package won't be able to link through `rnpm link`, and you might see the error screen similar to [#51](https://github.com/wkh237/react-native-fetch-blob/issues/51), this is because a [a bug in 0.29.0](https://github.com/facebook/react-native/commit/4dabb575b1b311ba541fae7eabbd49f08b5391b3), someone has already fixed  it, so you can upgrade to `0.29.1` to fix it, or just manually add the package yourself.
49
+> If you're using react-native `0.29.0`, the package won't be able to link through `rnpm link`, and you might see the error screen similar to [#51](https://github.com/wkh237/react-native-fetch-blob/issues/51), this is because a [a bug in 0.29.0](https://github.com/facebook/react-native/commit/4dabb575b1b311ba541fae7eabbd49f08b5391b3), someone has already fixed  it, we recommended to upgrade to `0.29.1`, or you can just manually add the package yourself.
50
 
50
 
51
 Add this code to `MainApplication.java`
51
 Add this code to `MainApplication.java`
52
 
52