tooot/ios/Podfile

59 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-10-24 00:43:00 +02:00
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
2021-01-28 00:41:53 +01:00
2022-08-06 22:05:26 +02:00
platform :ios, '12.4'
2022-05-08 22:35:43 +02:00
install! 'cocoapods', :deterministic_uuids => false
2021-10-24 00:43:00 +02:00
2022-08-06 22:05:26 +02:00
production = ENV["PRODUCTION"] == "1"
2021-10-24 00:43:00 +02:00
require 'json'
podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
2021-01-28 00:41:53 +01:00
target 'tooot' do
2021-10-24 00:43:00 +02:00
use_expo_modules!
2021-01-28 00:41:53 +01:00
config = use_native_modules!
2022-05-08 22:35:43 +02:00
# Flags change depending on the env values.
flags = get_default_flags()
2021-03-16 00:36:32 +01:00
use_react_native!(
:path => config[:reactNativePath],
2022-08-06 22:05:26 +02:00
:production => production,
2022-05-08 22:35:43 +02:00
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes',
:fabric_enabled => flags[:fabric_enabled],
2022-08-06 22:05:26 +02:00
:flipper_configuration => FlipperConfiguration.enabled,
2022-05-08 22:35:43 +02:00
# An absolute path to your application root.
:app_path => "#{Pod::Config.instance.installation_root}/.."
2021-03-16 00:36:32 +01:00
)
2021-01-28 00:41:53 +01:00
2021-03-16 00:36:32 +01:00
post_install do |installer|
react_native_post_install(installer)
2022-08-06 22:05:26 +02:00
__apply_Xcode_12_5_M1_post_install_workaround(installer)
2022-05-02 22:31:22 +02:00
2022-08-06 22:05:26 +02:00
# For share extension
2022-05-02 22:31:22 +02:00
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
2022-08-06 22:05:26 +02:00
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
# config.build_settings["ONLY_ACTIVE_ARCH"] = "YES"
2022-05-02 22:31:22 +02:00
end
end
2021-01-31 03:09:35 +01:00
end
2022-08-06 22:05:26 +02:00
post_integrate do |installer|
begin
expo_patch_react_imports!(installer)
rescue => e
Pod::UI.warn e
end
end
2021-01-31 03:09:35 +01:00
end
2022-05-02 22:31:22 +02:00
target 'ShareExtension' do
use_react_native!(
:hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes'
)
pod 'RNShareMenu', :path => '../node_modules/react-native-share-menu'
end