FirebaseVertexAI-Docs.podspec 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseVertexAI'
  3. s.version = '10.26.0'
  4. s.summary = 'Firebase VertexAI'
  5. s.description = <<-DESC
  6. Placeholder podspec for docsgen only. Do not use this pod.
  7. DESC
  8. s.homepage = 'https://firebase.google.com'
  9. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  10. s.authors = 'Google, Inc.'
  11. s.source = {
  12. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  13. # TODO: this should be `'CocoaPods-' + s.version.to_s` (after May 14 2024)
  14. :tag => 'release-10.26'
  15. }
  16. s.social_media_url = 'https://twitter.com/Firebase'
  17. ios_deployment_target = '15.0'
  18. osx_deployment_target = '10.14'
  19. s.ios.deployment_target = ios_deployment_target
  20. s.osx.deployment_target = osx_deployment_target
  21. s.cocoapods_version = '>= 1.12.0'
  22. s.prefix_header_file = false
  23. s.source_files = [
  24. 'FirebaseVertexAI/Sources/**/*.swift',
  25. 'FirebaseCore/Extension/*.h',
  26. 'FirebaseAuth/Interop/*.h',
  27. ]
  28. s.swift_version = '5.3'
  29. s.framework = 'Foundation'
  30. s.ios.framework = 'UIKit'
  31. s.osx.framework = 'AppKit'
  32. s.tvos.framework = 'UIKit'
  33. s.watchos.framework = 'WatchKit'
  34. s.dependency 'FirebaseCore', '~> 10.0'
  35. s.dependency 'FirebaseCoreExtension'
  36. s.dependency 'FirebaseAuthInterop'
  37. s.dependency 'FirebaseAppCheckInterop', '~> 10.17'
  38. s.pod_target_xcconfig = {
  39. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  40. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
  41. 'OTHER_CFLAGS' => '-fno-autolink'
  42. }
  43. end