FirebaseVertexAI-Docs.podspec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Pod::Spec.new do |s|
  2. s.name = 'FirebaseVertexAI'
  3. s.version = '0.1.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. :tag => 'vertexai-preview-0.1.0'
  14. }
  15. s.social_media_url = 'https://twitter.com/Firebase'
  16. ios_deployment_target = '15.0'
  17. osx_deployment_target = '10.14'
  18. s.ios.deployment_target = ios_deployment_target
  19. s.osx.deployment_target = osx_deployment_target
  20. s.cocoapods_version = '>= 1.12.0'
  21. s.prefix_header_file = false
  22. s.source_files = [
  23. 'FirebaseVertexAI/Sources/**/*.swift',
  24. 'FirebaseCore/Extension/*.h',
  25. 'FirebaseAuth/Interop/*.h',
  26. ]
  27. s.swift_version = '5.3'
  28. s.framework = 'Foundation'
  29. s.ios.framework = 'UIKit'
  30. s.osx.framework = 'AppKit'
  31. s.tvos.framework = 'UIKit'
  32. s.watchos.framework = 'WatchKit'
  33. s.dependency 'FirebaseCore', '~> 10.0'
  34. s.dependency 'FirebaseCoreExtension'
  35. s.dependency 'FirebaseAppCheckInterop', '~> 10.17'
  36. s.pod_target_xcconfig = {
  37. 'GCC_C_LANGUAGE_STANDARD' => 'c99',
  38. 'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"',
  39. 'OTHER_CFLAGS' => '-fno-autolink'
  40. }
  41. end