File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 17
17
#import < FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
18
18
#import < FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
19
19
#import < SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
20
+ #import < FlipperKitReactPlugin/FlipperKitReactPlugin.h>
20
21
#endif
21
22
22
23
@implementation AppDelegate
@@ -53,7 +54,8 @@ + (void) initializeFlipper:(UIApplication *)application
53
54
FlipperClient *client = [FlipperClient sharedClient ];
54
55
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc ] initWithDefaults ];
55
56
[client addPlugin: [[FlipperKitLayoutPlugin alloc ] initWithRootNode: application withDescriptorMapper: layoutDescriptorMapper]];
56
- [client addPlugin: [[FKUserDefaultsPlugin alloc ] initWithSuiteName: nil ]]; [client start ];
57
+ [client addPlugin: [[FKUserDefaultsPlugin alloc ] initWithSuiteName: nil ]];
58
+ [client addPlugin: [FlipperKitReactPlugin new ]];
57
59
[client addPlugin: [[FlipperKitNetworkPlugin alloc ] initWithNetworkAdapter: [SKIOSNetworkAdapter new ]]];
58
60
[client start ];
59
61
#endif
Original file line number Diff line number Diff line change @@ -3,11 +3,12 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ
3
3
4
4
# Add Flipper Poods
5
5
def flipper_pods ( )
6
- flipperkit_version = '0.23.4 '
6
+ flipperkit_version = '0.23.6 '
7
7
pod 'FlipperKit' , '~>' + flipperkit_version , :configuration => 'Debug'
8
8
pod 'FlipperKit/FlipperKitLayoutPlugin' , '~>' + flipperkit_version , :configuration => 'Debug'
9
9
pod 'FlipperKit/SKIOSNetworkPlugin' , '~>' + flipperkit_version , :configuration => 'Debug'
10
10
pod 'FlipperKit/FlipperKitUserDefaultsPlugin' , '~>' + flipperkit_version , :configuration => 'Debug'
11
+ pod 'FlipperKit/FlipperKitReactPlugin' , '~>' + flipperkit_version , :configuration => 'Debug'
11
12
end
12
13
13
14
# Post Install processing for Flipper
@@ -77,8 +78,8 @@ target 'HelloWorld' do
77
78
use_native_modules!
78
79
79
80
# For enabling Flipper.
80
- # Note that if you use_framework!, flipper will no work.
81
- # Disable these lines if you are doing use_framework!
81
+ # Note that if you use_framework!, flipper will no work.
82
+ # Disable these lines if you are doing use_framework!
82
83
flipper_pods ( )
83
84
post_install do |installer |
84
85
flipper_post_install ( installer )
You can’t perform that action at this time.
0 commit comments