-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathYTKNetwork.podspec
27 lines (23 loc) · 971 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.4"
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" => "tangqiao@fenbi.com",
"lancy" => "lancy@fenbi.com",
"maojj" => "maojj@fenbi.com",
"liujl" => "liujl@fenbi.com"
}
s.source = { :git => "https://github.com/yuantiku/YTKNetwork.git", :tag => s.version.to_s }
s.source_files = "AirKnow/Lib/YTKNetwork/YTKNetwork/*.{h,m}"
s.requires_arc = true
s.private_header_files = "AirKnow/Lib/YTKNetwork/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