Update the Example and Podfile to iOS 9+
This commit is contained in:
parent
6e34315e6c
commit
91b8caf6d2
12
Podfile
12
Podfile
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue