File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/nativ
44platform :ios , '12.4'
55install! 'cocoapods' , :deterministic_uuids => false
66
7+ production = ENV [ "PRODUCTION" ] == "1"
8+
79target '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 )
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments