Podfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
  2. platform :ios, '14.0'
  3. use_frameworks!
  4. # workaround to avoid Xcode caching of Pods that requires
  5. # Product -> Clean Build Folder after new Cordova plugins installed
  6. # Requires CocoaPods 1.6 or newer
  7. install! 'cocoapods', :disable_input_output_paths => true
  8. def capacitor_pods
  9. pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
  10. pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
  11. pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  12. pod 'CapacitorBrowser', :path => '../../node_modules/@capacitor/browser'
  13. pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
  14. pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device'
  15. pod 'CapacitorGeolocation', :path => '../../node_modules/@capacitor/geolocation'
  16. pod 'CapacitorGoogleMaps', :path => '../../node_modules/@capacitor/google-maps'
  17. pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  18. pod 'CapacitorPreferences', :path => '../../node_modules/@capacitor/preferences'
  19. pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
  20. pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
  21. pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
  22. pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
  23. end
  24. target 'App' do
  25. capacitor_pods
  26. # Add your Pods here
  27. end
  28. post_install do |installer|
  29. assertDeploymentTarget(installer)
  30. end