FirebaseVertexAI-Docs.not_podspec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. NOTE: Rename the file extension from `.not_podspec` to `.podspec` before
  8. running `pod gen` for docs generation.
  9. DESC
  10. s.homepage = 'https://firebase.google.com'
  11. s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
  12. s.authors = 'Google, Inc.'
  13. s.source = {
  14. :git => 'https://github.com/firebase/firebase-ios-sdk.git',
  15. # TODO: this should be `'CocoaPods-' + s.version.to_s` (after May 14 2024)
  16. :tag => 'release-10.26'
  17. }
  18. s.social_media_url = 'https://twitter.com/Firebase'
  19. ios_deployment_target = '15.0'
  20. osx_deployment_target = '10.14'
  21. s.ios.deployment_target = ios_deployment_target
  22. s.osx.deployment_target = osx_deployment_target
  23. s.cocoapods_version = '>= 1.12.0'
  24. s.prefix_header_file = false
  25. s.source_files = [
  26. 'FirebaseVertexAI/Sources/**/*.swift',
  27. 'FirebaseCore/Extension/*.h',
  28. 'FirebaseAuth/Interop/*.h',
  29. ]
  30. s.swift_version = '5.3'
  31. s.framework = 'Foundation'
  32. s.ios.framework = 'UIKit'
  33. s.osx.framework = 'AppKit'
  34. s.tvos.framework = 'UIKit'
  35. s.watchos.framework = 'WatchKit'
  36. s.dependency 'FirebaseCore', '~> 10.0'
  37. s.dependency 'FirebaseCoreExtension'
  38. s.dependency 'FirebaseAuthInterop'
  39. s.dependency 'FirebaseAppCheckInterop', '~> 10.17'
  40. s.pod_target_xcconfig = {
  41. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  42. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
  43. 'OTHER_CFLAGS' => '-fno-autolink'
  44. }
  45. end