Podfile 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
  2. platform :ios, '13.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 'AashuDubeyCapacitorStatusbarSafeArea', :path => '../../node_modules/@aashu-dubey/capacitor-statusbar-safe-area'
  12. pod 'CapacitorCommunityFileOpener', :path => '../../node_modules/@capacitor-community/file-opener'
  13. pod 'CapacitorCommunityMedia', :path => '../../node_modules/@capacitor-community/media'
  14. pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  15. pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
  16. pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  17. pod 'CapacitorNetwork', :path => '../../node_modules/@capacitor/network'
  18. pod 'CapacitorScreenOrientation', :path => '../../node_modules/@capacitor/screen-orientation'
  19. pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
  20. pod 'HugotomaziCapacitorNavigationBar', :path => '../../node_modules/@hugotomazi/capacitor-navigation-bar'
  21. end
  22. target 'App' do
  23. capacitor_pods
  24. # Add your Pods here
  25. end
  26. post_install do |installer|
  27. assertDeploymentTarget(installer)
  28. end