FirebaseAppCheckInterop.podspec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAppCheckInterop'
  3. s.version = '12.6.0'
  4. s.summary = 'Interfaces that allow other Firebase SDKs to use AppCheck functionality.'
  5. s.description = <<-DESC
  6. Not for public use.
  7. A set of protocols that other Firebase SDKs can use to interoperate with FirebaseAppCheck in a safe
  8. and reliable manner.
  9. DESC
  10. s.homepage = 'https://firebase.google.com'
  11. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  12. s.authors = 'Google, Inc.'
  13. # NOTE that these should not be used externally, this is for Firebase pods to depend on each
  14. # other.
  15. s.source = {
  16. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  17. :tag => 'CocoaPods-' + s.version.to_s
  18. }
  19. s.social_media_url = 'https://twitter.com/Firebase'
  20. ios_deployment_target = '15.0'
  21. osx_deployment_target = '10.15'
  22. tvos_deployment_target = '15.0'
  23. watchos_deployment_target = '7.0'
  24. s.ios.deployment_target = ios_deployment_target
  25. s.osx.deployment_target = osx_deployment_target
  26. s.tvos.deployment_target = tvos_deployment_target
  27. s.watchos.deployment_target = watchos_deployment_target
  28. s.source_files = 'FirebaseAppCheck/Interop/**/*.[hm]'
  29. s.public_header_files = 'FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/*.h'
  30. s.test_spec 'objc-unit' do |unit_tests|
  31. unit_tests.platforms = {
  32. :ios => ios_deployment_target,
  33. :osx => osx_deployment_target,
  34. :tvos => tvos_deployment_target
  35. }
  36. unit_tests.source_files = [
  37. 'FirebaseAppCheck/Tests/Interop/ObjC/**/*.[hm]',
  38. ]
  39. end
  40. s.test_spec 'swift-unit' do |swift_unit_tests|
  41. swift_unit_tests.platforms = {
  42. :ios => ios_deployment_target,
  43. :osx => osx_deployment_target,
  44. :tvos => tvos_deployment_target
  45. }
  46. swift_unit_tests.source_files = [
  47. 'FirebaseAppCheck/Tests/Interop/Swift/**/*.swift',
  48. ]
  49. end
  50. end