Skip to content

Commit 34fb665

Browse files
authored
Fix imports on iOS
1 parent 5b60019 commit 34fb665

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ios/RNCAsyncStorage.m

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
#import "RCTAsyncLocalStorage.h"
8+
#import "RNCAsyncStorage.h"
99

1010
#import <Foundation/Foundation.h>
1111

1212
#import <CommonCrypto/CommonCryptor.h>
1313
#import <CommonCrypto/CommonDigest.h>
1414

15-
#import "RCTConvert.h"
16-
#import "RCTLog.h"
17-
#import "RCTUtils.h"
15+
#import <React/RCTConvert.h>
16+
#import <React/RCTLog.h>
17+
#import <React/RCTUtils.h>
1818

19-
static NSString *const RCTStorageDirectory = @"RCTAsyncLocalStorage_V1";
19+
static NSString *const RCTStorageDirectory = @"RNCAsyncLocalStorage_V1";
2020
static NSString *const RCTManifestFileName = @"manifest.json";
2121
static const NSUInteger RCTInlineValueThreshold = 1024;
2222

@@ -156,9 +156,9 @@ static dispatch_queue_t RCTGetMethodQueue()
156156
return error ? RCTMakeError(@"Failed to delete storage directory.", error, nil) : nil;
157157
}
158158

159-
#pragma mark - RCTAsyncLocalStorage
159+
#pragma mark - RNCAsyncStorage
160160

161-
@implementation RCTAsyncLocalStorage
161+
@implementation RNCAsyncStorage
162162
{
163163
BOOL _haveSetup;
164164
// The manifest is a dictionary of all keys with small values inlined. Null values indicate values that are stored

0 commit comments

Comments
 (0)