Podfile 711 B

1234567891011121314151617181920
  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 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  11. pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
  12. pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
  13. end
  14. target 'App' do
  15. capacitor_pods
  16. # Add your Pods here
  17. end