Podfile 937 B

123456789101112131415161718192021222324252627282930
  1. source 'https://github.com/firebase/SpecsDev.git'
  2. source 'https://github.com/firebase/SpecsStaging.git'
  3. source 'https://cdn.cocoapods.org/'
  4. use_frameworks!
  5. target 'SampleWatchAppWatchKitExtension' do
  6. platform :watchos, '7.0'
  7. pod 'FirebaseCore', :path => '../../'
  8. pod 'FirebaseMessaging', :path => '../../'
  9. pod 'FirebaseCoreDiagnostics', :path => '../../'
  10. pod 'FirebaseInstallations', :path => '../../'
  11. pod 'FirebaseStorage', :path => '../../'
  12. pod 'FirebaseRemoteConfig', :path => '../../'
  13. pod 'FirebaseABTesting', :path => '../../'
  14. pod 'FirebaseDatabase', :path => '../../'
  15. pod 'Firebase/Messaging', :path => '../../'
  16. pod 'Firebase/Storage', :path => '../../'
  17. pod 'Firebase/RemoteConfig', :path => '../../'
  18. pod 'Firebase/ABTesting', :path => '../../'
  19. pod 'Firebase/Database', :path => '../../'
  20. end
  21. target 'ServiceExtension' do
  22. platform :watchos, '7.0'
  23. pod 'FirebaseMessaging', :path => '../../'
  24. end