Skip to content

Commit 07e364b

Browse files
committed
Update deps & import issues for SwiftPM
1 parent a6784e1 commit 07e364b

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@
3333
"repositoryURL": "https://github.com/firebase/firebase-ios-sdk.git",
3434
"state": {
3535
"branch": null,
36-
"revision": "a8d209a86090fdf6d2087ae6a001d5e3ecaa5ba9",
37-
"version": "7.5.0"
36+
"revision": "447cf74cc561d408bc66c0294145a624645038ac",
37+
"version": "7.5.1"
3838
}
3939
},
4040
{
4141
"package": "GoogleAppMeasurement",
4242
"repositoryURL": "https://github.com/google/GoogleAppMeasurement.git",
4343
"state": {
4444
"branch": null,
45-
"revision": "58ae309ad8e3b198e2d9fde648b50f09ce9aba7a",
46-
"version": "7.5.0"
45+
"revision": "38205d8e39f806f71b048f93427337c9511c9402",
46+
"version": "7.5.1"
4747
}
4848
},
4949
{
5050
"package": "GoogleUtilities",
5151
"repositoryURL": "https://github.com/google/GoogleUtilities.git",
5252
"state": {
5353
"branch": null,
54-
"revision": "7fa255f7b57ac2b79effa56652ed693002d4fb01",
55-
"version": "7.2.0"
54+
"revision": "2de0d0fb0c4bba58137e68a5673b14982d58b77f",
55+
"version": "7.2.1"
5656
}
5757
},
5858
{

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let package = Package(
66
platforms: [.macOS(.v10_13), .iOS(.v10)],
77
products: [.library(name: "SegmentFirebase", targets: ["SegmentFirebase"])],
88
dependencies: [
9-
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git", from: "4.1.2"),
9+
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git", from: "4.1.3"),
1010
.package(name: "Firebase", url: "https://github.com/firebase/firebase-ios-sdk.git", from: "7.5.0"),
1111
],
1212
targets: [

Segment-Firebase/Classes/SEGFirebaseIntegration.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
99
#import <Analytics/SEGIntegration.h>
1010
#else
11-
#import <Segment/SEGIntegration.h>
11+
@import Segment;
1212
#endif
1313

1414

Segment-Firebase/Classes/SEGFirebaseIntegration.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#import "SEGFirebaseIntegration.h"
2-
#import <Firebase/Firebase.h>
2+
@import Firebase;
33

44
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
55
#import <Analytics/SEGAnalyticsUtils.h>
66
#else
7-
#import <Segment/SEGAnalyticsUtils.h>
7+
@import Segment;
88
#endif
99

1010

Segment-Firebase/Classes/SEGFirebaseIntegrationFactory.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#if defined(__has_include) && __has_include(<Analytics/SEGAnalytics.h>)
44
#import <Analytics/SEGIntegrationFactory.h>
55
#else
6-
#import <Segment/SEGIntegrationFactory.h>
6+
@import Segment;
77
#endif
88

99

0 commit comments

Comments
 (0)