-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docsgen podspec for VertexAI and clean up some doc comments (#12912)
- Loading branch information
1 parent
b5eef81
commit 25a73ba
Showing
6 changed files
with
76 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'FirebaseVertexAI' | ||
s.version = '10.26.0' | ||
s.summary = 'Firebase VertexAI' | ||
|
||
s.description = <<-DESC | ||
Placeholder podspec for docsgen only. Do not use this pod. | ||
DESC | ||
|
||
s.homepage = 'https://firebase.google.com' | ||
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' } | ||
s.authors = 'Google, Inc.' | ||
|
||
s.source = { | ||
:git => 'https://github.com/firebase/firebase-ios-sdk.git', | ||
# TODO: this should be `'CocoaPods-' + s.version.to_s` (after May 14 2024) | ||
:tag => 'release-10.26' | ||
} | ||
|
||
s.social_media_url = 'https://twitter.com/Firebase' | ||
|
||
ios_deployment_target = '15.0' | ||
osx_deployment_target = '10.14' | ||
|
||
s.ios.deployment_target = ios_deployment_target | ||
s.osx.deployment_target = osx_deployment_target | ||
|
||
s.cocoapods_version = '>= 1.12.0' | ||
s.prefix_header_file = false | ||
|
||
s.source_files = [ | ||
'FirebaseVertexAI/Sources/**/*.swift', | ||
'FirebaseCore/Extension/*.h', | ||
'FirebaseAuth/Interop/*.h', | ||
] | ||
|
||
s.swift_version = '5.3' | ||
|
||
s.framework = 'Foundation' | ||
s.ios.framework = 'UIKit' | ||
s.osx.framework = 'AppKit' | ||
s.tvos.framework = 'UIKit' | ||
s.watchos.framework = 'WatchKit' | ||
|
||
s.dependency 'FirebaseCore', '~> 10.0' | ||
s.dependency 'FirebaseCoreExtension' | ||
s.dependency 'FirebaseAuthInterop' | ||
s.dependency 'FirebaseAppCheckInterop', '~> 10.17' | ||
|
||
s.pod_target_xcconfig = { | ||
'GCC_C_LANGUAGE_STANDARD' => 'c99', | ||
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"', | ||
'OTHER_CFLAGS' => '-fno-autolink' | ||
} | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters