Нет описания

Podfile 1.4KB

12345678910111213141516171819202122232425262728293031323334
  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 'CapacitorCommunityFacebookLogin', :path => '../../node_modules/@capacitor-community/facebook-login'
  12. pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  13. pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
  14. pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  15. pod 'CapacitorPreferences', :path => '../../node_modules/@capacitor/preferences'
  16. pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
  17. pod 'CapacitorShare', :path => '../../node_modules/@capacitor/share'
  18. pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
  19. pod 'CodetrixStudioCapacitorGoogleAuth', :path => '../../node_modules/@codetrix-studio/capacitor-google-auth'
  20. end
  21. target 'App' do
  22. capacitor_pods
  23. # Add your Pods here
  24. pod 'Firebase/Messaging' # Add this line
  25. end
  26. post_install do |installer|
  27. assertDeploymentTarget(installer)
  28. end