1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

chore(deps): Update denpendency.

This commit is contained in:
jaywcjlove
2021-05-10 13:51:59 +08:00
parent 312d39fb96
commit b92f3d6126
27 changed files with 2400 additions and 2455 deletions

View File

@@ -6,7 +6,11 @@ platform :ios, '10.0'
target 'example' 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 'exampleTests' do
inherit! :complete
@@ -16,18 +20,9 @@ target 'example' do
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!
# you should disable the next line.
use_flipper!()
post_install do |installer|
flipper_post_install(installer)
react_native_post_install(installer)
end
end
target 'example-tvOS' do
# Pods for example-tvOS
target 'example-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
end