From 44ceccb9d3b4623171fd42c6d5b07fa6ee21d079 Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Tue, 15 Oct 2024 22:57:23 +0200 Subject: [PATCH] Fix podspec osx deployment targets --- KMPNativeCoroutinesCore.podspec | 2 +- KMPNativeCoroutinesRxSwift.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/KMPNativeCoroutinesCore.podspec b/KMPNativeCoroutinesCore.podspec index eca60c10..50262a42 100644 --- a/KMPNativeCoroutinesCore.podspec +++ b/KMPNativeCoroutinesCore.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.swift_versions = ['5.0'] s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.9' + s.osx.deployment_target = '10.13' s.watchos.deployment_target = '3.0' s.tvos.deployment_target = '9.0' diff --git a/KMPNativeCoroutinesRxSwift.podspec b/KMPNativeCoroutinesRxSwift.podspec index 0a2e7d29..747c05e5 100644 --- a/KMPNativeCoroutinesRxSwift.podspec +++ b/KMPNativeCoroutinesRxSwift.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.swift_versions = ['5.0'] s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.10' + s.osx.deployment_target = '10.13' s.watchos.deployment_target = '3.0' s.tvos.deployment_target = '9.0'