| 
				
			 | 
			
			
				@@ -3,7 +3,7 @@ 
			 | 
		
	
		
			
			| 
				3
			 | 
			
				3
			 | 
			
			
				 A module provides upload, download, and files access API. Supports file stream read/write for process large files. 
			 | 
		
	
		
			
			| 
				4
			 | 
			
				4
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				5
			 | 
			
				5
			 | 
			
			
				 ## TOC 
			 | 
		
	
		
			
			| 
				6
			 | 
			
				
			 | 
			
			
				-* [Rationale](#user-content-rationale) 
			 | 
		
	
		
			
			| 
				
			 | 
			
				6
			 | 
			
			
				+* [About](#user-content-about) 
			 | 
		
	
		
			
			| 
				7
			 | 
			
				7
			 | 
			
			
				 * [Backward Compatible](#user-content-backward-compatible) 
			 | 
		
	
		
			
			| 
				8
			 | 
			
				8
			 | 
			
			
				 * [Installation](#user-content-installation) 
			 | 
		
	
		
			
			| 
				9
			 | 
			
				9
			 | 
			
			
				 * [Recipes](#user-content-recipes) 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -17,9 +17,10 @@ A module provides upload, download, and files access API. Supports file stream r 
			 | 
		
	
		
			
			| 
				17
			 | 
			
				17
			 | 
			
			
				  * [Manage cached files](#user-content-cache-file-management) 
			 | 
		
	
		
			
			| 
				18
			 | 
			
				18
			 | 
			
			
				  * [Self-Signed SSL Server](#user-content-self-signed-ssl-server) 
			 | 
		
	
		
			
			| 
				19
			 | 
			
				19
			 | 
			
			
				 * [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API) 
			 | 
		
	
		
			
			| 
				
			 | 
			
				20
			 | 
			
			
				+* [Trouble Shooting](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting) 
			 | 
		
	
		
			
			| 
				20
			 | 
			
				21
			 | 
			
			
				 * [Development](#user-content-development) 
			 | 
		
	
		
			
			| 
				21
			 | 
			
				22
			 | 
			
			
				   
			 | 
		
	
		
			
			| 
				22
			 | 
			
				
			 | 
			
			
				-## Rationale 
			 | 
		
	
		
			
			| 
				
			 | 
			
				23
			 | 
			
			
				+## About 
			 | 
		
	
		
			
			| 
				23
			 | 
			
				24
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				24
			 | 
			
				25
			 | 
			
			
				 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). 
			 | 
		
	
		
			
			| 
				25
			 | 
			
				26
			 | 
			
			
				  
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -64,6 +65,7 @@ protected List<ReactPackage> getPackages() { 
			 | 
		
	
		
			
			| 
				64
			 | 
			
				65
			 | 
			
			
				   }; 
			 | 
		
	
		
			
			| 
				65
			 | 
			
				66
			 | 
			
			
				 ... 
			 | 
		
	
		
			
			| 
				66
			 | 
			
				67
			 | 
			
			
				 ``` 
			 | 
		
	
		
			
			| 
				
			 | 
			
				68
			 | 
			
			
				+> If you still having problem on installing this package, please check the [trouble shooting page](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting) or [file an issue](https://github.com/wkh237/react-native-fetch-blob/issues/new) 
			 | 
		
	
		
			
			| 
				67
			 | 
			
				69
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				68
			 | 
			
				70
			 | 
			
			
				 **Grant Permission to External storage for Android 5.0 or lower** 
			 | 
		
	
		
			
			| 
				69
			 | 
			
				71
			 | 
			
			
				  
			 |