mirror of https://github.com/tooot-app/app
76 lines
2.4 KiB
Ruby
76 lines
2.4 KiB
Ruby
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")
|
|
|
|
platform :ios, '13.0'
|
|
install! 'cocoapods', :deterministic_uuids => false
|
|
|
|
require 'json'
|
|
podfile_properties = JSON.parse(File.read('./Podfile.properties.json')) rescue {}
|
|
|
|
target 'tooot' do
|
|
use_expo_modules!
|
|
config = use_native_modules!
|
|
|
|
# Flags change depending on the env values.
|
|
flags = get_default_flags()
|
|
|
|
# https://stackoverflow.com/questions/72289521/swift-pods-cannot-yet-be-integrated-as-static-libraries-firebasecoreinternal-lib/72969220#72969220
|
|
pod 'Firebase', :modular_headers => true
|
|
pod 'FirebaseCore', :modular_headers => true
|
|
pod 'GoogleUtilities', :modular_headers => true
|
|
$RNFirebaseAsStaticFramework = true
|
|
|
|
use_react_native!(
|
|
:path => config[:reactNativePath],
|
|
:hermes_enabled => true,
|
|
:fabric_enabled => flags[:fabric_enabled],
|
|
:flipper_configuration => FlipperConfiguration.disabled,
|
|
# An absolute path to your application root.
|
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
)
|
|
|
|
post_install do |installer|
|
|
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)
|
|
|
|
# For share extension
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
|
|
end
|
|
end
|
|
|
|
# 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
|
|
end
|
|
|
|
post_integrate do |installer|
|
|
begin
|
|
expo_patch_react_imports!(installer)
|
|
rescue => e
|
|
Pod::UI.warn e
|
|
end
|
|
end
|
|
end
|
|
|
|
target 'ShareExtension' do
|
|
use_react_native!(
|
|
:hermes_enabled => true,
|
|
:flipper_configuration => FlipperConfiguration.disabled
|
|
)
|
|
|
|
pod 'RNShareMenu', :path => '../node_modules/react-native-share-menu'
|
|
end
|