Podfile 755 B

1234567891011121314151617181920212223242526
  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, '6.0'
  7. pod 'FirebaseCore', :path => '../../'
  8. pod 'FirebaseMessaging', :path => '../../'
  9. pod 'FirebaseInstanceID', :path => '../../'
  10. pod 'FirebaseCoreDiagnostics', :path => '../../'
  11. pod 'FirebaseInstallations', :path => '../../'
  12. pod 'FirebaseStorage', :path => '../../'
  13. pod 'FirebaseRemoteConfig', :path => '../../'
  14. pod 'FirebaseABTesting', :path => '../../'
  15. end
  16. target 'ServiceExtension' do
  17. platform :watchos, '6.0'
  18. pod 'FirebaseMessaging', :path => '../../'
  19. pod 'FirebaseInstanceID', :path => '../../'
  20. end