File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1+ # Unreleased
2+ - [ fixed] Fixed crash at app start that affected SwiftPM users and CocoaPods
3+ users using static frameworks (#12882 ).
4+
15# 10.25.0
26- [ changed] Removed usages of user defaults API to eliminate required reason
37 impact.
Original file line number Diff line number Diff line change @@ -72,10 +72,12 @@ + (NSBundle *)getViewResourceBundle {
7272 [NSBundle mainBundle ],
7373 // Dynamically linked.
7474 [NSBundle bundleForClass: myClass],
75+ #if FIREBASE_BUILD_ZIP_FILE
7576 // Embedded static framework (zip distribution).
7677 [NSBundle bundleWithURL: [NSBundle .mainBundle.bundleURL
7778 URLByAppendingPathComponent:
7879 @" Frameworks/FirebaseInAppMessaging.framework" ]]
80+ #endif // FIREBASE_BUILD_ZIP_FILE
7981 ]) {
8082 bundleURL = [containingBundle URLForResource: bundledResource withExtension: @" bundle" ];
8183 if (bundleURL != nil ) break ;
You can’t perform that action at this time.
0 commit comments