Podfile 797 B

123456789101112131415161718192021222324252627282930313233343536
  1. use_frameworks! :linkage => :static
  2. source 'https://github.com/firebase/SpecsStaging.git'
  3. source 'https://cdn.cocoapods.org/'
  4. def shared_pods
  5. pod 'FirebaseCore', :path => '../../../'
  6. pod 'GoogleUtilities', :path => '../../../'
  7. pod 'FirebaseMessaging', :path => '../../../'
  8. pod 'FirebaseInstanceID', :path => '../../../'
  9. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  10. pod 'GoogleDataTransport', :path => '../../../'
  11. pod 'FirebaseInstallations', :path => '../../../'
  12. end
  13. target 'AdvancedSample' do
  14. platform :ios, '13.0'
  15. shared_pods
  16. end
  17. target 'NotificationServiceExtension' do
  18. platform :ios, '13.0'
  19. shared_pods
  20. end
  21. target 'AppClips' do
  22. platform :ios, '13.0'
  23. shared_pods
  24. end
  25. target 'SampleWatchWatchKitExtension' do
  26. platform :watchos, '6.0'
  27. shared_pods
  28. end