2024-10-18 12:30:38 +03: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'
|
2024-10-28 09:12:33 +03:00
|
|
|
pod 'CapacitorApp', :path => '../../../../../node_modules/@capacitor/app'
|
|
|
|
pod 'CapacitorBrowser', :path => '../../../../../node_modules/@capacitor/browser'
|
2024-12-02 06:27:01 +03:00
|
|
|
pod 'CapacitorHaptics', :path => '../../../../../node_modules/@capacitor/haptics'
|
2024-11-01 08:48:30 +03:00
|
|
|
pod 'CapacitorKeyboard', :path => '../../../../../node_modules/@capacitor/keyboard'
|
2024-10-18 12:30:38 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
target 'App' do
|
|
|
|
capacitor_pods
|
|
|
|
# Add your Pods here
|
2024-10-29 11:40:15 +03:00
|
|
|
pod 'CryptoSwift', '~> 1.8.3'
|
2024-10-18 12:30:38 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
assertDeploymentTarget(installer)
|
|
|
|
end
|