Podfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ### For Email Link/Passwordless Auth
  17. pod 'FirebaseDynamicLinks', :path => '../../..'
  18. ## Pod for Sign in with Google
  19. pod 'GoogleSignIn'
  20. ## Pod for Sign in with Facebook
  21. pod 'FBSDKLoginKit', '< 13'
  22. target 'SwiftApiTests' do
  23. inherit! :search_paths
  24. # Pods for testing
  25. end
  26. target 'ObjCApiTests' do
  27. inherit! :search_paths
  28. # Pods for testing
  29. end
  30. target 'AuthenticationExampleUITests' do
  31. # Pods for testing
  32. end
  33. end