Sfoglia il codice sorgente

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

Ben Hsieh 8 anni fa
parent
commit
586cdbffa3
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 3
    2
      README.md

+ 3
- 2
README.md Vedi File

13
 ## TOC
13
 ## TOC
14
 * [About](#user-content-about)
14
 * [About](#user-content-about)
15
 * [Installation](#user-content-installation)
15
 * [Installation](#user-content-installation)
16
-* [Recipes](#user-content-recipes)
17
 * [HTTP Data Transfer](#user-content-http-data-transfer)
16
 * [HTTP Data Transfer](#user-content-http-data-transfer)
18
  * [Regular Request](#user-content-regular-request)
17
  * [Regular Request](#user-content-regular-request)
19
  * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
18
  * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
119
 
118
 
120
 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).
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
 ES6
123
 ES6
125
 
124
 
693
 - Blob
692
 - Blob
694
 - XMLHttpRequest (Use our implementation if you're going to use it with Blob)
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
 ### Performance Tips
697
 ### Performance Tips
697
 
698
 
698
 ---
699
 ---