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-11-05 22:33:16 +01:00
|
|
|
platform :ios, '13.0'
|
2022-05-08 22:35:43 +02:00
|
|
|
install! 'cocoapods', :deterministic_uuids => false
|
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-11-05 22:33:16 +01:00
|
|
|
:hermes_enabled => true,
|
2022-05-08 22:35:43 +02:00
|
|
|
:fabric_enabled => flags[:fabric_enabled],
|
2022-08-12 16:44:28 +02:00
|
|
|
:flipper_configuration => FlipperConfiguration.disabled,
|
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|
|
2022-11-05 22:33:16 +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
|
|
|
|
)
|
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'
|
2022-05-02 22:31:22 +02:00
|
|
|
end
|
|
|
|
end
|
2022-10-31 00:22:20 +01:00
|
|
|
|
|
|
|
# For Xcode 14
|
|
|
|
installer.generated_projects.each do |project|
|
|
|
|
project.targets.each do |target|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
|
|
|
|
end
|
|
|
|
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!(
|
2022-11-05 22:33:16 +01:00
|
|
|
:hermes_enabled => true,
|
2022-08-12 16:44:28 +02:00
|
|
|
:flipper_configuration => FlipperConfiguration.disabled
|
2022-05-02 22:31:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
pod 'RNShareMenu', :path => '../node_modules/react-native-share-menu'
|
|
|
|
end
|