PaulTestBeta.podspec 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Pod::Spec.new do |s|
  2. s.name = 'PaulTestBeta'
  3. s.version = '1.0.1-beta'
  4. s.summary = 'Google Utilities for iOS (plus community support for macOS and tvOS)'
  5. s.description = <<-DESC
  6. Internal Google Utilities including Network, Reachability Environment, Logger and Swizzling for
  7. other Google CocoaPods. They're not intended for direct public usage.
  8. DESC
  9. s.homepage = 'https://github.com/firebase/firebase-ios-sdk/tree/master/GoogleUtilities'
  10. s.license = { :type => 'Apache', :file => 'GoogleUtilities/LICENSE' }
  11. s.authors = 'Google, Inc.'
  12. s.source = {
  13. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  14. :tag => 'BetaTest-' + s.version.to_s
  15. }
  16. s.ios.deployment_target = '9.0'
  17. s.osx.deployment_target = '10.12'
  18. s.tvos.deployment_target = '10.0'
  19. s.watchos.deployment_target = '6.0'
  20. s.cocoapods_version = '>= 1.4.0'
  21. s.prefix_header_file = false
  22. s.pod_target_xcconfig = {
  23. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  24. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
  25. }
  26. s.subspec 'Environment' do |es|
  27. es.source_files = 'GoogleUtilities/Environment/**/*.[mh]'
  28. es.public_header_files = 'GoogleUtilities/Environment/Public/GoogleUtilities/*.h'
  29. es.dependency 'PromisesObjC', '~> 1.2'
  30. end
  31. end