File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,18 @@ def all_pods
3535end
3636
3737post_install do |installer |
38- react_native_post_install (
39- installer ,
40- "../../node_modules/react-native" ,
41- :mac_catalyst_enabled => false
42- )
38+ __apply_Xcode_15_3_flipper_post_install_workaround ( installer )
39+
40+ react_native_post_install ( installer , "../../node_modules/react-native" , :mac_catalyst_enabled => false )
41+
42+ __apply_Xcode_15_unary_binary_error_workaround ( installer )
43+
44+ # This is to resolve "'shared_timed_mutex' is unavailable: introduced in iOS 10.0" error
45+ installer . pods_project . targets . each do |t |
46+ t . build_configurations . each do |config |
47+ config . build_settings [ 'IPHONEOS_DEPLOYMENT_TARGET' ] = '12.4'
48+ end
49+ end
4350end
4451
4552def __apply_Xcode_15_3_flipper_post_install_workaround ( installer )
You can’t perform that action at this time.
0 commit comments