Skip to content

Commit

Permalink
[Vertex AI] Add pod to FirebaseManifest (#13586)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheard authored Sep 9, 2024
1 parent 3e2c79d commit 3d035c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions ReleaseTooling/CarthageJSON/FirebaseVertexAIBinary.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +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, allowWarnings: true, zip: true),
Pod("Firebase", allowWarnings: true, platforms: ["ios", "tvos", "macos"], zip: true),
]
)
Expand Down
4 changes: 2 additions & 2 deletions ReleaseTooling/Sources/ZipBuilder/Platform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ enum PlatformMinimum {
/// Useful to disable minimum version checking on pod installation. Pods still get built with
/// for the minimum version specified in the podspec.
static func useRecentVersions() {
minimumIOSVersion = "14.0"
minimumIOSVersion = "15.0"
minimumMacOSVersion = "11.0"
minimumTVOSVersion = "14.0"
minimumTVOSVersion = "15.0"
minimumWatchOSVersion = "8.0"
}
}
Expand Down

0 comments on commit 3d035c1

Please sign in to comment.