Files
jellyfin-audio-player/ios/Podfile

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-07-26 12:54:52 +02: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, '12.0'
2020-06-16 17:51:51 +02:00
target 'JellyfinAudioPlayer' do
2020-07-26 12:54:52 +02:00
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
2020-06-16 17:51:51 +02:00
target 'JellyfinAudioPlayerTests' do
inherit! :complete
# Pods for testing
end
2020-06-16 17:51:51 +02:00
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!()
2020-06-16 17:51:51 +02:00
post_install do |installer|
react_native_post_install(installer)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
installer.aggregate_targets.each do |aggregate_target|
aggregate_target.user_project.native_targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)']
end
end
aggregate_target.user_project.save
2021-02-07 23:06:34 +01:00
end
2020-06-16 17:51:51 +02:00
end
end