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 f4f000f commit c398be6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mParticle-Google-Analytics-Firebase/MPKitFirebaseAnalytics.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

@interface MPKitFirebaseAnalytics : NSObject <MPKitProtocol>
Expand Down

0 comments on commit c398be6

Please sign in to comment.