Podfile 985 B

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