Skip to content

Commit a326a30

Browse files
SConawayfacebook-github-bot
authored andcommitted
Add instructions to template/ios/Podfile for enabling hermes (#30461)
Summary: Just thought I'd add these instructions so devs don't have to check the docs. Also, it makes iOS match Android with instructions in the configuration files ## Changelog N/A (in my opinion) Pull Request resolved: #30461 Test Plan: N/A (because not a code change) Reviewed By: hramos Differential Revision: D25309687 Pulled By: TheSavior fbshipit-source-id: a1907089b9d2e7fe6f2498ce27129c3ae65f7c9a
1 parent 50dde4b commit a326a30

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

template/ios/Podfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ platform :ios, '10.0'
66
target 'HelloWorld' do
77
config = use_native_modules!
88

9-
use_react_native!(:path => config[:reactNativePath])
9+
use_react_native(
10+
:path => config[:reactNativePath],
11+
# to enable hermes on iOS, change `false` to `true` and then install pods
12+
:hermes_enabled => false
13+
)
1014

1115
target 'HelloWorldTests' do
1216
inherit! :complete

0 commit comments

Comments
 (0)