From d50bbf7a369bd7ec7e639fc38138b6a5d2bb7a0f Mon Sep 17 00:00:00 2001 From: Brandon Stalnaker <33703490+BrandonStalnaker@users.noreply.github.com> Date: Mon, 7 Feb 2022 12:04:00 -0500 Subject: [PATCH] fix: fix spm imports (#62) --- Sources/mParticle-Appboy/include/mParticle_Appboy.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/mParticle-Appboy/include/mParticle_Appboy.h b/Sources/mParticle-Appboy/include/mParticle_Appboy.h index 33ad13c..401a74c 100644 --- a/Sources/mParticle-Appboy/include/mParticle_Appboy.h +++ b/Sources/mParticle-Appboy/include/mParticle_Appboy.h @@ -8,4 +8,8 @@ FOUNDATION_EXPORT const unsigned char mParticle_AppboyVersionString[]; // In this header, you should import all the public headers of your framework using statements like #import +#if defined(__has_include) && __has_include() #import +#else +#import "MPKitAppboy.h" +#endif