瀏覽代碼

Merge branch '0.9.0' of github.com:wkh237/react-native-fetch-blob into 0.9.0

Ben Hsieh 8 年之前
父節點
當前提交
586cdbffa3
共有 1 個檔案被更改,包括 3 行新增2 行删除
  1. 3
    2
      README.md

+ 3
- 2
README.md 查看文件

@@ -13,7 +13,6 @@ A project committed to make file acess and data transfer easier, effiecient for
13 13
 ## TOC
14 14
 * [About](#user-content-about)
15 15
 * [Installation](#user-content-installation)
16
-* [Recipes](#user-content-recipes)
17 16
 * [HTTP Data Transfer](#user-content-http-data-transfer)
18 17
  * [Regular Request](#user-content-regular-request)
19 18
  * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
@@ -119,7 +118,7 @@ Also, if you're going to use `Android Download Manager` you have to add this to
119 118
 
120 119
 Beginning in Android 6.0 (API level 23), users grant permissions to apps while the app is running, not when they install the app. So adding permissions in `AndroidManifest.xml` won't work in Android 6.0 devices. To grant permissions in runtime, you might use modules like [react-native-android-permissions](https://github.com/lucasferreira/react-native-android-permissions).
121 120
 
122
-## Recipes
121
+## Usage
123 122
 
124 123
 ES6
125 124
 
@@ -693,6 +692,8 @@ After `0.8.0` we've made some [Web API polyfills](https://github.com/wkh237/reac
693 692
 - Blob
694 693
 - XMLHttpRequest (Use our implementation if you're going to use it with Blob)
695 694
 
695
+Here's a [sample app](https://github.com/wkh237/rn-firebase-storage-upload-sample) that uses polyfills to upload files to FireBase.
696
+
696 697
 ### Performance Tips
697 698
 
698 699
 ---