Skip to content

Commit 2264982

Browse files
authored
Remove GoogleSignInSwift from binary distros (#9948)
1 parent 6c8a010 commit 2264982

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

FirebaseCore/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Firebase 9.3.0
2+
- [fixed] Remove GoogleSignInSwiftSupport from Zip and Carthage distributions due to
3+
infeasibility. The GoogleSignIn distribution continues. (#9937)
4+
15
# Firebase 9.2.0
26
- [added] Zip and Carthage distributions now include GoogleSignInSwiftSupport. (#9900)
37

ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ struct ZipBuilder {
328328
podsToInstall.append(CocoaPodUtils.VersionedPod(name: "Google-Mobile-Ads-SDK",
329329
version: nil,
330330
platforms: ["ios"]))
331-
podsToInstall.append(CocoaPodUtils.VersionedPod(name: "GoogleSignInSwiftSupport",
331+
podsToInstall.append(CocoaPodUtils.VersionedPod(name: "GoogleSignIn",
332332
version: nil,
333333
platforms: ["ios"]))
334334

@@ -440,7 +440,7 @@ struct ZipBuilder {
440440
// Skip Analytics and the pods bundled with it.
441441
let remainingPods = installedPods.filter {
442442
$0.key == "Google-Mobile-Ads-SDK" ||
443-
$0.key == "GoogleSignInSwiftSupport" ||
443+
$0.key == "GoogleSignIn" ||
444444
(firebaseZipPods.contains($0.key) &&
445445
$0.key != "FirebaseAnalyticsSwift" &&
446446
$0.key != "Firebase" &&
@@ -686,7 +686,7 @@ struct ZipBuilder {
686686
/// Describes the dependency on other frameworks for the README file.
687687
func readmeHeader(podName: String) -> String {
688688
var header = "## \(podName)"
689-
if !(podName == "FirebaseAnalytics" || podName == "GoogleSignInSwiftSupport") {
689+
if !(podName == "FirebaseAnalytics" || podName == "GoogleSignIn") {
690690
header += " (~> FirebaseAnalytics)"
691691
}
692692
header += "\n"

0 commit comments

Comments
 (0)