From cd812773337be56264e938301c64b1c4a1e5aea5 Mon Sep 17 00:00:00 2001 From: Ben Baron Date: Mon, 24 Jun 2024 14:28:32 -0500 Subject: [PATCH] fix: Kit fails to start due to missing kitApi property --- Sources/mParticle-Appboy/include/MPKitAppboy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/mParticle-Appboy/include/MPKitAppboy.h b/Sources/mParticle-Appboy/include/MPKitAppboy.h index 52455ad..e34c624 100644 --- a/Sources/mParticle-Appboy/include/MPKitAppboy.h +++ b/Sources/mParticle-Appboy/include/MPKitAppboy.h @@ -22,6 +22,7 @@ @property (nonatomic, strong, nonnull) NSDictionary *configuration; @property (nonatomic, strong, nullable) NSDictionary *launchOptions; @property (nonatomic, unsafe_unretained, readonly) BOOL started; +@property (nonatomic, strong, nullable) MPKitAPI *kitApi; #if TARGET_OS_IOS + (void)setInAppMessageControllerDelegate:(nonnull id)delegate;