Podfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
  2. # pod specs for AgeEncryption
  3. source 'https://github.com/CocoaPods/Specs.git'
  4. platform :ios, '13.0'
  5. use_frameworks!
  6. # workaround to avoid Xcode caching of Pods that requires
  7. # Product -> Clean Build Folder after new Cordova plugins installed
  8. # Requires CocoaPods 1.6 or newer
  9. install! 'cocoapods', :disable_input_output_paths => true
  10. def capacitor_pods
  11. pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
  12. pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
  13. pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  14. pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
  15. pod 'CapacitorClipboard', :path => '../../node_modules/@capacitor/clipboard'
  16. pod 'CapacitorFilesystem', :path => '../../node_modules/@capacitor/filesystem'
  17. pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
  18. pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  19. pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
  20. pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
  21. pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
  22. pod 'LogseqCapacitorFileSync', :path => '../../node_modules/@logseq/capacitor-file-sync'
  23. pod 'CapacitorVoiceRecorder', :path => '../../node_modules/capacitor-voice-recorder'
  24. pod 'SendIntent', :path => '../../node_modules/send-intent'
  25. end
  26. target 'Logseq' do
  27. capacitor_pods
  28. # Add your Pods here
  29. end
  30. post_install do |installer|
  31. assertDeploymentTarget(installer)
  32. end