Podfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '13.0'
  3. target 'AuthenticationExample' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. # Pods for AuthenticationExample
  7. ## Firebase 🔥 Pods
  8. pod 'FirebaseCore', :path => '../../../'
  9. pod 'FirebaseCoreInternal', :path => '../../../'
  10. pod 'FirebaseCoreExtension', :path => '../../../'
  11. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  12. pod 'FirebaseInstallations', :path => '../../..'
  13. pod 'FirebaseAuthInterop', :path => '../../..'
  14. pod 'FirebaseAppCheckInterop', :path => '../../..'
  15. pod 'RecaptchaEnterprise', '~> 18.3'
  16. ## Pod for Sign in with Google
  17. pod 'GoogleSignIn'
  18. ## Pod for Sign in with Facebook
  19. pod 'FBSDKLoginKit', '< 13'
  20. target 'SwiftApiTests' do
  21. inherit! :search_paths
  22. # Pods for testing
  23. end
  24. target 'ObjCApiTests' do
  25. inherit! :search_paths
  26. # Pods for testing
  27. end
  28. target 'AuthenticationExampleUITests' do
  29. # Pods for testing
  30. end
  31. end