-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAFNetworking.podspec
More file actions
19 lines (18 loc) · 891 Bytes
/
AFNetworking.podspec
File metadata and controls
19 lines (18 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "AFNetworking"
s.version = "4.0.1"
s.summary = "A delightful networking framework for Apple platforms."
s.license = "MIT"
s.authors = {"Mattt Thompson"=>"m@mattt.me"}
s.homepage = "https://github.com/AFNetworking/AFNetworking"
s.social_media_url = "https://twitter.com/AFNetworking"
s.source = { :path => '.' }
s.ios.deployment_target = '9.0'
s.ios.vendored_framework = 'ios/AFNetworking.embeddedframework/AFNetworking.framework'
s.osx.deployment_target = '10.10'
s.osx.vendored_framework = 'osx/AFNetworking.embeddedframework/AFNetworking.framework'
s.watchos.deployment_target = '2.0'
s.watchos.vendored_framework = 'watchos/AFNetworking.embeddedframework/AFNetworking.framework'
s.tvos.deployment_target = '9.0'
s.tvos.vendored_framework = 'tvos/AFNetworking.embeddedframework/AFNetworking.framework'
end