Skip to content

Commit 35fc85b

Browse files
committed
1 parent 1f96976 commit 35fc85b

File tree

119 files changed

+19578
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+19578
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
highlight-color: "#F89915"
2+
highlight-dark-color: "#E23B1B"
3+
darker-color: "#D8A688"
4+
darker-dark-color: "#E93D1C"
5+
background-color: "#E9DFDB"
6+
alt-link-color: "#E23B1B"
7+
warning-color: "#E23B1B"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Xcode
2+
.DS_Store
3+
build/
4+
*.pbxuser
5+
!default.pbxuser
6+
*.mode1v3
7+
!default.mode1v3
8+
*.mode2v3
9+
!default.mode2v3
10+
*.perspectivev3
11+
!default.perspectivev3
12+
*.xcworkspace
13+
!default.xcworkspace
14+
xcuserdata
15+
profile
16+
*.moved-aside
17+
DerivedData
18+
.idea/
19+
Tests/Pods
20+
Tests/Podfile.lock
21+
Tests/AFNetworking Tests.xcodeproj/xcshareddata/xcschemes/
22+
AFNetworking.framework.zip
23+
24+
# Fastlane
25+
/fastlane/report.xml
26+
/fastlane/.env*private*
27+
fastlane/test-output/*
28+
29+
Carthage/Build
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'AFNetworking'
3+
s.version = '3.0.4'
4+
s.license = 'MIT'
5+
s.summary = 'A delightful iOS and OS X networking framework.'
6+
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
7+
s.social_media_url = 'https://twitter.com/AFNetworking'
8+
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
9+
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => s.version, :submodules => true }
10+
s.requires_arc = true
11+
12+
s.public_header_files = 'AFNetworking/AFNetworking.h'
13+
s.source_files = 'AFNetworking/AFNetworking.h'
14+
15+
pch_AF = <<-EOS
16+
#ifndef TARGET_OS_IOS
17+
#define TARGET_OS_IOS TARGET_OS_IPHONE
18+
#endif
19+
20+
#ifndef TARGET_OS_WATCH
21+
#define TARGET_OS_WATCH 0
22+
#endif
23+
24+
#ifndef TARGET_OS_TV
25+
#define TARGET_OS_TV 0
26+
#endif
27+
EOS
28+
s.prefix_header_contents = pch_AF
29+
30+
s.ios.deployment_target = '7.0'
31+
s.osx.deployment_target = '10.9'
32+
s.watchos.deployment_target = '2.0'
33+
s.tvos.deployment_target = '9.0'
34+
35+
s.subspec 'Serialization' do |ss|
36+
ss.source_files = 'AFNetworking/AFURL{Request,Response}Serialization.{h,m}'
37+
ss.public_header_files = 'AFNetworking/AFURL{Request,Response}Serialization.h'
38+
ss.watchos.frameworks = 'MobileCoreServices', 'CoreGraphics'
39+
ss.ios.frameworks = 'MobileCoreServices', 'CoreGraphics'
40+
ss.osx.frameworks = 'CoreServices'
41+
end
42+
43+
s.subspec 'Security' do |ss|
44+
ss.source_files = 'AFNetworking/AFSecurityPolicy.{h,m}'
45+
ss.public_header_files = 'AFNetworking/AFSecurityPolicy.h'
46+
ss.frameworks = 'Security'
47+
end
48+
49+
s.subspec 'Reachability' do |ss|
50+
ss.ios.deployment_target = '7.0'
51+
ss.osx.deployment_target = '10.9'
52+
ss.tvos.deployment_target = '9.0'
53+
54+
ss.source_files = 'AFNetworking/AFNetworkReachabilityManager.{h,m}'
55+
ss.public_header_files = 'AFNetworking/AFNetworkReachabilityManager.h'
56+
57+
ss.frameworks = 'SystemConfiguration'
58+
end
59+
60+
s.subspec 'NSURLSession' do |ss|
61+
ss.dependency 'AFNetworking/Serialization'
62+
ss.ios.dependency 'AFNetworking/Reachability'
63+
ss.osx.dependency 'AFNetworking/Reachability'
64+
ss.tvos.dependency 'AFNetworking/Reachability'
65+
ss.dependency 'AFNetworking/Security'
66+
67+
ss.source_files = 'AFNetworking/AF{URL,HTTP}SessionManager.{h,m}'
68+
ss.public_header_files = 'AFNetworking/AF{URL,HTTP}SessionManager.h'
69+
end
70+
71+
s.subspec 'UIKit' do |ss|
72+
ss.ios.deployment_target = '7.0'
73+
ss.tvos.deployment_target = '9.0'
74+
ss.dependency 'AFNetworking/NSURLSession'
75+
76+
ss.public_header_files = 'UIKit+AFNetworking/*.h'
77+
ss.source_files = 'UIKit+AFNetworking'
78+
end
79+
end

its/plugin/projects/AFNetworking/AFNetworking.xcodeproj/project.pbxproj

+1,512
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0700"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "299522761BBF136400859F49"
18+
BuildableName = "AFNetworking.framework"
19+
BlueprintName = "AFNetworking OS X"
20+
ReferencedContainer = "container:AFNetworking.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES"
30+
codeCoverageEnabled = "YES">
31+
<Testables>
32+
<TestableReference
33+
skipped = "NO">
34+
<BuildableReference
35+
BuildableIdentifier = "primary"
36+
BlueprintIdentifier = "298D7C491BC2C7B200FD3B3E"
37+
BuildableName = "AFNetworking Mac OS X Tests.xctest"
38+
BlueprintName = "AFNetworking Mac OS X Tests"
39+
ReferencedContainer = "container:AFNetworking.xcodeproj">
40+
</BuildableReference>
41+
<SkippedTests>
42+
<Test
43+
Identifier = "AFSecurityPolicyTests/testPolicyWithCertificatePinningAllowsGoogleComServerTrustIncompleteChainWithRootCertificatePinnedAndValidDomainName">
44+
</Test>
45+
</SkippedTests>
46+
</TestableReference>
47+
</Testables>
48+
<MacroExpansion>
49+
<BuildableReference
50+
BuildableIdentifier = "primary"
51+
BlueprintIdentifier = "299522761BBF136400859F49"
52+
BuildableName = "AFNetworking.framework"
53+
BlueprintName = "AFNetworking OS X"
54+
ReferencedContainer = "container:AFNetworking.xcodeproj">
55+
</BuildableReference>
56+
</MacroExpansion>
57+
<AdditionalOptions>
58+
</AdditionalOptions>
59+
</TestAction>
60+
<LaunchAction
61+
buildConfiguration = "Debug"
62+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
63+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
64+
launchStyle = "0"
65+
useCustomWorkingDirectory = "NO"
66+
ignoresPersistentStateOnLaunch = "NO"
67+
debugDocumentVersioning = "YES"
68+
debugServiceExtension = "internal"
69+
allowLocationSimulation = "YES">
70+
<MacroExpansion>
71+
<BuildableReference
72+
BuildableIdentifier = "primary"
73+
BlueprintIdentifier = "299522761BBF136400859F49"
74+
BuildableName = "AFNetworking.framework"
75+
BlueprintName = "AFNetworking OS X"
76+
ReferencedContainer = "container:AFNetworking.xcodeproj">
77+
</BuildableReference>
78+
</MacroExpansion>
79+
<AdditionalOptions>
80+
</AdditionalOptions>
81+
</LaunchAction>
82+
<ProfileAction
83+
buildConfiguration = "Release"
84+
shouldUseLaunchSchemeArgsEnv = "YES"
85+
savedToolIdentifier = ""
86+
useCustomWorkingDirectory = "NO"
87+
debugDocumentVersioning = "YES">
88+
<MacroExpansion>
89+
<BuildableReference
90+
BuildableIdentifier = "primary"
91+
BlueprintIdentifier = "299522761BBF136400859F49"
92+
BuildableName = "AFNetworking.framework"
93+
BlueprintName = "AFNetworking OS X"
94+
ReferencedContainer = "container:AFNetworking.xcodeproj">
95+
</BuildableReference>
96+
</MacroExpansion>
97+
</ProfileAction>
98+
<AnalyzeAction
99+
buildConfiguration = "Debug">
100+
</AnalyzeAction>
101+
<ArchiveAction
102+
buildConfiguration = "Release"
103+
revealArchiveInOrganizer = "YES">
104+
</ArchiveAction>
105+
</Scheme>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0700"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "NO"
12+
buildForProfiling = "NO"
13+
buildForArchiving = "NO"
14+
buildForAnalyzing = "NO">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "298D7C3A1BC2C79500FD3B3E"
18+
BuildableName = "AFNetworking iOS Tests.xctest"
19+
BlueprintName = "AFNetworking iOS Tests"
20+
ReferencedContainer = "container:AFNetworking.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
<BuildActionEntry
24+
buildForTesting = "YES"
25+
buildForRunning = "YES"
26+
buildForProfiling = "YES"
27+
buildForArchiving = "YES"
28+
buildForAnalyzing = "YES">
29+
<BuildableReference
30+
BuildableIdentifier = "primary"
31+
BlueprintIdentifier = "299522381BBF104D00859F49"
32+
BuildableName = "AFNetworking.framework"
33+
BlueprintName = "AFNetworking iOS"
34+
ReferencedContainer = "container:AFNetworking.xcodeproj">
35+
</BuildableReference>
36+
</BuildActionEntry>
37+
</BuildActionEntries>
38+
</BuildAction>
39+
<TestAction
40+
buildConfiguration = "Debug"
41+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
42+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43+
shouldUseLaunchSchemeArgsEnv = "YES"
44+
codeCoverageEnabled = "YES">
45+
<Testables>
46+
<TestableReference
47+
skipped = "NO">
48+
<BuildableReference
49+
BuildableIdentifier = "primary"
50+
BlueprintIdentifier = "298D7C3A1BC2C79500FD3B3E"
51+
BuildableName = "AFNetworking iOS Tests.xctest"
52+
BlueprintName = "AFNetworking iOS Tests"
53+
ReferencedContainer = "container:AFNetworking.xcodeproj">
54+
</BuildableReference>
55+
<SkippedTests>
56+
<Test
57+
Identifier = "AFSecurityPolicyTests/testPolicyWithCertificatePinningAllowsGoogleComServerTrustIncompleteChainWithRootCertificatePinnedAndValidDomainName">
58+
</Test>
59+
</SkippedTests>
60+
</TestableReference>
61+
</Testables>
62+
<MacroExpansion>
63+
<BuildableReference
64+
BuildableIdentifier = "primary"
65+
BlueprintIdentifier = "299522381BBF104D00859F49"
66+
BuildableName = "AFNetworking.framework"
67+
BlueprintName = "AFNetworking iOS"
68+
ReferencedContainer = "container:AFNetworking.xcodeproj">
69+
</BuildableReference>
70+
</MacroExpansion>
71+
<AdditionalOptions>
72+
</AdditionalOptions>
73+
</TestAction>
74+
<LaunchAction
75+
buildConfiguration = "Debug"
76+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
77+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
78+
launchStyle = "0"
79+
useCustomWorkingDirectory = "NO"
80+
ignoresPersistentStateOnLaunch = "NO"
81+
debugDocumentVersioning = "YES"
82+
debugServiceExtension = "internal"
83+
allowLocationSimulation = "YES">
84+
<MacroExpansion>
85+
<BuildableReference
86+
BuildableIdentifier = "primary"
87+
BlueprintIdentifier = "299522381BBF104D00859F49"
88+
BuildableName = "AFNetworking.framework"
89+
BlueprintName = "AFNetworking iOS"
90+
ReferencedContainer = "container:AFNetworking.xcodeproj">
91+
</BuildableReference>
92+
</MacroExpansion>
93+
<AdditionalOptions>
94+
</AdditionalOptions>
95+
</LaunchAction>
96+
<ProfileAction
97+
buildConfiguration = "Release"
98+
shouldUseLaunchSchemeArgsEnv = "YES"
99+
savedToolIdentifier = ""
100+
useCustomWorkingDirectory = "NO"
101+
debugDocumentVersioning = "YES">
102+
<MacroExpansion>
103+
<BuildableReference
104+
BuildableIdentifier = "primary"
105+
BlueprintIdentifier = "299522381BBF104D00859F49"
106+
BuildableName = "AFNetworking.framework"
107+
BlueprintName = "AFNetworking iOS"
108+
ReferencedContainer = "container:AFNetworking.xcodeproj">
109+
</BuildableReference>
110+
</MacroExpansion>
111+
</ProfileAction>
112+
<AnalyzeAction
113+
buildConfiguration = "Debug">
114+
</AnalyzeAction>
115+
<ArchiveAction
116+
buildConfiguration = "Release"
117+
revealArchiveInOrganizer = "YES">
118+
</ArchiveAction>
119+
</Scheme>

0 commit comments

Comments
 (0)