Browse Source

Update README.md

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

+ 4
- 2
README.md View File

4
 
4
 
5
 A project committed to make file acess and data transfer easier, efficient for React Native developers.
5
 A project committed to make file acess and data transfer easier, efficient for React Native developers.
6
 
6
 
7
-> The npm package is inside `src` folder, if you're going to install using github repository do not point to here directly
7
+> If you're going to use github repo as npm dependency please use the [archive repository](https://github.com/wkh237/react-native-fetch-blob-package/releases/tag/v0.9.6) this repository is for development.
8
+
9
+> If you're using this library as Firebase Storage solution, please upgrade to 0.9.6 since XMLHttpRequest polyfill has way better compatibility than previous versions.
8
 
10
 
9
 ## Features
11
 ## Features
10
 - Transfer data directly from/to storage without BASE64 bridging
12
 - Transfer data directly from/to storage without BASE64 bridging
403
     })
405
     })
404
 ```
406
 ```
405
 
407
 
406
-In `0.9.6`, you can specify an optional first argument which contains `count` and `interval` to limit progress event frequency (this will be done in native context in order to reduce RCT bridge overhead). Notice that `count` argument will not work if the server does not provide response content length.
408
+In `0.9.6`, you can specify an object as first argument which contains `count` and `interval`, to the frequency of progress event (this will be done in native context in order to reduce RCT bridge overhead). Notice that `count` argument will not work if the server does not provide response content length.
407
 
409
 
408
 
410
 
409
 ```js
411
 ```js