Update react-native to v0.64.3

This commit is contained in:
Sofiya Tepikin
2022-08-22 10:01:07 +00:00
parent 505584f1eb
commit a44827f65a
20 changed files with 797 additions and 1100 deletions
+9 -1
View File
@@ -6,10 +6,18 @@ platform :ios, '11.0'
target 'drip' do
config = use_native_modules!
use_react_native!(:path => config["reactNativePath"])
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
target 'dripTests' do
inherit! :complete
# Pods for testing
end
post_install do |installer|
react_native_post_install(installer)
end
end