Skip to content

Commit

Permalink
Fix FIAM bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Apr 22, 2024
1 parent e0d46cc commit 09efe72
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ + (NSBundle *)getViewResourceBundle {
// Dynamically linked.
[NSBundle bundleForClass:myClass],
// Embedded static framework (zip distribution).
[[NSBundle.mainBundle.bundleURL URLByAppendingPathComponent:@"Frameworks"]
URLByAppendingPathComponent:@"FirebaseInAppMessaging.framework"]
[NSBundle bundleWithURL:[NSBundle.mainBundle.bundleURL
URLByAppendingPathComponent:
@"Frameworks/FirebaseInAppMessaging.framework"]]
]) {
bundleURL = [containingBundle URLForResource:bundledResource withExtension:@"bundle"];
if (bundleURL != nil) break;
Expand Down

0 comments on commit 09efe72

Please sign in to comment.