Podfile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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 'FirebaseCoreInternal', :path => '../../'
  9. pod 'FirebaseMessaging', :path => '../../'
  10. pod 'FirebaseCoreExtension', :path => '../../'
  11. pod 'FirebaseCoreInternal', :path => '../../'
  12. pod 'FirebaseInstallations', :path => '../../'
  13. pod 'FirebaseStorage', :path => '../../'
  14. pod 'FirebaseRemoteConfig', :path => '../../'
  15. pod 'FirebaseABTesting', :path => '../../'
  16. pod 'FirebaseDatabase', :path => '../../'
  17. pod 'FirebaseAppCheckInterop', :path => '../../'
  18. pod 'FirebaseAuthInterop', :path => '../../'
  19. pod 'FirebaseRemoteConfigInterop', :path => '../../'
  20. pod 'Firebase/Messaging', :path => '../../'
  21. pod 'Firebase/Storage', :path => '../../'
  22. pod 'Firebase/RemoteConfig', :path => '../../'
  23. pod 'Firebase/ABTesting', :path => '../../'
  24. pod 'Firebase/Database', :path => '../../'
  25. end
  26. target 'ServiceExtension' do
  27. platform :watchos, '7.0'
  28. pod 'FirebaseMessaging', :path => '../../'
  29. end