Skip to content

Commit 97e12cd

Browse files
author
Brandon Sneed
committed
Fixed packaging issues
1 parent 696b59f commit 97e12cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PackageDescription
33

44
let package = Package(
55
name: "SegmentFirebase",
6-
platforms: [.macOS(.v10_13), .iOS(.v10)],
6+
platforms: [.iOS(.v10)],
77
products: [.library(name: "SegmentFirebase", targets: ["SegmentFirebase"])],
88
dependencies: [
99
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git", from: "4.1.3"),

Segment-Firebase/Classes/SEGFirebaseIntegration.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#import "SEGFirebaseIntegration.h"
2-
@import Firebase;
2+
#include <Firebase/Firebase.h>
33

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

1010

0 commit comments

Comments
 (0)