Skip to content

Commit

Permalink
fix: Use Umbrella Imports (#23)
Browse files Browse the repository at this point in the history
* fix: Use Umbrella Imports

* ensure functionality on SPM and cocaopods
  • Loading branch information
BrandonStalnaker authored Dec 6, 2023
1 parent 0cf5086 commit 4608953
Showing 1 changed file with 3 additions and 0 deletions.
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 MPKitFirebaseGA4Analytics : NSObject <MPKitProtocol>
Expand Down

0 comments on commit 4608953

Please sign in to comment.