Podfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 'Firebase/Messaging', :path => '../../'
  20. pod 'Firebase/Storage', :path => '../../'
  21. pod 'Firebase/RemoteConfig', :path => '../../'
  22. pod 'Firebase/ABTesting', :path => '../../'
  23. pod 'Firebase/Database', :path => '../../'
  24. end
  25. target 'ServiceExtension' do
  26. platform :watchos, '7.0'
  27. pod 'FirebaseMessaging', :path => '../../'
  28. end