Skip to content

Commit

Permalink
fix: macos 10.13 deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Oct 9, 2023
1 parent d2b1863 commit 25148ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AnalyticsConnector.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = '10.0'
spec.ios.source_files = 'Sources/AnalyticsConnector/**/*.{h,swift}'

spec.osx.deployment_target = '10.10'
spec.osx.deployment_target = '10.13'
spec.osx.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'

spec.tvos.deployment_target = '9.0'
Expand Down
4 changes: 2 additions & 2 deletions AnalyticsConnector.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MACOSX_DEPLOYMENT_TARGET = 10.13;
PRODUCT_BUNDLE_IDENTIFIER = com.amplitude.AnalyticsConnector;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -299,7 +299,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MACOSX_DEPLOYMENT_TARGET = 10.13;
PRODUCT_BUNDLE_IDENTIFIER = com.amplitude.AnalyticsConnector;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let package = Package(
name: "analytics-connector-ios",
platforms: [
.iOS(.v10),
.macOS(.v10_10),
.macOS(.v10_13),
.tvOS(.v9),
.watchOS(.v3)
],
Expand Down

0 comments on commit 25148ad

Please sign in to comment.