forked from kanyun-inc/YTKNetwork
-
Notifications
You must be signed in to change notification settings - Fork 1
/
YTKNetwork.podspec
27 lines (23 loc) · 923 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
Pod::Spec.new do |s|
s.name = "YTKNetwork"
s.version = "2.0.5"
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]"
}
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 = "7.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.framework = "CFNetwork"
s.dependency "AFNetworking", "~> 3.0"
end