-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Kingsoft][sdk][ksyhttpcache_ios] 1.增加podspec文件支持cocoapods
- Loading branch information
sunyazhou
committed
May 27, 2017
1 parent
6d80587
commit b775d97
Showing
4 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
PODS: | ||
- CocoaAsyncSocket (7.6.1) | ||
- CocoaLumberjack (3.2.0): | ||
- CocoaLumberjack/Default (= 3.2.0) | ||
- CocoaLumberjack/Extensions (= 3.2.0) | ||
- CocoaLumberjack/Default (3.2.0) | ||
- CocoaLumberjack/Extensions (3.2.0): | ||
- CocoaLumberjack/Default | ||
- KSYMediaPlayer_iOS (2.2.0) | ||
|
||
DEPENDENCIES: | ||
- CocoaAsyncSocket | ||
- CocoaLumberjack | ||
- KSYMediaPlayer_iOS | ||
|
||
SPEC CHECKSUMS: | ||
CocoaAsyncSocket: 7eadd3f59e1a6c84e2aefc93e9ff7b55156fe174 | ||
CocoaLumberjack: 9b4aed7073d242f29cc2f62068d995faf67f703a | ||
KSYMediaPlayer_iOS: c51d5440bfd17b4caea3c53a3b34ba1af42d97c5 | ||
|
||
PODFILE CHECKSUM: 176926f0f0dd92a6d60406808337bc1af03f61a1 | ||
|
||
COCOAPODS: 1.2.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'ksyhttpcache_ios' | ||
s.version = '1.0.3' | ||
s.license = { | ||
:type => 'Proprietary', | ||
:text => <<-LICENSE | ||
Copyright 2015 kingsoft Ltd. All rights reserved. | ||
LICENSE | ||
} | ||
s.homepage = 'https://github.com/ksvc/ksyhttpcache_ios' | ||
s.authors = { 'ksyun' => '[email protected]' } | ||
s.summary = 'KSYHTTPCache 金山云iOS平台http缓存SDK.' | ||
s.description = <<-DESC | ||
* 金山云ios平台http缓存SDK,可方便地与播放器集成,实现http视频边播放边下载(缓存)功能。 | ||
* ksyun http cache sdk for ios platform, it's easy to integrated with media players to provide caching capability when watching http videos. | ||
DESC | ||
s.platform = :ios, '7.0' | ||
s.requires_arc = true | ||
s.source = { | ||
:git => 'https://github.com/ksvc/ksyhttpcache_ios.git', | ||
:tag => 'v'+s.version.to_s | ||
} | ||
s.dependency 'CocoaAsyncSocket' | ||
s.dependency 'CocoaLumberjack' | ||
s.vendored_frameworks = 'framework/KSYHTTPCache.framework' | ||
end |