|
1 | 1 | Pod::Spec.new do |s|
|
2 | 2 | s.name = "AXPhotoViewer"
|
3 |
| - s.version = "1.7.0" |
| 3 | + s.version = "1.7.1" |
4 | 4 | s.license = { :type => 'MIT', :file => 'LICENSE.md' }
|
5 | 5 | s.summary = "An iOS/tvOS photo gallery viewer, useful for viewing a large number of photos."
|
6 | 6 | s.homepage = "https://github.com/alexhillc/AXPhotoViewer"
|
@@ -29,31 +29,40 @@ Pod::Spec.new do |s|
|
29 | 29 | end
|
30 | 30 |
|
31 | 31 | s.subspec 'SDWebImage' do |ss|
|
| 32 | + ss.ios.deployment_target = '8.0' |
| 33 | + ss.tvos.deployment_target = '9.0' |
32 | 34 | ss.dependency 'AXPhotoViewer/Core'
|
33 | 35 | ss.dependency 'SDWebImage', '>= 4.0.0'
|
34 | 36 | ss.source_files = 'Source/Integrations/SDWebImageIntegration.swift'
|
35 | 37 | end
|
36 | 38 |
|
37 | 39 | s.subspec 'PINRemoteImage' do |ps|
|
| 40 | + ps.ios.deployment_target = '8.0' |
| 41 | + ps.tvos.deployment_target = '9.0' |
38 | 42 | ps.dependency 'AXPhotoViewer/Core'
|
39 | 43 | ps.dependency 'PINRemoteImage', '~> 3.0.0-beta.9'
|
40 | 44 | ps.source_files = 'Source/Integrations/PINRemoteImageIntegration.swift'
|
41 | 45 | end
|
42 | 46 |
|
43 | 47 | s.subspec 'AFNetworking' do |as|
|
| 48 | + as.ios.deployment_target = '8.0' |
| 49 | + as.tvos.deployment_target = '9.0' |
44 | 50 | as.dependency 'AXPhotoViewer/Core'
|
45 | 51 | as.dependency 'AFNetworking/NSURLSession', '>= 3.1.0'
|
46 | 52 | as.source_files = 'Source/Integrations/AFNetworkingIntegration.swift'
|
47 | 53 | end
|
48 | 54 |
|
49 | 55 | s.subspec 'Kingfisher' do |ks|
|
| 56 | + ks.ios.deployment_target = '10.0' |
| 57 | + ks.tvos.deployment_target = '10.0' |
50 | 58 | ks.dependency 'AXPhotoViewer/Core'
|
51 | 59 | ks.dependency 'Kingfisher', '>= 3.10.0'
|
52 | 60 | ks.source_files = 'Source/Integrations/KingfisherIntegration.swift'
|
53 | 61 | end
|
54 | 62 |
|
55 | 63 | s.subspec 'Nuke' do |nk|
|
56 |
| - nk.ios.deployment_target = '9.0' |
| 64 | + nk.ios.deployment_target = '10.0' |
| 65 | + nk.tvos.deployment_target = '10.0' |
57 | 66 | nk.dependency 'AXPhotoViewer/Core'
|
58 | 67 | nk.dependency 'Nuke', '>= 7.0'
|
59 | 68 | nk.source_files = 'Source/Integrations/NukeIntegration.swift'
|
|
0 commit comments