Skip to content

Commit 949e771

Browse files
radomir9720claude
andauthored
fix(share_plus): raise Apple platform minimums in SPM manifests to match FlutterFramework (#3923)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 4962175 commit 949e771

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/share_plus/share_plus/example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@
553553
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
554554
GCC_WARN_UNUSED_FUNCTION = YES;
555555
GCC_WARN_UNUSED_VARIABLE = YES;
556-
MACOSX_DEPLOYMENT_TARGET = 10.14;
556+
MACOSX_DEPLOYMENT_TARGET = 10.15;
557557
MTL_ENABLE_DEBUG_INFO = NO;
558558
SDKROOT = macosx;
559559
SWIFT_COMPILATION_MODE = wholemodule;
@@ -632,7 +632,7 @@
632632
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
633633
GCC_WARN_UNUSED_FUNCTION = YES;
634634
GCC_WARN_UNUSED_VARIABLE = YES;
635-
MACOSX_DEPLOYMENT_TARGET = 10.14;
635+
MACOSX_DEPLOYMENT_TARGET = 10.15;
636636
MTL_ENABLE_DEBUG_INFO = YES;
637637
ONLY_ACTIVE_ARCH = YES;
638638
SDKROOT = macosx;
@@ -679,7 +679,7 @@
679679
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
680680
GCC_WARN_UNUSED_FUNCTION = YES;
681681
GCC_WARN_UNUSED_VARIABLE = YES;
682-
MACOSX_DEPLOYMENT_TARGET = 10.14;
682+
MACOSX_DEPLOYMENT_TARGET = 10.15;
683683
MTL_ENABLE_DEBUG_INFO = NO;
684684
SDKROOT = macosx;
685685
SWIFT_COMPILATION_MODE = wholemodule;

packages/share_plus/share_plus/ios/share_plus/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import PackageDescription
66
let package = Package(
77
name: "share_plus",
88
platforms: [
9-
.iOS("12.0"),
9+
.iOS("13.0"),
1010
],
1111
products: [
1212
.library(name: "share-plus", targets: ["share_plus"])

packages/share_plus/share_plus/macos/share_plus/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import PackageDescription
66
let package = Package(
77
name: "share_plus",
88
platforms: [
9-
.macOS("10.14")
9+
.macOS("10.15")
1010
],
1111
products: [
1212
.library(name: "share-plus", targets: ["share_plus"])

0 commit comments

Comments
 (0)