diff --git a/ios/RNBranch.m b/ios/RNBranch.m index 9dfdb9dd6..5f16385df 100644 --- a/ios/RNBranch.m +++ b/ios/RNBranch.m @@ -7,6 +7,7 @@ #import "RNBranchAgingDictionary.h" #import "RNBranchEventEmitter.h" #import +#import "Branch+Validator.h" NSString * const RNBranchLinkOpenedNotification = @"RNBranchLinkOpenedNotification"; NSString * const RNBranchLinkOpenedNotificationErrorKey = @"error"; @@ -744,4 +745,9 @@ - (CGFloat) colorComponentFrom: (NSString *) string start: (NSUInteger) start le [Branch setDMAParamsForEEA:eeaRegion AdPersonalizationConsent:adPersonalizationConsent AdUserDataUsageConsent:adUserDataUsageConsent]; } +#pragma mark validateSDKIntegration +RCT_EXPORT_METHOD(validateSDKIntegration) { + [[Branch getInstance] validateSDKIntegration]; +} + @end