Podfile 610 B

123456789101112131415161718192021
  1. use_frameworks!
  2. target 'SampleWatchAppWatchKitExtension' do
  3. platform :watchos, '6.0'
  4. pod 'FirebaseCore', :path => '../../'
  5. pod 'GoogleUtilities', :path => '../../'
  6. pod 'FirebaseMessaging', :path => '../../'
  7. pod 'FirebaseInstanceID', :path => '../../'
  8. pod 'FirebaseCoreDiagnostics', :path => '../../'
  9. pod 'GoogleDataTransport', :path => '../../'
  10. pod 'FirebaseInstallations', :path => '../../'
  11. pod 'FirebaseStorage', :path => '../../'
  12. end
  13. target 'ServiceExtension' do
  14. platform :watchos, '6.0'
  15. pod 'FirebaseMessaging', :path => '../../'
  16. pod 'FirebaseInstanceID', :path => '../../'
  17. end