1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/Example/testHotUpdate/ios/Podfile

26 lines
740 B
Plaintext
Raw Normal View History

2020-09-01 15:29:13 +08:00
require_relative '../node_modules/react-native/scripts/react_native_pods'
2019-10-04 18:38:54 +08:00
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
2020-09-01 15:29:13 +08:00
platform :ios, '10.0'
2019-10-04 18:38:54 +08:00
2020-09-01 15:29:13 +08:00
target 'testHotUpdate' do
config = use_native_modules!
2019-10-04 18:38:54 +08:00
2021-04-09 18:23:29 +08:00
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
2019-10-04 18:38:54 +08:00
2021-04-09 18:23:29 +08:00
# Enables Flipper.
2020-09-01 15:29:13 +08:00
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
2021-04-09 18:23:29 +08:00
# you should disable the next line.
2021-07-17 21:56:41 +08:00
use_flipper!({'Flipper' => '0.75.1', 'Flipper-Folly' => '2.5.3', 'Flipper-RSocket' => '1.3.1'})
2021-04-09 18:23:29 +08:00
2020-09-01 15:29:13 +08:00
post_install do |installer|
2021-04-09 18:23:29 +08:00
react_native_post_install(installer)
2020-09-01 15:29:13 +08:00
end
2019-10-04 18:38:54 +08:00
end