diff --git a/FirebaseAppDistribution/Sources/FIRFADLogger.m b/FirebaseAppDistribution/Sources/FIRFADLogger.m index 22a37ed603a..5eb8b92acd1 100644 --- a/FirebaseAppDistribution/Sources/FIRFADLogger.m +++ b/FirebaseAppDistribution/Sources/FIRFADLogger.m @@ -14,6 +14,7 @@ #import "FirebaseAppDistribution/Sources/FIRFADLogger.h" #import "FirebaseCore/Extension/FIRLogger.h" +#import "FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h" FIRLoggerService kFIRLoggerAppDistribution = @"[FirebaseAppDistribution]"; diff --git a/FirebaseCore/CHANGELOG.md b/FirebaseCore/CHANGELOG.md index 55ad25bbeb7..16a6b9d1290 100644 --- a/FirebaseCore/CHANGELOG.md +++ b/FirebaseCore/CHANGELOG.md @@ -1,3 +1,6 @@ +# Firebase 11.4.0 +- [fixed] Fixed issue building documentation with some Firebase products. (#13756) + # Firebase 11.0.0 - [changed] **Breaking change**: Firebase's minimum supported versions have updated for the following platforms: diff --git a/FirebaseCore/Sources/FIROptionsInternal.h b/FirebaseCore/Sources/FIROptionsInternal.h index 93a03d6894c..fb6899afef7 100644 --- a/FirebaseCore/Sources/FIROptionsInternal.h +++ b/FirebaseCore/Sources/FIROptionsInternal.h @@ -14,7 +14,7 @@ * limitations under the License. */ -#import +#import "FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h" /** * Keys for the strings in the plist file. diff --git a/FirebaseDynamicLinks/Sources/FIRDynamicLinks.m b/FirebaseDynamicLinks/Sources/FIRDynamicLinks.m index 7b340e6a9d6..f7b0b0f5e3c 100644 --- a/FirebaseDynamicLinks/Sources/FIRDynamicLinks.m +++ b/FirebaseDynamicLinks/Sources/FIRDynamicLinks.m @@ -166,30 +166,15 @@ - (void)configureDynamicLinks:(FIRApp *)app { userInfo:errorDict]; } if (error) { - NSString *message = nil; - if (options.usingOptionsFromDefaultPlist) { - // Configured using plist file - message = [NSString - stringWithFormat: - @"Firebase Dynamic Links has stopped your project " - @"because there are missing or incorrect values provided in %@.%@ that may " - @"prevent your app from behaving as expected:\n\n" - @"Error: %@\n\n" - @"Please fix these issues to ensure that Firebase is correctly configured in " - @"your project.", - kServiceInfoFileName, kServiceInfoFileType, error.localizedFailureReason]; - } else { - // Configured manually - message = [NSString - stringWithFormat: - @"Firebase Dynamic Links has stopped your project " - @"because there are incorrect values provided in Firebase's configuration " - @"options that may prevent your app from behaving as expected:\n\n" - @"Error: %@\n\n" - @"Please fix these issues to ensure that Firebase is correctly configured in " - @"your project.", - error.localizedFailureReason]; - } + NSString *message = + [NSString stringWithFormat: + @"Firebase Dynamic Links has stopped your project " + @"because there are incorrect values provided in Firebase's configuration " + @"options that may prevent your app from behaving as expected:\n\n" + @"Error: %@\n\n" + @"Please fix these issues to ensure that Firebase is correctly configured in " + @"your project.", + error.localizedFailureReason]; [NSException raise:kFirebaseDurableDeepLinkErrorDomain format:@"%@", message]; } [self checkForCustomDomainEntriesInInfoPlist];