Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8121dbf
Apply possible fix to fs.readFile and fs.readStream for #287
wkh237 Mar 27, 2017
4d15c0f
Merge branch '0.10.5' into issue-287-wip
wkh237 Apr 16, 2017
40fefd4
Add Android fs.readFile app provider URI support #287
wkh237 Apr 16, 2017
50a4d06
Merge branch 'issue-287-merged' into uri
wkh237 Jul 2, 2017
a8cfeb1
Correct app content provider URI handle #287
wkh237 Jul 2, 2017
bb7fec4
Merge branch 'issue-287' of github.com:wkh237/react-native-fetch-blob…
wkh237 Jul 2, 2017
08f8403
Fixed a bug which causes XMLHttpRequest getting incorrect header when…
wkh237 Jul 3, 2017
c217fab
Merge branch 'uri' into 0.10.7
wkh237 Jul 3, 2017
8a75a9b
Set mime if set in addAndroidDownloads (#421)
jsm Jul 3, 2017
ed2732a
Fix Download Manager bug when the file is not a multimedia #391
wkh237 Jul 5, 2017
dd4dbb2
Merge branch '0.10.7' of github.com:wkh237/react-native-fetch-blob in…
wkh237 Jul 5, 2017
6bb7c65
Add support for TLS 1.2 when running Android 4 (#430)
jhellman Jul 14, 2017
b70a124
Update README.md
wkh237 Jul 14, 2017
712c8a3
[iOS] Fix for RNFetchBlob.writeChunk failing to write base64 encoded …
joshbax Jul 17, 2017
d83d800
Add missing API Blob.safeClose()
wkh237 Jul 25, 2017
d1d07d0
Fix Compilation Error in React Native 0.47.0 (#452)
Hizoul Aug 2, 2017
206588f
Merge branch 'master' of github.com:wkh237/react-native-fetch-blob in…
wkh237 Aug 2, 2017
6bde516
Bump to 0.10.7
wkh237 Aug 2, 2017
5f3c018
Merge branch '0.10.7' of github.com:wkh237/react-native-fetch-blob in…
wkh237 Aug 2, 2017
50c1573
Update PULL_REQUEST_TEMPLATE
wkh237 Aug 2, 2017
55009f1
Correct unterminated string #455
wkh237 Aug 3, 2017
9ab4ebb
bump to 0.10.8
bcpclone Aug 3, 2017
38f4d75
Synchronized dictionaries and tables operations
Jan 12, 2018
905ab1c
Mostly RNFetchBlobNetwork cleanup
Jan 15, 2018
11f674c
QOS level for task queue
Jan 15, 2018
f0301db
Unused completion handlers leftovers removed
Jan 15, 2018
8dd310d
Separate requests from network logic
Jan 15, 2018
db68875
Shared instance used
Jan 16, 2018
ad65763
Proper usage of shared instance
Jan 16, 2018
1d19f98
Commented code removed
Jan 16, 2018
d4b465a
Fixed header import defines
Jan 16, 2018
57102f4
Some code guidelines for network classes
Jan 16, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed header import defines
  • Loading branch information
Artur Chrusciel committed Jan 16, 2018
commit d4b465a366603a90b50a3a46323183e7e6795e7d
6 changes: 3 additions & 3 deletions ios/RNFetchBlobNetwork.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
// Copyright © 2016 wkh237. All rights reserved.
//

#ifndef RNFetchBlobNetwork_h
#define RNFetchBlobNetwork_h

#import <Foundation/Foundation.h>
#import "RNFetchBlobProgress.h"
#import "RNFetchBlobFS.h"
Expand All @@ -17,9 +20,6 @@
#import "RCTBridgeModule.h"
#endif

#ifndef RNFetchBlobNetwork_h
#define RNFetchBlobNetwork_h


@interface RNFetchBlobNetwork : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate>

Expand Down
6 changes: 3 additions & 3 deletions ios/RNFetchBlobRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
// Copyright © 2018 wkh237.github.io. All rights reserved.
//

#ifndef RNFetchBlobRequest_h
#define RNFetchBlobRequest_h

#import <Foundation/Foundation.h>

#import "RNFetchBlobProgress.h"
Expand All @@ -16,9 +19,6 @@
#import "RCTBridgeModule.h"
#endif

#ifndef RNFetchBlobRequest_h
#define RNFetchBlobRequest_h

@interface RNFetchBlobRequest : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate>

@property (nullable, nonatomic) NSString * taskId;
Expand Down