Podfile 782 B

12345678910111213141516171819202122232425262728293031323334353637
  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 'FirebaseCoreDiagnostics', :path => '../../../'
  9. pod 'FirebaseInstallations', :path => '../../../'
  10. pod 'GoogleDataTransport'
  11. end
  12. target 'AdvancedSample' do
  13. platform :ios, '13.0'
  14. pod 'FirebaseAnalytics'
  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. pod 'FirebaseAnalytics'
  24. shared_pods
  25. end
  26. target 'SampleWatchWatchKitExtension' do
  27. platform :watchos, '6.0'
  28. shared_pods
  29. end