Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions FirebaseVertexAI.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'FirebaseVertexAI'
s.version = '11.4.0-beta'
s.summary = 'Vertex AI in Firebase - Public Preview'
s.version = '11.4.0'
s.summary = 'Vertex AI in Firebase SDK'

s.description = <<-DESC
[Public Preview] Build AI-powered apps and features with the Gemini API using
the Vertex AI in Firebase SDK.
Build AI-powered apps and features with the Gemini API using the Vertex AI in
Firebase SDK.
DESC

s.homepage = 'https://firebase.google.com'
Expand All @@ -20,7 +20,7 @@ the Vertex AI in Firebase SDK.
s.social_media_url = 'https://twitter.com/Firebase'

ios_deployment_target = '15.0'
osx_deployment_target = '11.0'
osx_deployment_target = '12.0'
tvos_deployment_target = '15.0'
watchos_deployment_target = '8.0'

Expand All @@ -44,10 +44,10 @@ the Vertex AI in Firebase SDK.
s.tvos.framework = 'UIKit'
s.watchos.framework = 'WatchKit'

s.dependency 'FirebaseAppCheckInterop', '~> 11.2'
s.dependency 'FirebaseAuthInterop', '~> 11.2'
s.dependency 'FirebaseCore', '~> 11.2'
s.dependency 'FirebaseCoreExtension', '~> 11.2'
s.dependency 'FirebaseAppCheckInterop', '~> 11.4'
s.dependency 'FirebaseAuthInterop', '~> 11.4'
s.dependency 'FirebaseCore', '~> 11.4'
s.dependency 'FirebaseCoreExtension', '~> 11.4'

s.test_spec 'unit' do |unit_tests|
unit_tests_dir = 'FirebaseVertexAI/Tests/Unit/'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public let shared = Manifest(
Pod("FirebasePerformance", platforms: ["ios", "tvos"], zip: true),
Pod("FirebaseStorage", zip: true),
Pod("FirebaseMLModelDownloader", isBeta: true, zip: true),
Pod("FirebaseVertexAI", isBeta: true, zip: true),
Pod("FirebaseVertexAI", zip: true),
Pod("Firebase", allowWarnings: true, platforms: ["ios", "tvos", "macos"], zip: true),
]
)
Expand Down
2 changes: 1 addition & 1 deletion ReleaseTooling/Sources/ZipBuilder/Platform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ enum PlatformMinimum {
/// for the minimum version specified in the podspec.
static func useRecentVersions() {
minimumIOSVersion = "15.0"
minimumMacOSVersion = "11.0"
minimumMacOSVersion = "12.0"
minimumTVOSVersion = "15.0"
minimumWatchOSVersion = "8.0"
}
Expand Down
Loading