From 91b8caf6d24344acd2fac082b0f6bff798f328d4 Mon Sep 17 00:00:00 2001 From: DreamPiggy Date: Fri, 20 Nov 2020 16:06:34 +0800 Subject: [PATCH] Update the Example and Podfile to iOS 9+ --- Podfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Podfile b/Podfile index d753b5b9..68c01b89 100644 --- a/Podfile +++ b/Podfile @@ -23,19 +23,19 @@ workspace 'SDWebImage.xcworkspace' # Example Project target 'SDWebImage iOS Demo' do project example_project_path - platform :ios, '8.0' + platform :ios, '9.0' all_example_pods end target 'SDWebImage OSX Demo' do project example_project_path - platform :osx, '10.10' + platform :osx, '10.11' all_example_pods end target 'SDWebImage TV Demo' do project example_project_path - platform :tvos, '9.2' + platform :tvos, '9.0' all_example_pods end @@ -48,18 +48,18 @@ end # Test Project target 'Tests iOS' do project test_project_path - platform :ios, '8.0' + platform :ios, '9.0' all_test_pods end target 'Tests Mac' do project test_project_path - platform :osx, '10.10' + platform :osx, '10.11' all_test_pods end target 'Tests TV' do project test_project_path - platform :tvos, '9.2' + platform :tvos, '9.0' all_test_pods end