46 lines
2.0 KiB
Plaintext
46 lines
2.0 KiB
Plaintext
|
|
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 'CapacitorFirebaseAuthentication', :path => '../../node_modules/@capacitor-firebase/authentication'
|
||
|
|
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 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
|
||
|
|
pod 'CapacitorNetwork', :path => '../../node_modules/@capacitor/network'
|
||
|
|
pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
|
||
|
|
pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
|
||
|
|
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
|
||
|
|
pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
|
||
|
|
pod 'CapacitorShareExtension', :path => '../../node_modules/capacitor-share-extension'
|
||
|
|
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
|
||
|
|
pod 'CordovaPluginsResources', :path => '../capacitor-cordova-ios-plugins'
|
||
|
|
end
|
||
|
|
|
||
|
|
target 'App' do
|
||
|
|
capacitor_pods
|
||
|
|
# Add your Pods here
|
||
|
|
# pod 'Firebase/Auth', '~> 8.8.0'
|
||
|
|
pod 'Firebase/Core', '10.8.0'
|
||
|
|
pod 'Firebase/Auth', '10.8.0'
|
||
|
|
pod 'Firebase/Messaging', '10.8.0'
|
||
|
|
# pod 'Firebase/CoreOnly', '~> 8.1.1'
|
||
|
|
pod 'GoogleSignIn', '6.2.4'
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
post_install do |installer|
|
||
|
|
assertDeploymentTarget(installer)
|
||
|
|
end
|