Skip to content

Commit

Permalink
fix: Header imports for mParticle SDK (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
einsteinx2 authored Jan 26, 2024
1 parent 0ce5327 commit 5dffdeb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mParticle-iterable/MPKitIterable.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#import <Foundation/Foundation.h>
#if defined(__has_include) && __has_include(<mParticle_Apple_SDK/mParticle.h>)
#import <mParticle_Apple_SDK/mParticle.h>
#import <mParticle_Apple_SDK/mParticle.h>
#import <mParticle_Apple_SDK/mParticle_Apple_SDK-Swift.h>
#elif defined(__has_include) && __has_include(<mParticle_Apple_SDK_NoLocation/mParticle.h>)
#import <mParticle_Apple_SDK_NoLocation/mParticle.h>
#import <mParticle_Apple_SDK_NoLocation/mParticle_Apple_SDK-Swift.h>
#else
#import "mParticle.h"
#import "mParticle.h"
#import "mParticle_Apple_SDK-Swift.h"
#endif

#import "IterableMPHelper.h"
Expand Down

0 comments on commit 5dffdeb

Please sign in to comment.