blazerapp/ios/Podfile

48 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2020-08-09 16:37:46 -04:00
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '10.0'
target 'blazerapp' do
config = use_native_modules!
use_react_native!(:path => config["reactNativePath"])
2020-08-10 15:23:33 -04:00
2020-08-10 09:14:23 -04:00
2020-08-10 16:06:01 -04:00
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
2020-12-21 22:34:09 -05:00
2021-08-17 21:18:32 -04:00
pod 'RNLocalize', :path => '../node_modules/react-native-localize'
2020-08-09 16:37:46 -04:00
target 'blazerappTests' do
inherit! :complete
# Pods for testing
end
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
2021-06-26 17:19:29 -04:00
use_flipper!({'Flipper' => '0.87.0' , 'Flipper-Folly' => '2.5.3' , 'Flipper-RSocket' => '1.3.1' })
2020-08-09 16:37:46 -04:00
post_install do |installer|
flipper_post_install(installer)
2021-06-26 17:19:29 -04:00
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
2020-08-09 16:37:46 -04:00
end
2021-06-26 17:19:29 -04:00
2020-08-09 16:37:46 -04:00
end
target 'blazerapp-tvOS' do
# Pods for blazerapp-tvOS
target 'blazerapp-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end