From fdea6ba3c72b0b41dbb5e6935d1079bb2e8631d1 Mon Sep 17 00:00:00 2001 From: rob-gioia-branch Date: Mon, 7 Oct 2024 16:37:54 -0400 Subject: [PATCH] Got the integration validator running on iOS Got the integration validator running on iOS --- ios/RNBranch.m | 6 ++++++ 1 file changed, 6 insertions(+) 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