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

21 lines
568 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
2020-09-01 15:29:13 +08:00
use_react_native!(:path => config["reactNativePath"])
2019-10-04 18:38:54 +08:00
2020-09-01 15:29:13 +08:00
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!('Flipper' => '0.54.0')
post_install do |installer|
flipper_post_install(installer)
end
2019-10-04 18:38:54 +08:00
end