Browse Source

Remove GoogleSignInSwift from binary distros (#9948)

Paul Beusterien 3 years ago
parent
commit
2264982f76
2 changed files with 7 additions and 3 deletions
  1. 4 0
      FirebaseCore/CHANGELOG.md
  2. 3 3
      ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

+ 4 - 0
FirebaseCore/CHANGELOG.md

@@ -1,3 +1,7 @@
+# Firebase 9.3.0
+- [fixed] Remove GoogleSignInSwiftSupport from Zip and Carthage distributions due to
+  infeasibility. The GoogleSignIn distribution continues. (#9937)
+
 # Firebase 9.2.0
 - [added] Zip and Carthage distributions now include GoogleSignInSwiftSupport. (#9900)
 

+ 3 - 3
ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

@@ -328,7 +328,7 @@ struct ZipBuilder {
     podsToInstall.append(CocoaPodUtils.VersionedPod(name: "Google-Mobile-Ads-SDK",
                                                     version: nil,
                                                     platforms: ["ios"]))
-    podsToInstall.append(CocoaPodUtils.VersionedPod(name: "GoogleSignInSwiftSupport",
+    podsToInstall.append(CocoaPodUtils.VersionedPod(name: "GoogleSignIn",
                                                     version: nil,
                                                     platforms: ["ios"]))
 
@@ -440,7 +440,7 @@ struct ZipBuilder {
     // Skip Analytics and the pods bundled with it.
     let remainingPods = installedPods.filter {
       $0.key == "Google-Mobile-Ads-SDK" ||
-        $0.key == "GoogleSignInSwiftSupport" ||
+        $0.key == "GoogleSignIn" ||
         (firebaseZipPods.contains($0.key) &&
           $0.key != "FirebaseAnalyticsSwift" &&
           $0.key != "Firebase" &&
@@ -686,7 +686,7 @@ struct ZipBuilder {
   /// Describes the dependency on other frameworks for the README file.
   func readmeHeader(podName: String) -> String {
     var header = "## \(podName)"
-    if !(podName == "FirebaseAnalytics" || podName == "GoogleSignInSwiftSupport") {
+    if !(podName == "FirebaseAnalytics" || podName == "GoogleSignIn") {
       header += " (~> FirebaseAnalytics)"
     }
     header += "\n"