Skip to content

Commit 188602a

Browse files
committed
rename module
1 parent dafc5f5 commit 188602a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

example/ios/QuickSQLiteExample/AppDelegate.mm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ - (NSURL *)bundleURL
2424
#endif
2525
}
2626

27+
#ifdef RCT_NEW_ARCH_ENABLED
2728
- (BOOL)bridgelessEnabled
2829
{
2930
return YES;
3031
}
32+
#endif
3133

3234
@end

package/ios/QuickSQLite.mm

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77

88
using namespace facebook;
99

10-
#ifdef RCT_NEW_ARCH_ENABLED
1110
@implementation RNQuickSQLite
1211

12+
#ifdef RCT_NEW_ARCH_ENABLED
1313
RCT_EXPORT_MODULE()
1414
#else
15-
@implementation RNQuickSQLite
16-
1715
RCT_EXPORT_MODULE(RNQuickSQLite)
1816
#endif
1917

package/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/* eslint-disable @typescript-eslint/no-explicit-any */
88
/* eslint-disable @typescript-eslint/no-unsafe-call */
99

10-
import RNQuickSQLiteModule from './NativeRNQuickSQLiteModule'
10+
import RNQuickSQLiteModule from './NativeRNQuickSQLite'
1111

1212
declare global {
1313
var __QuickSQLiteProxy: object | undefined

0 commit comments

Comments
 (0)