Skip to content

Commit 413e94e

Browse files
remove watchos deployment target (#415)
* remove watchos deployment targets * remove watchOS from package.swift
1 parent d6ecd8b commit 413e94e

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Package.swift

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

55
let package = Package(
66
name: "PusherSwift",
7-
platforms: [.iOS("13.0"), .macOS("10.15"), .tvOS("13.0"), .watchOS("6.0")],
7+
platforms: [.iOS("13.0"), .macOS("10.15"), .tvOS("13.0")],
88
products: [
99
.library(name: "PusherSwift", targets: ["PusherSwift"])
1010
],

PusherSwift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -691,10 +691,9 @@
691691
MACOSX_DEPLOYMENT_TARGET = 10.15;
692692
ONLY_ACTIVE_ARCH = YES;
693693
SDKROOT = "";
694-
SUPPORTED_PLATFORMS = "macosx appletvos iphoneos watchos appletvsimulator iphonesimulator watchsimulator";
694+
SUPPORTED_PLATFORMS = "macosx appletvos iphoneos appletvsimulator iphonesimulator";
695695
SWIFT_VERSION = 5.0;
696696
TVOS_DEPLOYMENT_TARGET = 13.0;
697-
WATCHOS_DEPLOYMENT_TARGET = 6.0;
698697
};
699698
name = Debug;
700699
};
@@ -734,12 +733,11 @@
734733
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
735734
MACOSX_DEPLOYMENT_TARGET = 10.15;
736735
SDKROOT = "";
737-
SUPPORTED_PLATFORMS = "macosx appletvos iphoneos watchos appletvsimulator iphonesimulator watchsimulator";
736+
SUPPORTED_PLATFORMS = "macosx appletvos iphoneos appletvsimulator iphonesimulator";
738737
SWIFT_COMPILATION_MODE = wholemodule;
739738
SWIFT_OPTIMIZATION_LEVEL = "-O";
740739
SWIFT_VERSION = 5.0;
741740
TVOS_DEPLOYMENT_TARGET = 13.0;
742-
WATCHOS_DEPLOYMENT_TARGET = 6.0;
743741
};
744742
name = Release;
745743
};
@@ -799,7 +797,7 @@
799797
PROVISIONING_PROFILE = "";
800798
SDKROOT = "";
801799
SKIP_INSTALL = YES;
802-
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvsimulator appletvos watchsimulator watchos";
800+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvsimulator appletvos";
803801
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
804802
SWIFT_VERSION = 5.0;
805803
TARGETED_DEVICE_FAMILY = "1,2,3,4";
@@ -858,7 +856,7 @@
858856
PROVISIONING_PROFILE = "";
859857
SDKROOT = "";
860858
SKIP_INSTALL = YES;
861-
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvsimulator appletvos watchsimulator watchos";
859+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvsimulator appletvos";
862860
SWIFT_VERSION = 5.0;
863861
TARGETED_DEVICE_FAMILY = "1,2,3,4";
864862
VALIDATE_PRODUCT = YES;

0 commit comments

Comments
 (0)