Skip to content

Commit

Permalink
fix: update tvos and macos deployment targets
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Oct 9, 2023
1 parent d2f3ec4 commit 6350319
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions AnalyticsConnector.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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'
spec.tvos.deployment_target = '10.0'
spec.tvos.source_files = 'sources/AnalyticsConnector/**/*.{h,swift}'

spec.watchos.deployment_target = '3.0'
Expand Down
12 changes: 8 additions & 4 deletions AnalyticsConnector.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,4,6";
TVOS_DEPLOYMENT_TARGET = 9.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Debug;
Expand Down Expand Up @@ -307,7 +307,7 @@
SWIFT_INSTALL_OBJC_HEADER = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,4,6";
TVOS_DEPLOYMENT_TARGET = 9.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Release;
Expand All @@ -334,7 +334,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,6";
TVOS_DEPLOYMENT_TARGET = 9.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
};
name = Debug;
};
Expand All @@ -359,7 +359,7 @@
SWIFT_OBJC_BRIDGING_HEADER = "";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,6";
TVOS_DEPLOYMENT_TARGET = 9.0;
TVOS_DEPLOYMENT_TARGET = 10.0;
};
name = Release;
};
Expand Down Expand Up @@ -425,8 +425,10 @@
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2,6";
TVOS_DEPLOYMENT_TARGET = 10.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Debug;
};
Expand Down Expand Up @@ -485,9 +487,11 @@
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2,6";
TVOS_DEPLOYMENT_TARGET = 10.0;
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Release;
};
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ let package = Package(
name: "analytics-connector-ios",
platforms: [
.iOS(.v10),
.macOS(.v10_10),
.tvOS(.v9),
.macOS(.v10_13),
.tvOS(.v10),
.watchOS(.v3)
],
products: [
Expand Down

0 comments on commit 6350319

Please sign in to comment.