FirebaseFirestore.podspec 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseFirestore'
  3. s.version = '12.6.0'
  4. s.summary = 'Google Cloud Firestore'
  5. s.description = <<-DESC
  6. Google Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
  7. DESC
  8. s.homepage = 'https://developers.google.com/'
  9. s.license = { :type => 'Apache-2.0', :file => 'Firestore/LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. :tag => 'CocoaPods-' + s.version.to_s
  14. }
  15. s.ios.deployment_target = '15.0'
  16. s.osx.deployment_target = '10.15'
  17. s.tvos.deployment_target = '15.0'
  18. s.swift_version = '5.9'
  19. s.weak_framework = 'FirebaseFirestoreInternal'
  20. s.cocoapods_version = '>= 1.12.0'
  21. s.prefix_header_file = false
  22. s.public_header_files = 'FirebaseFirestoreInternal/**/*.h'
  23. s.requires_arc = true
  24. s.source_files = [
  25. 'FirebaseFirestoreInternal/**/*.[mh]',
  26. 'Firestore/Swift/Source/**/*.swift',
  27. ]
  28. s.resource_bundles = {
  29. "#{s.module_name}_Privacy" => 'Firestore/Swift/Source/Resources/PrivacyInfo.xcprivacy'
  30. }
  31. s.dependency 'FirebaseCore', '~> 12.6.0'
  32. s.dependency 'FirebaseCoreExtension', '~> 12.6.0'
  33. s.dependency 'FirebaseFirestoreInternal', '~> 12.6.0'
  34. s.dependency 'FirebaseSharedSwift', '~> 12.6.0'
  35. end