Podfile 1.8 KB

123456789101112131415161718192021222324252627282930
  1. require_relative '../../node_modules/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/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/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/node_modules/@capacitor/ios'
  10. pod 'CapacitorCordova', :path => '../../node_modules/.pnpm/@capacitor+ios@6.2.1_@capacitor+core@6.2.1/node_modules/@capacitor/ios'
  11. pod 'CapacitorApp', :path => '../../node_modules/.pnpm/@capacitor+app@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/app'
  12. pod 'CapacitorBrowser', :path => '../../node_modules/.pnpm/@capacitor+browser@7.0.1_@capacitor+core@6.2.1/node_modules/@capacitor/browser'
  13. pod 'CapacitorHaptics', :path => '../../node_modules/.pnpm/@capacitor+haptics@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/haptics'
  14. pod 'CapacitorKeyboard', :path => '../../node_modules/.pnpm/@capacitor+keyboard@6.0.3_@capacitor+core@6.2.1/node_modules/@capacitor/keyboard'
  15. pod 'CapacitorSplashScreen', :path => '../../node_modules/.pnpm/@capacitor+splash-screen@7.0.1_@capacitor+core@6.2.1/node_modules/@capacitor/splash-screen'
  16. pod 'CapacitorStatusBar', :path => '../../node_modules/.pnpm/@capacitor+status-bar@6.0.2_@capacitor+core@6.2.1/node_modules/@capacitor/status-bar'
  17. pod 'CapgoCapacitorNavigationBar', :path => '../../node_modules/.pnpm/@capgo+capacitor-navigation-bar@6.1.75_@capacitor+core@6.2.1/node_modules/@capgo/capacitor-navigation-bar'
  18. end
  19. target 'App' do
  20. capacitor_pods
  21. # Add your Pods here
  22. end
  23. post_install do |installer|
  24. assertDeploymentTarget(installer)
  25. end