From 8ee25b2b28a279039725f85b4db777d83b9feddc Mon Sep 17 00:00:00 2001 From: Ben Baron Date: Fri, 26 Jan 2024 15:22:26 -0500 Subject: [PATCH] fix: Header imports for mParticle SDK (#24) --- mParticle-Apptentive/MPKitApptentive.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mParticle-Apptentive/MPKitApptentive.h b/mParticle-Apptentive/MPKitApptentive.h index 1aa06b1..d8c774d 100644 --- a/mParticle-Apptentive/MPKitApptentive.h +++ b/mParticle-Apptentive/MPKitApptentive.h @@ -1,8 +1,13 @@ #import #if defined(__has_include) && __has_include() -#import + #import + #import +#elif defined(__has_include) && __has_include() + #import + #import #else -#import "mParticle.h" + #import "mParticle.h" + #import "mParticle_Apple_SDK-Swift.h" #endif @interface MPKitApptentive : NSObject