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