Podfile 705 B

12345678910111213141516171819202122232425
  1. source 'https://github.com/firebase/SpecsStaging.git'
  2. source 'https://cdn.cocoapods.org/'
  3. use_frameworks!
  4. target 'SampleWatchAppWatchKitExtension' do
  5. platform :watchos, '6.0'
  6. pod 'FirebaseCore', :path => '../../'
  7. pod 'FirebaseMessaging', :path => '../../'
  8. pod 'FirebaseInstanceID', :path => '../../'
  9. pod 'FirebaseCoreDiagnostics', :path => '../../'
  10. pod 'FirebaseInstallations', :path => '../../'
  11. pod 'FirebaseStorage', :path => '../../'
  12. pod 'FirebaseRemoteConfig', :path => '../../'
  13. pod 'FirebaseABTesting', :path => '../../'
  14. end
  15. target 'ServiceExtension' do
  16. platform :watchos, '6.0'
  17. pod 'FirebaseMessaging', :path => '../../'
  18. pod 'FirebaseInstanceID', :path => '../../'
  19. end