Skip to content

Commit 2ba3ef5

Browse files
committed
fix: default template on iOS (#30571)
Summary: Recently introduced steps to run Hermes accidentally removed `!` from the `use_react_native`, causing `pod install` to fail with an error. ## Changelog [INTERNAL] [iOS] - Fix Podfle in default template Pull Request resolved: #30571 Test Plan: Run `pod install` with this file and it should work. Reviewed By: appden Differential Revision: D25537263 Pulled By: TheSavior fbshipit-source-id: da7f21775cbe641e34aded87a92c696539f4d5c3
1 parent 52129b2 commit 2ba3ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ platform :ios, '10.0'
66
target 'HelloWorld' do
77
config = use_native_modules!
88

9-
use_react_native(
9+
use_react_native!(
1010
:path => config[:reactNativePath],
1111
# to enable hermes on iOS, change `false` to `true` and then install pods
1212
:hermes_enabled => false

0 commit comments

Comments
 (0)