Skip to content

Commit

Permalink
fix: Use Umbrella Imports (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker authored Dec 8, 2023
1 parent 6dc3fa6 commit 2782055
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Sources/mParticle-Appboy/include/MPKitAppboy.h
Original file line number Diff line number Diff line change
@@ -1,10 +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_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_Apple_SDK-Swift.h"
#endif

@interface MPKitAppboy : NSObject <MPKitProtocol>
Expand Down

0 comments on commit 2782055

Please sign in to comment.