Podfile 933 B

123456789101112131415161718192021222324252627282930313233
  1. #use_frameworks!
  2. use_frameworks! :linkage => :static
  3. source 'https://github.com/firebase/SpecsStaging.git'
  4. source 'https://cdn.cocoapods.org/'
  5. target 'Sample' do
  6. platform :ios, '13.0'
  7. pod 'FirebaseCore', :path => '../../../'
  8. pod 'GoogleUtilities', :path => '../../../'
  9. pod 'FirebaseMessaging', :path => '../../../'
  10. pod 'FirebaseInstanceID', :path => '../../../'
  11. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  12. pod 'GoogleDataTransport', :path => '../../../'
  13. pod 'FirebaseInstallations', :path => '../../../'
  14. end
  15. target 'MyAppClip' do
  16. platform :ios, '13.0'
  17. pod 'FirebaseCore', :path => '../../../'
  18. pod 'GoogleUtilities', :path => '../../../'
  19. pod 'FirebaseMessaging', :path => '../../../'
  20. pod 'FirebaseInstanceID', :path => '../../../'
  21. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  22. pod 'GoogleDataTransport', :path => '../../../'
  23. pod 'FirebaseInstallations', :path => '../../../'
  24. end