HeartbeatLoggingTestUtils.podspec 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Pod::Spec.new do |s|
  2. s.name = 'HeartbeatLoggingTestUtils'
  3. s.version = '9.0.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-2.0', :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.pod_target_xcconfig = {
  17. 'ENABLE_TESTING_SEARCH_PATHS'=>'YES'
  18. }
  19. s.swift_version = '5.3'
  20. s.ios.deployment_target = '9.0'
  21. s.osx.deployment_target = '10.12'
  22. s.tvos.deployment_target = '10.0'
  23. s.watchos.deployment_target = '6.0'
  24. s.source_files = [
  25. 'HeartbeatLoggingTestUtils/Sources/**/*.swift',
  26. ]
  27. s.framework = 'XCTest'
  28. s.dependency 'FirebaseCoreInternal', '~> 9.0'
  29. end