2021-10-25 23:36:14 +02:00
|
|
|
platform :ios, '11.0'
|
2020-06-16 17:51:51 +02:00
|
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
2020-07-26 12:54:52 +02:00
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
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"])
|
2020-06-16 17:51:51 +02:00
|
|
|
|
|
|
|
|
target 'JellyfinAudioPlayerTests' 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.
|
2020-07-26 12:54:52 +02:00
|
|
|
use_flipper!
|
2020-06-16 17:51:51 +02:00
|
|
|
post_install do |installer|
|
|
|
|
|
flipper_post_install(installer)
|
2021-02-07 23:06:34 +01:00
|
|
|
installer.pods_project.build_configurations.each do |config|
|
|
|
|
|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
|
|
|
|
|
end
|
2020-06-16 17:51:51 +02:00
|
|
|
end
|
|
|
|
|
end
|