Skip to content

Commit

Permalink
feat: update watchos deployment target to 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Dec 20, 2024
1 parent 964616f commit c80f40a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AmplitudeExperiment.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |spec|
spec.tvos.source_files = 'sources/Experiment/**/*.{h,swift}'
spec.tvos.resource_bundle = { 'AmplitudeExperiment': ['Sources/Experiment/PrivacyInfo.xcprivacy'] }

spec.watchos.deployment_target = '3.0'
spec.watchos.deployment_target = '4.0'
spec.watchos.source_files = 'sources/Experiment/**/*.{h,swift}'
spec.watchos.resource_bundle = { 'AmplitudeExperiment': ['Sources/Experiment/PrivacyInfo.xcprivacy'] }

Expand Down
6 changes: 4 additions & 2 deletions Experiment.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@
TVOS_DEPLOYMENT_TARGET = 11.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Debug;
};
Expand Down Expand Up @@ -549,6 +550,7 @@
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Release;
};
Expand Down Expand Up @@ -581,7 +583,7 @@
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,4,6";
TVOS_DEPLOYMENT_TARGET = 11.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Debug;
};
Expand Down Expand Up @@ -613,7 +615,7 @@
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,3,4,6";
TVOS_DEPLOYMENT_TARGET = 11.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
WATCHOS_DEPLOYMENT_TARGET = 4.0;
};
name = Release;
};
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let package = Package(
.iOS(.v10),
.macOS(.v10_13),
.tvOS(.v11),
.watchOS(.v3)
.watchOS(.v4)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
Expand Down

0 comments on commit c80f40a

Please sign in to comment.