Skip to content

Commit 0058b25

Browse files
authored
Remove deprecated FIAMDisplay from repo (#4899)
1 parent eb69dcc commit 0058b25

File tree

10 files changed

+13
-77
lines changed

10 files changed

+13
-77
lines changed

Carthage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFirestoreBinary.j
4040
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFunctionsBinary.json"
4141
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseGoogleSignInBinary.json"
4242
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseInAppMessagingBinary.json"
43-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseInAppMessagingDisplayBinary.json"
4443
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseMessagingBinary.json"
4544
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseMLModelInterpreterBinary.json"
4645
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseMLNLLanguageIDBinary.json"

CoreOnly/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ CocoaPods is used to install and manage dependencies in existing Xcode projects.
6060
pod 'Firebase/Firestore'
6161
pod 'Firebase/Functions'
6262
pod 'Firebase/InAppMessaging'
63-
pod 'Firebase/InAppMessagingDisplay'
6463
pod 'Firebase/Messaging'
6564
pod 'Firebase/MLCommon'
6665
pod 'Firebase/MLModelInterpreter'

CoreOnly/Tests/FirebasePodTest/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ target 'FirebasePodTest' do
1919
pod 'FirebaseFirestore', :path => '../../../'
2020
pod 'FirebaseFunctions', :path => '../../../'
2121
pod 'FirebaseInAppMessaging', :path => '../../../'
22-
pod 'FirebaseInAppMessagingDisplay', :path => '../../../'
2322
pod 'FirebaseInstallations', :path => '../../../'
2423
pod 'FirebaseInstanceID', :path => '../../../'
2524
pod 'FirebaseMessaging', :path => '../../../'

FirebaseInAppMessagingDisplay.podspec

Lines changed: 0 additions & 37 deletions
This file was deleted.

FirebaseInAppMessagingDisplay/Sources/FirebaseInAppMessagingDisplay.h

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66
[![Actions Status][gh-zip-badge]][gh-actions]
77
[![Travis](https://travis-ci.org/firebase/firebase-ios-sdk.svg?branch=master)](https://travis-ci.org/firebase/firebase-ios-sdk)
88

9-
This repository contains a subset of the Firebase iOS SDK source. It currently
10-
includes FirebaseCore, FirebaseABTesting, FirebaseAuth, FirebaseDatabase,
11-
FirebaseFirestore, FirebaseFunctions, FirebaseInstanceID, FirebaseInAppMessaging,
12-
FirebaseInAppMessagingDisplay, FirebaseMessaging, FirebaseRemoteConfig, and
13-
FirebaseStorage.
9+
This repository contains all Firebase iOS SDK source except FirebaseAnalytics,
10+
FirebasePerformance, and FirebaseML.
1411

1512
The repository also includes GoogleUtilities source. The
1613
[GoogleUtilities](GoogleUtilities/README.md) pod is

Rome.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ Then do the following steps:
8383
`Copy Bundle Resources` Build Phase :
8484
- For Firestore:
8585
- ./Rome/GRPCClient.framework/gRPCCertificates.bundle
86-
- For InAppMessagingDisplay:
87-
- ./Rome/FirebaseInAppMessagingDisplay.framework/InAppMessagingDisplayResources.bundle
86+
- For InAppMessaging:
87+
- ./Rome/FirebaseInAppMessaging.framework/InAppMessagingDisplayResources.bundle
8888
- For FirebaseMLVisionFaceModel:
8989
- ./Pods/GoogleMobileVision/FaceDetector/Resources/GoogleMVFaceDetectorResources
9090
- For FirebaseMLVisionTextModel:

SymbolCollisionTest/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ target 'SymbolCollisionTest' do
1818
pod 'FirebaseFirestore', :path => '../'
1919
pod 'FirebaseFunctions', :path => '../'
2020
pod 'FirebaseInAppMessaging', :path => '../'
21-
pod 'FirebaseInAppMessagingDisplay', :path => '../'
2221
pod 'FirebaseInstanceID', :path => '../'
2322
pod 'FirebaseInstallations', :path => '../'
2423
pod 'FirebaseMessaging', :path => '../'

ZipBuilder/Sources/ZipBuilder/ZipBuilder.swift

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,7 @@ struct ZipBuilder {
399399
// Skip the Firebase pod, any Interop pods, and specifically ignored frameworks.
400400
guard podName != "Firebase",
401401
!podName.contains("Interop"),
402-
!podsToIgnore.contains(podName),
403-
podName != "FirebaseInAppMessagingDisplay" else {
402+
!podsToIgnore.contains(podName) else {
404403
continue
405404
}
406405

@@ -579,7 +578,7 @@ struct ZipBuilder {
579578
// Get the expected versions based on the release manifests, if there are any. We'll use this to
580579
// validate the versions pulled from CocoaPods. Expected versions could be empty, in which case
581580
// validation succeeds.
582-
let expected = expectedVersions().filter { $0.key != "FirebaseInAppMessagingDisplay" }
581+
let expected = expectedVersions()
583582
if !expected.isEmpty {
584583
// Loop through the expected versions and verify the actual versions match.
585584
for podName in expected.keys {
@@ -695,11 +694,9 @@ struct ZipBuilder {
695694
var toInstall: [String: [URL]] = [:]
696695
for (podName, podInfo) in pods {
697696
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.
700698
guard !podName.contains("Interop"),
701-
podName != "Firebase",
702-
podName != "FirebaseInAppMessagingDisplay" else {
699+
podName != "Firebase" else {
703700
continue
704701
}
705702

scripts/if_changed.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ else
5151
'FirebaseAnalyticsInterop.podspec|FirebaseAuth.podspec|FirebaseAuthInterop.podspec|'\
5252
'FirebaseCoreDiagnostics.podspec|FirebaseCoreDiagnosticsInterop.podspec|'\
5353
'FirebaseDatabase.podspec|FirebaseDynamicLinks.podspec|FirebaseMessaging.podspec|'\
54-
'FirebaseStorage.podspec|Firebase/InAppMessagingDisplay|'\
55-
'InAppMessagingDisplay|InAppMessaging|Firebase/InAppMessaging|'\
56-
'FirebaseInAppMessaging.podspec|FirebaseInAppMessagingDisplay.podspec|'\
54+
'FirebaseStorage.podspec|'\
55+
'InAppMessaging|Firebase/InAppMessaging|'\
56+
'FirebaseInAppMessaging.podspec|'\
5757
'Firebase/InstanceID|FirebaseInstanceID.podspec|'\
5858
'FirebaseInstallations'\
5959
'FirebaseCrashlytics.podspec)'\
@@ -103,8 +103,8 @@ else
103103
;;
104104

105105
InAppMessaging-*)
106-
check_changes '^(FirebaseInAppMessaging|FirebaseInAppMessagingDisplay|'\
107-
'FirebaseInAppMessaging.podspec|FirebaseInAppMessagingDisplay.podspec|Firebase/InstanceID|FirebaseInstanceID.podspec|'\
106+
check_changes '^(FirebaseInAppMessaging|'\
107+
'FirebaseInAppMessaging.podspec|Firebase/InstanceID|FirebaseInstanceID.podspec|'\
108108
'FirebaseInstallations)'
109109
;;
110110

0 commit comments

Comments
 (0)