Skip to content

Commit 3ae7220

Browse files
fix: Use Umbrella Imports (#26)
1 parent f4f000f commit 3ae7220

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

mParticle-Google-Analytics-Firebase/MPKitFirebaseAnalytics.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
#import <Foundation/Foundation.h>
22
#if defined(__has_include) && __has_include(<mParticle_Apple_SDK/mParticle.h>)
3-
#import <mParticle_Apple_SDK/mParticle.h>
3+
#import <mParticle_Apple_SDK/mParticle.h>
4+
#import <mParticle_Apple_SDK/mParticle_Apple_SDK-Swift.h>
5+
#elif defined(__has_include) && __has_include(<mParticle_Apple_SDK_NoLocation/mParticle.h>)
6+
#import <mParticle_Apple_SDK_NoLocation/mParticle.h>
7+
#import <mParticle_Apple_SDK_NoLocation/mParticle_Apple_SDK-Swift.h>
48
#else
5-
#import "mParticle.h"
9+
#import "mParticle.h"
10+
#import "mParticle_Apple_SDK-Swift.h"
611
#endif
712

813
@interface MPKitFirebaseAnalytics : NSObject <MPKitProtocol>

0 commit comments

Comments
 (0)