-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
YTKNetwork.podspec
28 lines (24 loc) · 991 Bytes
/
YTKNetwork.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
Pod::Spec.new do |s|
s.name = "YTKNetwork"
s.version = "3.0.6"
s.summary = "YTKNetwork is a high level request util based on AFNetworking."
s.homepage = "https://github.com/yuantiku/YTKNetwork"
s.license = "MIT"
s.author = {
"tangqiao" => "[email protected]",
"lancy" => "[email protected]",
"maojj" => "[email protected]",
"liujl" => "[email protected]",
"shangcr" => "[email protected]"
}
s.source = { :git => "https://github.com/yuantiku/YTKNetwork.git", :tag => s.version.to_s }
s.source_files = "YTKNetwork/*.{h,m}"
s.requires_arc = true
s.private_header_files = "YTKNetwork/YTKNetworkPrivate.h"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.framework = "CFNetwork"
s.dependency "AFNetworking/NSURLSession", "~> 4.0"
end