-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSDWebImageLottiePlugin.podspec
39 lines (32 loc) · 1.49 KB
/
SDWebImageLottiePlugin.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# Be sure to run `pod lib lint SDWebImageLottiePlugin.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SDWebImageLottiePlugin'
s.version = '1.0.0'
s.summary = 'SDWebImage integration with Lottie Animation using remote JSON files'
s.description = <<-DESC
SDWebImageLottiePlugin is a plugin for SDWebImage framework, which provide the Lottie animation loading from JSON file.
DESC
s.homepage = 'https://github.com/SDWebImage/SDWebImageLottiePlugin'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'DreamPiggy' => '[email protected]' }
s.source = { :git => 'https://github.com/SDWebImage/SDWebImageLottiePlugin.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '11.0'
s.source_files = 'SDWebImageLottiePlugin/Classes/**/*'
s.swift_version = '5'
s.pod_target_xcconfig = {
'SUPPORTS_MACCATALYST' => 'YES',
'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES',
'DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER' => 'NO',
'OTHER_SWIFT_FLAGS' => '$(inherited) -Xfrontend -disable-testable-attr-requires-testable-module'
}
s.dependency 'SDWebImage', '~> 5.10'
s.dependency 'lottie-ios', '~> 3.4'
end