Podfile 558 B

123456789101112131415161718
  1. platform :ios, '12.0'
  2. use_frameworks!
  3. # workaround to avoid Xcode caching of Pods that requires
  4. # Product -> Clean Build Folder after new Cordova plugins installed
  5. # Requires CocoaPods 1.6 or newer
  6. install! 'cocoapods', :disable_input_output_paths => true
  7. def capacitor_pods
  8. pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
  9. pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
  10. pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
  11. end
  12. target 'App' do
  13. capacitor_pods
  14. # Add your Pods here
  15. end