Skip to content

Commit 1d812f5

Browse files
committed
try a hermes
1 parent a2d45f6 commit 1d812f5

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

ios/Podfile

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff 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
4651
end

0 commit comments

Comments
 (0)