From d61f41c4e602f402bbb758c054ee69ad7bdd3f1c Mon Sep 17 00:00:00 2001 From: Hashem Date: Thu, 26 Sep 2024 20:33:28 +0100 Subject: [PATCH] set min supported iOS version to iOS 13 because of new async / await syntax --- ios/spotify_sdk.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/spotify_sdk.podspec b/ios/spotify_sdk.podspec index 105914a5..43859098 100644 --- a/ios/spotify_sdk.podspec +++ b/ios/spotify_sdk.podspec @@ -15,8 +15,8 @@ Unofficial Spotify Flutter SDK. s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' - s.platform = :ios, '9.0' - s.ios.deployment_target = '9.0' + s.platform = :ios, '13.0' + s.ios.deployment_target = '13.0' # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' } s.swift_version = '5.0'