@@ -328,7 +328,7 @@ struct ZipBuilder {
328
328
podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " Google-Mobile-Ads-SDK " ,
329
329
version: nil ,
330
330
platforms: [ " ios " ] ) )
331
- podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " GoogleSignIn " ,
331
+ podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " GoogleSignInSwiftSupport " ,
332
332
version: nil ,
333
333
platforms: [ " ios " ] ) )
334
334
@@ -440,14 +440,15 @@ struct ZipBuilder {
440
440
// Skip Analytics and the pods bundled with it.
441
441
let remainingPods = installedPods. filter {
442
442
$0. key == " Google-Mobile-Ads-SDK " ||
443
- $0. key == " GoogleSignIn " ||
443
+ $0. key == " GoogleSignInSwiftSupport " ||
444
444
( firebaseZipPods. contains ( $0. key) &&
445
445
$0. key != " FirebaseAnalyticsSwift " &&
446
446
$0. key != " Firebase " &&
447
447
podsToInstall. map { $0. name } . contains ( $0. key) )
448
448
} . sorted { $0. key < $1. key }
449
449
for pod in remainingPods {
450
- let folder = pod. key. replacingOccurrences ( of: " Swift " , with: " " )
450
+ let folder = pod. key == " GoogleSignInSwiftSupport " ? " GoogleSignIn " :
451
+ pod. key. replacingOccurrences ( of: " Swift " , with: " " )
451
452
do {
452
453
if frameworksToAssemble [ pod. key] == nil {
453
454
// Continue if the pod wasn't built.
@@ -685,7 +686,7 @@ struct ZipBuilder {
685
686
/// Describes the dependency on other frameworks for the README file.
686
687
func readmeHeader( podName: String ) -> String {
687
688
var header = " ## \( podName) "
688
- if !( podName == " FirebaseAnalytics " || podName == " GoogleSignIn " ) {
689
+ if !( podName == " FirebaseAnalytics " || podName == " GoogleSignInSwiftSupport " ) {
689
690
header += " (~> FirebaseAnalytics) "
690
691
}
691
692
header += " \n "
0 commit comments