HeartbeatLoggingTestUtils.podspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Pod::Spec.new do |s|
  2. s.name = 'HeartbeatLoggingTestUtils'
  3. s.version = '8.11.0'
  4. s.summary = 'Testing utilities for testing the HeartbeatLogging module'
  5. s.description = <<-DESC
  6. Type declarations and utilities needed for unit testing the HeartbeatLogging module.
  7. This podspec is for internal testing only and should not be published.
  8. DESC
  9. s.homepage = 'https://developers.google.com/'
  10. s.license = { :type => 'Apache', :file => 'LICENSE' }
  11. s.authors = 'Google, Inc.'
  12. s.source = {
  13. :git => 'https://github.com/Firebase/firebase-ios-sdk.git',
  14. :tag => 'CocoaPods-' + s.version.to_s
  15. }
  16. s.swift_version = '5.3'
  17. s.cocoapods_version = '>= 1.4.0'
  18. s.prefix_header_file = false
  19. ios_deployment_target = '9.0'
  20. osx_deployment_target = '10.12'
  21. tvos_deployment_target = '10.0'
  22. watchos_deployment_target = '6.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.ios.deployment_target = ios_deployment_target
  28. s.osx.deployment_target = osx_deployment_target
  29. s.tvos.deployment_target = tvos_deployment_target
  30. s.watchos.deployment_target = watchos_deployment_target
  31. s.source_files = [
  32. 'HeartbeatLoggingTestUtils/Sources/**/*.swift',
  33. ]
  34. s.dependency 'FirebaseCore', '~> 8.11'
  35. s.framework = 'XCTest'
  36. end