File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,23 @@ target 'MetaMask' do
2929 # Comment the next line if you don't want to use dynamic frameworks
3030 # use_frameworks!
3131
32- use_react_native! ( :path => config [ "reactNativePath" ] )
32+ use_react_native! (
33+ :path => config [ :reactNativePath ] ,
34+ # to enable hermes on iOS, change `false` to `true` and then install pods
35+ :hermes_enabled => true
36+ )
37+
3338
3439 # Pods for MetaMask
3540 pod 'React-RCTPushNotification' , :path => '../node_modules/react-native/Libraries/PushNotificationIOS'
3641
37- use_flipper! ( { 'Flipper-Folly' => '2.3.0' } )
42+ use_flipper! ( )
3843 post_install do |installer |
39- react_native_post_install ( installer )
40- # Enables Flipper.
41- #
42- # Note that if you have use_frameworks! enabled, Flipper will not work and
43- # you should disable these next few lines.
44- flipper_post_install ( installer )
44+ react_native_post_install ( installer )
45+ # Enables Flipper.
46+ #
47+ # Note that if you have use_frameworks! enabled, Flipper will not work and
48+ # you should disable these next few lines.
49+ flipper_post_install ( installer )
4550 end
4651end
You can’t perform that action at this time.
0 commit comments