Skip to content

Commit

Permalink
Merge pull request #85 from krris/bugfix/build-with-spm
Browse files Browse the repository at this point in the history
Fix: cannot build a project that uses a Swift Package Manager
  • Loading branch information
bsneed authored Jan 21, 2022
2 parents 39bf8d3 + 2325af1 commit f4f4f63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Segment-Firebase/Classes/SEGFirebaseIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
#import <Analytics/SEGAnalyticsUtils.h>
#else
#import <Segment/Segment.h>
@import Segment;
#endif


Expand Down
2 changes: 1 addition & 1 deletion Segment-Firebase/Classes/SEGFirebaseIntegrationFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
#import <Analytics/SEGIntegrationFactory.h>
#else
#import <Segment/Segment.h>
@import Segment;
#endif


Expand Down

0 comments on commit f4f4f63

Please sign in to comment.