FirebaseAuthExchange.podspec 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAuthExchange'
  3. s.version = '10.2.0'
  4. s.summary = 'Apple platform client for Firebase Authentication Exchange'
  5. s.description = <<-DESC
  6. Firebase Authentication Exchange allows you to bring your own Customer Identity Access Management (CIAM) solution to the Firebase ecosystem.
  7. DESC
  8. s.homepage = 'https://firebase.google.com'
  9. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'CocoaPods-' + s.version.to_s
  14. }
  15. s.social_media_url = 'https://twitter.com/Firebase'
  16. ios_deployment_target = '11.0'
  17. osx_deployment_target = '10.13'
  18. tvos_deployment_target = '12.0'
  19. watchos_deployment_target = '6.0'
  20. s.swift_version = '5.6'
  21. s.ios.deployment_target = ios_deployment_target
  22. s.osx.deployment_target = osx_deployment_target
  23. s.tvos.deployment_target = tvos_deployment_target
  24. s.watchos.deployment_target = watchos_deployment_target
  25. s.cocoapods_version = '>= 1.4.0'
  26. s.prefix_header_file = false
  27. s.source_files = [
  28. 'FirebaseAuthExchange/Interop/*.swift',
  29. 'FirebaseAuthExchange/Sources/**/*.swift',
  30. ]
  31. s.pod_target_xcconfig = {
  32. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  33. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
  34. }
  35. s.dependency 'FirebaseCore', '~> 10.0'
  36. s.dependency 'FirebaseCoreExtension', '~> 10.0'
  37. s.test_spec 'UnitTests' do |unit_tests|
  38. unit_tests.scheme = { :code_coverage => true }
  39. unit_tests.platforms = {
  40. :ios => ios_deployment_target,
  41. :osx => osx_deployment_target,
  42. :tvos => tvos_deployment_target
  43. }
  44. unit_tests.source_files = 'FirebaseAuthExchange/Tests/Unit/**/*.swift'
  45. end
  46. end