Podfile 410 B

12345678910111213141516
  1. use_frameworks! :linkage => :static
  2. source 'https://github.com/firebase/SpecsDev.git'
  3. source 'https://github.com/firebase/SpecsStaging.git'
  4. source 'https://cdn.cocoapods.org/'
  5. def shared_pods
  6. pod 'FirebaseCore', :path => '../../../'
  7. pod 'FirebaseInstallations', :path => '../../../'
  8. pod 'FirebaseAuthExchange', :path => '../../../'
  9. end
  10. target 'ObjcSample' do
  11. platform :ios, '13.0'
  12. shared_pods
  13. end