Files
jellyfin-audio-player/ios/Podfile

36 lines
1.0 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-05-04 18:28:00 +02:00
require_relative '../node_modules/react-native/node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '12.0'
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],
# to enable hermes on iOS, change `false` to `true` and then install pods
2022-05-04 18:28:00 +02:00
:hermes_enabled => flags[:hermes_enabled],
:fabric_enabled => flags[:fabric_enabled],
# 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
# 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)
2020-06-16 17:51:51 +02:00
end
end