Update the Example and Podfile to iOS 9+

This commit is contained in:
DreamPiggy 2020-11-20 16:06:34 +08:00
parent 6e34315e6c
commit 91b8caf6d2
1 changed files with 6 additions and 6 deletions

12
Podfile
View File

@ -23,19 +23,19 @@ workspace 'SDWebImage.xcworkspace'
# Example Project # Example Project
target 'SDWebImage iOS Demo' do target 'SDWebImage iOS Demo' do
project example_project_path project example_project_path
platform :ios, '8.0' platform :ios, '9.0'
all_example_pods all_example_pods
end end
target 'SDWebImage OSX Demo' do target 'SDWebImage OSX Demo' do
project example_project_path project example_project_path
platform :osx, '10.10' platform :osx, '10.11'
all_example_pods all_example_pods
end end
target 'SDWebImage TV Demo' do target 'SDWebImage TV Demo' do
project example_project_path project example_project_path
platform :tvos, '9.2' platform :tvos, '9.0'
all_example_pods all_example_pods
end end
@ -48,18 +48,18 @@ end
# Test Project # Test Project
target 'Tests iOS' do target 'Tests iOS' do
project test_project_path project test_project_path
platform :ios, '8.0' platform :ios, '9.0'
all_test_pods all_test_pods
end end
target 'Tests Mac' do target 'Tests Mac' do
project test_project_path project test_project_path
platform :osx, '10.10' platform :osx, '10.11'
all_test_pods all_test_pods
end end
target 'Tests TV' do target 'Tests TV' do
project test_project_path project test_project_path
platform :tvos, '9.2' platform :tvos, '9.0'
all_test_pods all_test_pods
end end