Podfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. def shared_pods
  4. pod 'FirebaseCore', :path => '../../../'
  5. pod 'FirebaseInstallations', :path => '../../../'
  6. pod 'FirebaseCoreInternal', :path => '../../../'
  7. pod 'FirebaseCoreExtension', :path => '../../../'
  8. pod 'FirebaseRemoteConfigInterop', :path => '../../../'
  9. pod 'FirebasePerformance', :path => '../../../'
  10. end
  11. target 'FeatureRolloutsTestApp_iOS' do
  12. platform :ios, '11.0'
  13. # Comment the next line if you don't want to use dynamic frameworks
  14. use_frameworks!
  15. shared_pods
  16. end
  17. target 'FeatureRolloutsTestApp_Crashlytics_iOS' do
  18. platform :ios, '11.0'
  19. # Comment the next line if you don't want to use dynamic frameworks
  20. use_frameworks!
  21. shared_pods
  22. pod 'FirebaseCrashlytics', :path => '../../../'
  23. end
  24. target 'FeatureRolloutsTestApp_RemoteConfig_iOS' do
  25. platform :ios, '11.0'
  26. # Comment the next line if you don't want to use dynamic frameworks
  27. use_frameworks!
  28. shared_pods
  29. pod 'FirebaseRemoteConfig', :path => '../../../'
  30. end
  31. target 'FeatureRolloutsTestApp_CrashlyticsRemoteConfig_iOS' do
  32. platform :ios, '11.0'
  33. # Comment the next line if you don't want to use dynamic frameworks
  34. use_frameworks!
  35. shared_pods
  36. pod 'FirebaseCrashlytics', :path => '../../../'
  37. pod 'FirebaseRemoteConfig', :path => '../../../'
  38. end