Podfile 1.2 KB

1234567891011121314151617181920212223242526
  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 'CapacitorCommunityBluetoothLe', :path => '../../node_modules/@capacitor-community/bluetooth-le'
  11. pod 'CapacitorCommunityHttp', :path => '../../node_modules/@capacitor-community/http'
  12. pod 'CapacitorCommunityWifi', :path => '../../node_modules/@capacitor-community/wifi'
  13. pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  14. pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
  15. pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
  16. pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  17. pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
  18. pod 'CapacitorStorage', :path => '../../node_modules/@capacitor/storage'
  19. end
  20. target 'App' do
  21. capacitor_pods
  22. # Add your Pods here
  23. end