Skip to content

Commit cbeec8f

Browse files
authored
Fix internal build target (#2795)
1 parent b995836 commit cbeec8f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Firebase/DynamicLinks/FDLURLComponents/FDLURLComponents.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
#import "DynamicLinks/Logging/FDLLogging.h"
2424
#import "DynamicLinks/Utilities/FDLUtilities.h"
2525

26+
// Label exceptions from FDL.
27+
NSString *const kFirebaseDurableDeepLinkErrorDomain = @"com.firebase.durabledeeplink";
28+
2629
/// The exact behavior of dict[key] = value is unclear when value is nil. This function safely adds
2730
/// the key-value pair to the dictionary, even when value is nil.
2831
/// This function will treat empty string in the same way as nil.

Firebase/DynamicLinks/FIRDynamicLinks.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#import "DynamicLinks/FIRDLScionLogging.h"
3030
#endif
3131

32+
#import "DynamicLinks/FDLURLComponents/FDLURLComponents+Private.h"
3233
#import "DynamicLinks/FIRDLRetrievalProcessFactory.h"
3334
#import "DynamicLinks/FIRDLRetrievalProcessProtocols.h"
3435
#import "DynamicLinks/FIRDLRetrievalProcessResult.h"
@@ -55,9 +56,6 @@
5556
NSString *const kFIRDLReadDeepLinkAfterInstallKey =
5657
@"com.google.appinvite.readDeeplinkAfterInstall";
5758
58-
// Label exceptions from FDL.
59-
NSString *const kFirebaseDurableDeepLinkErrorDomain = @"com.firebase.durabledeeplink";
60-
6159
// Error code from FDL.
6260
static const NSInteger FIRErrorCodeDurableDeepLinkFailed = -119;
6361

0 commit comments

Comments
 (0)