Files
jellyfin-audio-player/ios/Podfile

43 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-07-26 12:54:52 +02:00
require_relative '../node_modules/react-native/scripts/react_native_pods'
2022-11-12 16:22:39 +01:00
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
2022-11-12 16:22:39 +01:00
platform :ios, '12.4'
install! 'cocoapods', :deterministic_uuids => false
2020-06-16 17:51:51 +02:00
2022-06-09 22:32:05 +02:00
target 'Fintunes' do
2020-07-26 12:54:52 +02:00
config = use_native_modules!
2022-05-04 18:28:00 +02:00
# Flags change depending on the env values.
flags = get_default_flags()
use_react_native!(
:path => config[:reactNativePath],
2022-11-12 16:22:39 +01:00
# Hermes is now enabled by default. Disable by setting this flag to false.
# Upcoming versions of React Native may rely on get_default_flags(), but
# we make it explicit here to aid in the React Native upgrade process.
:hermes_enabled => true,
2022-05-04 18:28:00 +02:00
:fabric_enabled => flags[:fabric_enabled],
2022-11-12 16:22:39 +01:00
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
2022-11-27 21:07:32 +01:00
:flipper_configuration => FlipperConfiguration.enabled(["Debug"], {'Flipper' => '0.164.0'}),
2022-05-04 18:28:00 +02:00
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
2020-06-16 17:51:51 +02:00
2022-06-09 22:32:05 +02:00
target 'FintunesTests' do
2020-06-16 17:51:51 +02:00
inherit! :complete
# Pods for testing
end
2020-06-16 17:51:51 +02:00
post_install do |installer|
2022-11-12 16:22:39 +01:00
react_native_post_install(
installer,
# Set `mac_catalyst_enabled` to `true` in order to apply patches
# necessary for Mac Catalyst builds
:mac_catalyst_enabled => false
)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
2020-06-16 17:51:51 +02:00
end
end