Podfile 728 B

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