@@ -385,9 +385,8 @@ struct ZipBuilder {
385
385
// Loop through each installedPod item and get the name so we can fetch the framework and copy
386
386
// it to the destination directory.
387
387
for podName in installedPods {
388
- // Skip the Firebase pod, any Interop pods, and specifically ignored frameworks.
388
+ // Skip the Firebase pod and specifically ignored frameworks.
389
389
guard podName != " Firebase " ,
390
- !podName. contains ( " Interop " ) ,
391
390
!podsToIgnore. contains ( podName) else {
392
391
continue
393
392
}
@@ -557,9 +556,8 @@ struct ZipBuilder {
557
556
. duplicateFrameworksToRemove ( pod: podName) )
558
557
559
558
let copiedFrameworks = namedFrameworks. filter {
560
- // Only return the frameworks that aren't contained in the "podsToIgnore" array, aren't an
561
- // interop framework (since they don't compile to frameworks), or the Firebase pod itself.
562
- !( podsToIgnore. contains ( $0) || $0. hasSuffix ( " Interop " ) || $0 == " Firebase " )
559
+ // Skip frameworks that aren't contained in the "podsToIgnore" array and the Firebase pod.
560
+ !( podsToIgnore. contains ( $0) || $0 == " Firebase " )
563
561
}
564
562
565
563
return ( productDir, copiedFrameworks)
@@ -688,9 +686,8 @@ struct ZipBuilder {
688
686
for (podName, podInfo) in pods {
689
687
var frameworks : [ URL ] = [ ]
690
688
var carthageFrameworks : [ URL ] = [ ]
691
- // Ignore any Interop pods or the Firebase umbrella pod.
692
- guard !podName. contains ( " Interop " ) ,
693
- podName != " Firebase " else {
689
+ // Ignore the Firebase umbrella pod.
690
+ guard podName != " Firebase " else {
694
691
continue
695
692
}
696
693
0 commit comments