File tree 2 files changed +5
-7
lines changed
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
4
4
platform :ios , '12.4'
5
5
install! 'cocoapods' , :deterministic_uuids => false
6
6
7
+ production = ENV [ "PRODUCTION" ] == "1"
8
+
7
9
target 'HelloWorld' do
8
10
config = use_native_modules!
9
11
@@ -13,8 +15,10 @@ target 'HelloWorld' do
13
15
use_react_native! (
14
16
:path => config [ :reactNativePath ] ,
15
17
# to enable hermes on iOS, change `false` to `true` and then install pods
18
+ :production => production ,
16
19
:hermes_enabled => flags [ :hermes_enabled ] ,
17
20
:fabric_enabled => flags [ :fabric_enabled ] ,
21
+ :flipper_configuration => FlipperConfiguration . enabled ,
18
22
# An absolute path to your application root.
19
23
:app_path => "#{ Pod ::Config . instance . installation_root } /.."
20
24
)
@@ -24,12 +28,6 @@ target 'HelloWorld' do
24
28
# Pods for testing
25
29
end
26
30
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
-
33
31
post_install do |installer |
34
32
react_native_post_install ( installer )
35
33
__apply_Xcode_12_5_M1_post_install_workaround ( installer )
Original file line number Diff line number Diff line change 11
11
},
12
12
"dependencies" : {
13
13
"react" : " 18.0.0" ,
14
- "react-native" : " 0.69.1 "
14
+ "react-native" : " 0.69.2 "
15
15
},
16
16
"devDependencies" : {
17
17
"@babel/core" : " ^7.12.9" ,
You can’t perform that action at this time.
0 commit comments