From f08194945b28c358c81123c8f155ff4b90eebcfd Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Mon, 21 Oct 2024 17:01:42 -0700 Subject: [PATCH] Fix --- .github/workflows/cupertino.yml | 2 +- pkgs/cupertino_http/darwin/cupertino_http.podspec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cupertino.yml b/.github/workflows/cupertino.yml index 5c13c90074..117a5fe2e8 100644 --- a/.github/workflows/cupertino.yml +++ b/.github/workflows/cupertino.yml @@ -50,7 +50,7 @@ jobs: - uses: futureware-tech/simulator-action@bfa03d93ec9de6dacb0c5553bbf8da8afc6c2ee9 with: os: iOS - os_version: '>=12.0' + os_version: '>=13.0' - name: Run tests run: | cd example diff --git a/pkgs/cupertino_http/darwin/cupertino_http.podspec b/pkgs/cupertino_http/darwin/cupertino_http.podspec index feada138a7..0b44154cb6 100644 --- a/pkgs/cupertino_http/darwin/cupertino_http.podspec +++ b/pkgs/cupertino_http/darwin/cupertino_http.podspec @@ -17,8 +17,8 @@ Pod::Spec.new do |s| s.source_files = 'cupertino_http/Sources/cupertino_http/**/*' s.ios.dependency 'Flutter' s.osx.dependency 'FlutterMacOS' - s.ios.deployment_target = '12.0' - s.osx.deployment_target = '10.14' + s.ios.deployment_target = '13.0' # Required for NSURLSessionWebSocketDelegate. + s.osx.deployment_target = '10.15' # Required for NSURLSessionWebSocketDelegate. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } s.swift_version = '5.0'