Skip to content

Commit 9d8033d

Browse files
authored
[Infra] Remove firebase-ios-sdk package from messaging sample app (#10667)
* [Infra] Remove firebase-ios-sdk package from messaging sample app * Fix imports to fix CI
1 parent 0df86ea commit 9d8033d

File tree

2 files changed

+2
-24
lines changed

2 files changed

+2
-24
lines changed

FirebaseMessaging/Apps/SampleStandaloneWatchApp/SampleStandaloneWatchApp.xcodeproj/project.pbxproj

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
D6E7BFE0293AAD81007A9699 /* SampleStandaloneWatchApp Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = D6E7BFDF293AAD81007A9699 /* SampleStandaloneWatchApp Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
1414
D6E7BFE5293AAD81007A9699 /* SampleStandaloneWatchAppApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E7BFE4293AAD81007A9699 /* SampleStandaloneWatchAppApp.swift */; };
1515
D6E7BFE7293AAD81007A9699 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6E7BFE6293AAD81007A9699 /* ContentView.swift */; };
16-
D6E7BFF8293AB0EF007A9699 /* FirebaseMessaging in Frameworks */ = {isa = PBXBuildFile; productRef = D6E7BFF7293AB0EF007A9699 /* FirebaseMessaging */; };
1716
/* End PBXBuildFile section */
1817

1918
/* Begin PBXContainerItemProxy section */
@@ -58,7 +57,6 @@
5857
isa = PBXFrameworksBuildPhase;
5958
buildActionMask = 2147483647;
6059
files = (
61-
D6E7BFF8293AB0EF007A9699 /* FirebaseMessaging in Frameworks */,
6260
);
6361
runOnlyForDeploymentPostprocessing = 0;
6462
};
@@ -139,7 +137,6 @@
139137
);
140138
name = "SampleStandaloneWatchApp Watch App";
141139
packageProductDependencies = (
142-
D6E7BFF7293AB0EF007A9699 /* FirebaseMessaging */,
143140
);
144141
productName = "SampleStandaloneWatchApp Watch App";
145142
productReference = D6E7BFDF293AAD81007A9699 /* SampleStandaloneWatchApp Watch App.app */;
@@ -173,7 +170,6 @@
173170
);
174171
mainGroup = D6E7BFD2293AAD81007A9699;
175172
packageReferences = (
176-
D6E7BFF6293AB0EF007A9699 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */,
177173
);
178174
productRefGroup = D6E7BFDA293AAD81007A9699 /* Products */;
179175
projectDirPath = "";
@@ -480,25 +476,6 @@
480476
defaultConfigurationName = Release;
481477
};
482478
/* End XCConfigurationList section */
483-
484-
/* Begin XCRemoteSwiftPackageReference section */
485-
D6E7BFF6293AB0EF007A9699 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
486-
isa = XCRemoteSwiftPackageReference;
487-
repositoryURL = "https://github.com/firebase/firebase-ios-sdk";
488-
requirement = {
489-
branch = master;
490-
kind = branch;
491-
};
492-
};
493-
/* End XCRemoteSwiftPackageReference section */
494-
495-
/* Begin XCSwiftPackageProductDependency section */
496-
D6E7BFF7293AB0EF007A9699 /* FirebaseMessaging */ = {
497-
isa = XCSwiftPackageProductDependency;
498-
package = D6E7BFF6293AB0EF007A9699 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
499-
productName = FirebaseMessaging;
500-
};
501-
/* End XCSwiftPackageProductDependency section */
502479
};
503480
rootObject = D6E7BFD3293AAD81007A9699 /* Project object */;
504481
}

FirebaseMessaging/Apps/SampleStandaloneWatchApp/SampleStandaloneWatchAppWatchApp/SampleStandaloneWatchAppApp.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
// limitations under the License.
1414

1515
import SwiftUI
16-
import Firebase
16+
import FirebaseCore
17+
import FirebaseMessaging
1718

1819
@main
1920
struct SampleStandaloneWatchApp_Watch_AppApp: App {

0 commit comments

Comments
 (0)