From d06b000b05907a1d8508760292c82903c275da6f Mon Sep 17 00:00:00 2001 From: Scott Southerland Date: Fri, 5 Sep 2025 14:22:45 -0700 Subject: [PATCH] Suppress storekit violations --- Sources/BranchSDK/Public/BranchEvent.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/BranchSDK/Public/BranchEvent.h b/Sources/BranchSDK/Public/BranchEvent.h index 484fb52..c449b9d 100644 --- a/Sources/BranchSDK/Public/BranchEvent.h +++ b/Sources/BranchSDK/Public/BranchEvent.h @@ -60,6 +60,9 @@ typedef NS_ENUM(NSInteger, BranchEventAdType) { #pragma mark - BranchEvent +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + @interface BranchEvent : NSObject - (instancetype _Nonnull) initWithName:(NSString*_Nonnull)name NS_DESIGNATED_INITIALIZER; @@ -118,6 +121,8 @@ typedef NS_ENUM(NSInteger, BranchEventAdType) { @end +#pragma clang diagnostic pop + #pragma mark - BranchEventRequest @interface BranchEventRequest : BNCServerRequest