FirebaseCore.podspec 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseCore'
  3. s.version = '5.1.6'
  4. s.summary = 'Firebase Core for iOS (plus community support for macOS and tvOS)'
  5. s.description = <<-DESC
  6. Firebase Core includes FIRApp and FIROptions which provide central configuration for other Firebase services.
  7. DESC
  8. s.homepage = 'https://firebase.google.com'
  9. s.license = { :type => 'Apache', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'Core-' + s.version.to_s
  14. }
  15. s.social_media_url = 'https://twitter.com/Firebase'
  16. s.ios.deployment_target = '8.0'
  17. s.osx.deployment_target = '10.10'
  18. s.tvos.deployment_target = '10.0'
  19. s.cocoapods_version = '>= 1.4.0'
  20. s.static_framework = true
  21. s.prefix_header_file = false
  22. s.source_files = 'Firebase/Core/**/*.[mh]'
  23. s.public_header_files = 'Firebase/Core/Public/*.h', 'Firebase/Core/Private/*.h'
  24. s.private_header_files = 'Firebase/Core/Private/*.h'
  25. s.frameworks = [
  26. 'Foundation'
  27. ]
  28. s.dependency 'GoogleUtilities/Logger', '~> 5.2'
  29. s.pod_target_xcconfig = {
  30. 'OTHER_CFLAGS' => '-fno-autolink',
  31. 'GCC_PREPROCESSOR_DEFINITIONS' =>
  32. 'FIRCore_VERSION=' + s.version.to_s + ' Firebase_VERSION=5.11.0'
  33. }
  34. end