Skip to content

Commit

Permalink
fix: Use Umbrella Imports
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker committed Dec 6, 2023
1 parent de40e92 commit 8ed0699
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mParticle-UrbanAirship/MPKitUrbanAirship.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#import <Foundation/Foundation.h>
#if defined(__has_include) && __has_include(<mParticle_Apple_SDK/mParticle.h>)
#import <mParticle_Apple_SDK/mParticle.h>
#if defined(__has_include) && __has_include(<mParticle_Apple_SDK/mParticle-Apple-SDK-umbrella.h>)
#import <mParticle_Apple_SDK/mParticle-Apple-SDK-umbrella.h>
#elif defined(__has_include) && __has_include(<mParticle_Apple_SDK_NoLocation/mParticle-Apple-SDK-umbrella.h>)
#import <mParticle_Apple_SDK_NoLocation/mParticle-Apple-SDK-umbrella.h>
#else
#import "mParticle.h"
#import "mParticle-Apple-SDK-umbrella.h"
#endif

@interface MPKitUrbanAirship : NSObject <MPKitProtocol>
Expand Down

0 comments on commit 8ed0699

Please sign in to comment.