Files
SVGAPlayer-iOS/SVGAPlayer.podspec
PonyCui 5c4ba4a351 add SVGAImageView and SVGAVideoEntity to SVGA.h;
add URLRequest params to SVGAParser;
update to 2.1.3;
2018-04-25 15:08:18 +08:00

32 lines
1.2 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Pod::Spec.new do |s|
s.name = "SVGAPlayer"
s.version = "2.1.3"
s.summary = "SVGAPlayer 是一个高性能的动画播放器"
s.description = <<-DESC
SVGA YY UED
SVGA SVG SVG
SVGA iOS / Android / Web(PC/)
DESC
s.homepage = "http://code.yy.com/ued/SVGAPlayer"
s.license = "Apache 2.0"
s.author = { "PonyCui" => "cuiminghui1@yy.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/yyued/SVGAPlayer-iOS.git", :tag => s.version }
s.subspec 'Core' do |ss|
ss.source_files = "Source/*.{h,m}"
ss.requires_arc = true
ss.dependency 'SSZipArchive', '1.8.1'
ss.library = "z"
ss.dependency 'SVGAPlayer/ProtoFiles'
end
s.subspec 'ProtoFiles' do |ss|
ss.source_files = "Source/pbobjc/*.{h,m}"
ss.requires_arc = false
ss.dependency 'Protobuf', '~> 3.4'
ss.pod_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1',
}
end
end