@@ -399,8 +399,7 @@ struct ZipBuilder {
399
399
// Skip the Firebase pod, any Interop pods, and specifically ignored frameworks.
400
400
guard podName != " Firebase " ,
401
401
!podName. contains ( " Interop " ) ,
402
- !podsToIgnore. contains ( podName) ,
403
- podName != " FirebaseInAppMessagingDisplay " else {
402
+ !podsToIgnore. contains ( podName) else {
404
403
continue
405
404
}
406
405
@@ -579,7 +578,7 @@ struct ZipBuilder {
579
578
// Get the expected versions based on the release manifests, if there are any. We'll use this to
580
579
// validate the versions pulled from CocoaPods. Expected versions could be empty, in which case
581
580
// validation succeeds.
582
- let expected = expectedVersions ( ) . filter { $0 . key != " FirebaseInAppMessagingDisplay " }
581
+ let expected = expectedVersions ( )
583
582
if !expected. isEmpty {
584
583
// Loop through the expected versions and verify the actual versions match.
585
584
for podName in expected. keys {
@@ -695,11 +694,9 @@ struct ZipBuilder {
695
694
var toInstall : [ String : [ URL ] ] = [ : ]
696
695
for (podName, podInfo) in pods {
697
696
var frameworks : [ URL ] = [ ]
698
- // Ignore any Interop pods or the Firebase umbrella pod. Also ignore the InAppMessagingDisplay
699
- // pod since it doesn't have any source files to compile, only an empty header.
697
+ // Ignore any Interop pods or the Firebase umbrella pod.
700
698
guard !podName. contains ( " Interop " ) ,
701
- podName != " Firebase " ,
702
- podName != " FirebaseInAppMessagingDisplay " else {
699
+ podName != " Firebase " else {
703
700
continue
704
701
}
705
702
0 commit comments