-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f96976
commit 35fc85b
Showing
119 changed files
with
19,578 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
highlight-color: "#F89915" | ||
highlight-dark-color: "#E23B1B" | ||
darker-color: "#D8A688" | ||
darker-dark-color: "#E93D1C" | ||
background-color: "#E9DFDB" | ||
alt-link-color: "#E23B1B" | ||
warning-color: "#E23B1B" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Xcode | ||
.DS_Store | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
*.xcworkspace | ||
!default.xcworkspace | ||
xcuserdata | ||
profile | ||
*.moved-aside | ||
DerivedData | ||
.idea/ | ||
Tests/Pods | ||
Tests/Podfile.lock | ||
Tests/AFNetworking Tests.xcodeproj/xcshareddata/xcschemes/ | ||
AFNetworking.framework.zip | ||
|
||
# Fastlane | ||
/fastlane/report.xml | ||
/fastlane/.env*private* | ||
fastlane/test-output/* | ||
|
||
Carthage/Build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AFNetworking' | ||
s.version = '3.0.4' | ||
s.license = 'MIT' | ||
s.summary = 'A delightful iOS and OS X networking framework.' | ||
s.homepage = 'https://github.com/AFNetworking/AFNetworking' | ||
s.social_media_url = 'https://twitter.com/AFNetworking' | ||
s.authors = { 'Mattt Thompson' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => s.version, :submodules => true } | ||
s.requires_arc = true | ||
|
||
s.public_header_files = 'AFNetworking/AFNetworking.h' | ||
s.source_files = 'AFNetworking/AFNetworking.h' | ||
|
||
pch_AF = <<-EOS | ||
#ifndef TARGET_OS_IOS | ||
#define TARGET_OS_IOS TARGET_OS_IPHONE | ||
#endif | ||
#ifndef TARGET_OS_WATCH | ||
#define TARGET_OS_WATCH 0 | ||
#endif | ||
#ifndef TARGET_OS_TV | ||
#define TARGET_OS_TV 0 | ||
#endif | ||
EOS | ||
s.prefix_header_contents = pch_AF | ||
|
||
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.subspec 'Serialization' do |ss| | ||
ss.source_files = 'AFNetworking/AFURL{Request,Response}Serialization.{h,m}' | ||
ss.public_header_files = 'AFNetworking/AFURL{Request,Response}Serialization.h' | ||
ss.watchos.frameworks = 'MobileCoreServices', 'CoreGraphics' | ||
ss.ios.frameworks = 'MobileCoreServices', 'CoreGraphics' | ||
ss.osx.frameworks = 'CoreServices' | ||
end | ||
|
||
s.subspec 'Security' do |ss| | ||
ss.source_files = 'AFNetworking/AFSecurityPolicy.{h,m}' | ||
ss.public_header_files = 'AFNetworking/AFSecurityPolicy.h' | ||
ss.frameworks = 'Security' | ||
end | ||
|
||
s.subspec 'Reachability' do |ss| | ||
ss.ios.deployment_target = '7.0' | ||
ss.osx.deployment_target = '10.9' | ||
ss.tvos.deployment_target = '9.0' | ||
|
||
ss.source_files = 'AFNetworking/AFNetworkReachabilityManager.{h,m}' | ||
ss.public_header_files = 'AFNetworking/AFNetworkReachabilityManager.h' | ||
|
||
ss.frameworks = 'SystemConfiguration' | ||
end | ||
|
||
s.subspec 'NSURLSession' do |ss| | ||
ss.dependency 'AFNetworking/Serialization' | ||
ss.ios.dependency 'AFNetworking/Reachability' | ||
ss.osx.dependency 'AFNetworking/Reachability' | ||
ss.tvos.dependency 'AFNetworking/Reachability' | ||
ss.dependency 'AFNetworking/Security' | ||
|
||
ss.source_files = 'AFNetworking/AF{URL,HTTP}SessionManager.{h,m}' | ||
ss.public_header_files = 'AFNetworking/AF{URL,HTTP}SessionManager.h' | ||
end | ||
|
||
s.subspec 'UIKit' do |ss| | ||
ss.ios.deployment_target = '7.0' | ||
ss.tvos.deployment_target = '9.0' | ||
ss.dependency 'AFNetworking/NSURLSession' | ||
|
||
ss.public_header_files = 'UIKit+AFNetworking/*.h' | ||
ss.source_files = 'UIKit+AFNetworking' | ||
end | ||
end |
1,512 changes: 1,512 additions & 0 deletions
1,512
its/plugin/projects/AFNetworking/AFNetworking.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
105 changes: 105 additions & 0 deletions
105
...cts/AFNetworking/AFNetworking.xcodeproj/xcshareddata/xcschemes/AFNetworking OS X.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "0700" | ||
version = "1.3"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522761BBF136400859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking OS X" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
codeCoverageEnabled = "YES"> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "298D7C491BC2C7B200FD3B3E" | ||
BuildableName = "AFNetworking Mac OS X Tests.xctest" | ||
BlueprintName = "AFNetworking Mac OS X Tests" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
<SkippedTests> | ||
<Test | ||
Identifier = "AFSecurityPolicyTests/testPolicyWithCertificatePinningAllowsGoogleComServerTrustIncompleteChainWithRootCertificatePinnedAndValidDomainName"> | ||
</Test> | ||
</SkippedTests> | ||
</TestableReference> | ||
</Testables> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522761BBF136400859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking OS X" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522761BBF136400859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking OS X" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522761BBF136400859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking OS X" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
119 changes: 119 additions & 0 deletions
119
...ects/AFNetworking/AFNetworking.xcodeproj/xcshareddata/xcschemes/AFNetworking iOS.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "0700" | ||
version = "1.3"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "NO" | ||
buildForProfiling = "NO" | ||
buildForArchiving = "NO" | ||
buildForAnalyzing = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "298D7C3A1BC2C79500FD3B3E" | ||
BuildableName = "AFNetworking iOS Tests.xctest" | ||
BlueprintName = "AFNetworking iOS Tests" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522381BBF104D00859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking iOS" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
codeCoverageEnabled = "YES"> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "298D7C3A1BC2C79500FD3B3E" | ||
BuildableName = "AFNetworking iOS Tests.xctest" | ||
BlueprintName = "AFNetworking iOS Tests" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
<SkippedTests> | ||
<Test | ||
Identifier = "AFSecurityPolicyTests/testPolicyWithCertificatePinningAllowsGoogleComServerTrustIncompleteChainWithRootCertificatePinnedAndValidDomainName"> | ||
</Test> | ||
</SkippedTests> | ||
</TestableReference> | ||
</Testables> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522381BBF104D00859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking iOS" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522381BBF104D00859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking iOS" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
<AdditionalOptions> | ||
</AdditionalOptions> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<MacroExpansion> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "299522381BBF104D00859F49" | ||
BuildableName = "AFNetworking.framework" | ||
BlueprintName = "AFNetworking iOS" | ||
ReferencedContainer = "container:AFNetworking.xcodeproj"> | ||
</BuildableReference> | ||
</MacroExpansion> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
Oops, something went wrong.