Skip to content

Commit 3886209

Browse files
authored
feat: update to [email protected] (#287)
1 parent b702c55 commit 3886209

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Diff for: template/ios/Podfile

+4-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ
44
platform :ios, '12.4'
55
install! 'cocoapods', :deterministic_uuids => false
66

7+
production = ENV["PRODUCTION"] == "1"
8+
79
target 'HelloWorld' do
810
config = use_native_modules!
911

@@ -13,8 +15,10 @@ target 'HelloWorld' do
1315
use_react_native!(
1416
:path => config[:reactNativePath],
1517
# to enable hermes on iOS, change `false` to `true` and then install pods
18+
:production => production,
1619
:hermes_enabled => flags[:hermes_enabled],
1720
:fabric_enabled => flags[:fabric_enabled],
21+
:flipper_configuration => FlipperConfiguration.enabled,
1822
# An absolute path to your application root.
1923
:app_path => "#{Pod::Config.instance.installation_root}/.."
2024
)
@@ -24,12 +28,6 @@ target 'HelloWorld' do
2428
# Pods for testing
2529
end
2630

27-
# Enables Flipper.
28-
#
29-
# Note that if you have use_frameworks! enabled, Flipper will not work and
30-
# you should disable the next line.
31-
use_flipper!()
32-
3331
post_install do |installer|
3432
react_native_post_install(installer)
3533
__apply_Xcode_12_5_M1_post_install_workaround(installer)

Diff for: template/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"react": "18.0.0",
14-
"react-native": "0.69.1"
14+
"react-native": "0.69.2"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.12.9",

0 commit comments

Comments
 (0)