Skip to content

Commit c951434

Browse files
committed
fixes
1 parent 47bfe02 commit c951434

File tree

4 files changed

+14
-25
lines changed

4 files changed

+14
-25
lines changed

FirebaseAppDistribution/Sources/FIRFADLogger.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#import "FirebaseAppDistribution/Sources/FIRFADLogger.h"
1616
#import "FirebaseCore/Extension/FIRLogger.h"
17+
#import "FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h"
1718

1819
FIRLoggerService kFIRLoggerAppDistribution = @"[FirebaseAppDistribution]";
1920

FirebaseCore/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Firebase 11.4.0
2+
- [fixed] Fixed issue building documentation with some Firebase products. (#13756)
3+
14
# Firebase 11.0.0
25
- [changed] **Breaking change**: Firebase's minimum supported versions have
36
updated for the following platforms:

FirebaseCore/Sources/FIROptionsInternal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#import <FirebaseCore/FIROptions.h>
17+
#import "FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h"
1818

1919
/**
2020
* Keys for the strings in the plist file.

FirebaseDynamicLinks/Sources/FIRDynamicLinks.m

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -166,30 +166,15 @@ - (void)configureDynamicLinks:(FIRApp *)app {
166166
userInfo:errorDict];
167167
}
168168
if (error) {
169-
NSString *message = nil;
170-
if (options.usingOptionsFromDefaultPlist) {
171-
// Configured using plist file
172-
message = [NSString
173-
stringWithFormat:
174-
@"Firebase Dynamic Links has stopped your project "
175-
@"because there are missing or incorrect values provided in %@.%@ that may "
176-
@"prevent your app from behaving as expected:\n\n"
177-
@"Error: %@\n\n"
178-
@"Please fix these issues to ensure that Firebase is correctly configured in "
179-
@"your project.",
180-
kServiceInfoFileName, kServiceInfoFileType, error.localizedFailureReason];
181-
} else {
182-
// Configured manually
183-
message = [NSString
184-
stringWithFormat:
185-
@"Firebase Dynamic Links has stopped your project "
186-
@"because there are incorrect values provided in Firebase's configuration "
187-
@"options that may prevent your app from behaving as expected:\n\n"
188-
@"Error: %@\n\n"
189-
@"Please fix these issues to ensure that Firebase is correctly configured in "
190-
@"your project.",
191-
error.localizedFailureReason];
192-
}
169+
NSString *message =
170+
[NSString stringWithFormat:
171+
@"Firebase Dynamic Links has stopped your project "
172+
@"because there are incorrect values provided in Firebase's configuration "
173+
@"options that may prevent your app from behaving as expected:\n\n"
174+
@"Error: %@\n\n"
175+
@"Please fix these issues to ensure that Firebase is correctly configured in "
176+
@"your project.",
177+
error.localizedFailureReason];
193178
[NSException raise:kFirebaseDurableDeepLinkErrorDomain format:@"%@", message];
194179
}
195180
[self checkForCustomDomainEntriesInInfoPlist];

0 commit comments

Comments
 (0)