2023-01-16 15:06:27 +01:00
|
|
|
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
|
|
|
|
|
|
|
|
|
|
platform :ios, '13.0'
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# workaround to avoid Xcode caching of Pods that requires
|
|
|
|
|
# Product -> Clean Build Folder after new Cordova plugins installed
|
|
|
|
|
# Requires CocoaPods 1.6 or newer
|
|
|
|
|
install! 'cocoapods', :disable_input_output_paths => true
|
|
|
|
|
|
|
|
|
|
def capacitor_pods
|
|
|
|
|
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
|
|
|
|
|
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
|
|
|
|
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
|
|
|
|
|
pod 'CapacitorBrowser', :path => '../../node_modules/@capacitor/browser'
|
|
|
|
|
pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
|
|
|
|
|
pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device'
|
|
|
|
|
pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
|
|
|
|
|
pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
|
|
|
|
|
pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
|
|
|
|
|
pod 'CapacitorLocalNotifications', :path => '../../node_modules/@capacitor/local-notifications'
|
|
|
|
|
pod 'CapacitorNetwork', :path => '../../node_modules/@capacitor/network'
|
2023-07-26 16:48:27 +01:00
|
|
|
pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
|
2023-01-16 15:06:27 +01:00
|
|
|
pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
|
|
|
|
|
pod 'CapacitorStorage', :path => '../../node_modules/@capacitor/storage'
|
|
|
|
|
pod 'SentryCapacitor', :path => '../../node_modules/@sentry/capacitor'
|
|
|
|
|
pod 'CapacitorVoiceRecorder', :path => '../../node_modules/capacitor-voice-recorder'
|
|
|
|
|
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
|
|
|
|
|
pod 'CordovaPluginsResources', :path => '../capacitor-cordova-ios-plugins'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'App' do
|
|
|
|
|
capacitor_pods
|
|
|
|
|
# Add your Pods here
|
2023-10-05 17:02:05 +01:00
|
|
|
pod 'Firebase/CoreOnly', '~> 10.15.0'
|
|
|
|
|
pod 'Firebase/Core', '~> 10.15.0'
|
|
|
|
|
pod 'Firebase/Messaging', '~> 10.15.0'
|
2023-01-16 15:06:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
|
assertDeploymentTarget(installer)
|
|
|
|
|
end
|