FirebaseAppCheckInterop.podspec 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseAppCheckInterop'
  3. s.version = '11.10.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. ios_deployment_target = '13.0'
  20. osx_deployment_target = '10.15'
  21. tvos_deployment_target = '13.0'
  22. watchos_deployment_target = '7.0'
  23. s.ios.deployment_target = ios_deployment_target
  24. s.osx.deployment_target = osx_deployment_target
  25. s.tvos.deployment_target = tvos_deployment_target
  26. s.watchos.deployment_target = watchos_deployment_target
  27. s.source_files = 'FirebaseAppCheck/Interop/**/*.[hm]'
  28. s.public_header_files = 'FirebaseAppCheck/Interop/Public/FirebaseAppCheckInterop/*.h'
  29. s.test_spec 'objc-unit' do |unit_tests|
  30. unit_tests.platforms = {
  31. :ios => ios_deployment_target,
  32. :osx => osx_deployment_target,
  33. :tvos => tvos_deployment_target
  34. }
  35. unit_tests.source_files = [
  36. 'FirebaseAppCheck/Tests/Interop/ObjC/**/*.[hm]',
  37. ]
  38. end
  39. s.test_spec 'swift-unit' do |swift_unit_tests|
  40. swift_unit_tests.platforms = {
  41. :ios => ios_deployment_target,
  42. :osx => osx_deployment_target,
  43. :tvos => tvos_deployment_target
  44. }
  45. swift_unit_tests.source_files = [
  46. 'FirebaseAppCheck/Tests/Interop/Swift/**/*.swift',
  47. ]
  48. end
  49. end