diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..93c86d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# OS X +.DS_Store + +# Xcode +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata/ +*.xccheckout +profile +*.moved-aside +DerivedData +*.hmap +*.ipa + +# Bundler +.bundle + +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# +# Note: if you ignore the Pods directory, make sure to uncomment +# `pod install` in .travis.yml +# +# Pods/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..29985fc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +# references: +# * https://www.objc.io/issues/6-build-tools/travis-ci/ +# * https://github.com/supermarin/xcpretty#usage + +osx_image: xcode7.3 +language: objective-c +# cache: cocoapods +# podfile: Example/Podfile +# before_install: +# - gem install cocoapods # Since Travis is not always on latest version +# - pod install --project-directory=Example +script: +- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/AlamofireKit.xcworkspace -scheme AlamofireKit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty +- pod lib lint diff --git a/AlamofireKit.podspec b/AlamofireKit.podspec new file mode 100644 index 0000000..7be85ad --- /dev/null +++ b/AlamofireKit.podspec @@ -0,0 +1,58 @@ +# +# Be sure to run `pod lib lint AlamofireKit.podspec' to ensure this is a +# valid spec before submitting. +# +# Any lines starting with a # are optional, but their use is encouraged +# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html +# +# CREATE +# * pod lib create AlamofireKit +# * ios>swift>yes>None>No +# * Push to git and release +# * pod trunk register rashedgit@gmail.com 'Rz Rasel' +# * pod lib lint AlamofireKit.podspec --allow-warnings +# * pod trunk push --allow-warnings +# UPDATE +# * pod lib lint --allow-warnings +# * Push to git and release +# * pod trunk push --allow-warnings ORRR>> pod trunk push AlamofireKit.podspec --allow-warnings +# AlamofireKit Version = 0.1.0 + + +Pod::Spec.new do |s| + s.name = 'AlamofireKit' + s.version = '0.1.0' + s.summary = 'A short description of AlamofireKit.' + +# This description is used to generate tags and improve search results. +# * Think: What does it do? Why did you write it? What is the focus? +# * Try to keep it short, snappy and to the point. +# * Write the description between the DESC delimiters below. +# * Finally, don't worry about the indent, CocoaPods strips it! + + s.description = <<-DESC + 'A short description of AlamofireKit.' + DESC + + s.homepage = 'https://github.com/arzrasel/AlamofireKit' + # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'Rz Rasel' => 'rashedgit@gmail.com' } + s.source = { :git => 'https://github.com/arzrasel/AlamofireKit.git', :tag => s.version.to_s } + # s.social_media_url = 'https://twitter.com/' + + #s.ios.deployment_target = '9.0' + + s.ios.deployment_target = '11.0' + + s.source_files = 'Source/**/*.swift' + + # s.resource_bundles = { + # 'AlamofireKit' => ['AlamofireKit/Assets/*.png'] + # } + + # s.public_header_files = 'Pod/Classes/**/*.h' + # s.frameworks = 'UIKit', 'MapKit' + # s.dependency 'AFNetworking', '~> 2.3' + s.dependency 'Alamofire', '~> 5.1' +end diff --git a/AlamofireKit/Assets/.gitkeep b/AlamofireKit/Assets/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/AlamofireKit/Classes/.gitkeep b/AlamofireKit/Classes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Example/AlamofireKit.xcodeproj/project.pbxproj b/Example/AlamofireKit.xcodeproj/project.pbxproj new file mode 100644 index 0000000..fe3a0d2 --- /dev/null +++ b/Example/AlamofireKit.xcodeproj/project.pbxproj @@ -0,0 +1,579 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1BE44FD2FF9A6B0D78987DD1 /* Pods_AlamofireKit_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E20A9D8F9C76FE60395CA8E /* Pods_AlamofireKit_Example.framework */; }; + 58B4B48B70951501BF5FCDA0 /* Pods_AlamofireKit_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BB2F1AB1D0643C2307D4C53 /* Pods_AlamofireKit_Tests.framework */; }; + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; + 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; + 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; + 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 607FACC81AFB9204008FA782 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 607FACCF1AFB9204008FA782; + remoteInfo = AlamofireKit; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 2240D15793376EA6DC7F757B /* Pods-AlamofireKit_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AlamofireKit_Example.debug.xcconfig"; path = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.debug.xcconfig"; sourceTree = ""; }; + 299207FCF74DE3E9E9A7E971 /* Pods-AlamofireKit_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AlamofireKit_Example.release.xcconfig"; path = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.release.xcconfig"; sourceTree = ""; }; + 4BB2F1AB1D0643C2307D4C53 /* Pods_AlamofireKit_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AlamofireKit_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 52E4A02E5E703839E5C5E78F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; + 5E20A9D8F9C76FE60395CA8E /* Pods_AlamofireKit_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AlamofireKit_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACD01AFB9204008FA782 /* AlamofireKit_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AlamofireKit_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; + 607FACE51AFB9204008FA782 /* AlamofireKit_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AlamofireKit_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; + 7A62DAC6F12D4129D586D3C5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + 947AC5850C92C1FBB60300D9 /* Pods-AlamofireKit_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AlamofireKit_Tests.debug.xcconfig"; path = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.debug.xcconfig"; sourceTree = ""; }; + D45BE23A194BA09E04B4F54D /* Pods-AlamofireKit_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AlamofireKit_Tests.release.xcconfig"; path = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.release.xcconfig"; sourceTree = ""; }; + F122904FE94182C18472067B /* AlamofireKit.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = AlamofireKit.podspec; path = ../AlamofireKit.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 607FACCD1AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1BE44FD2FF9A6B0D78987DD1 /* Pods_AlamofireKit_Example.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE21AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 58B4B48B70951501BF5FCDA0 /* Pods_AlamofireKit_Tests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 607FACC71AFB9204008FA782 = { + isa = PBXGroup; + children = ( + 607FACF51AFB993E008FA782 /* Podspec Metadata */, + 607FACD21AFB9204008FA782 /* Example for AlamofireKit */, + 607FACE81AFB9204008FA782 /* Tests */, + 607FACD11AFB9204008FA782 /* Products */, + C0E7AF3458D21D0A6856F2B1 /* Pods */, + 60AF57CBA246C4CE3C025DB7 /* Frameworks */, + ); + sourceTree = ""; + }; + 607FACD11AFB9204008FA782 /* Products */ = { + isa = PBXGroup; + children = ( + 607FACD01AFB9204008FA782 /* AlamofireKit_Example.app */, + 607FACE51AFB9204008FA782 /* AlamofireKit_Tests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 607FACD21AFB9204008FA782 /* Example for AlamofireKit */ = { + isa = PBXGroup; + children = ( + 607FACD51AFB9204008FA782 /* AppDelegate.swift */, + 607FACD71AFB9204008FA782 /* ViewController.swift */, + 607FACD91AFB9204008FA782 /* Main.storyboard */, + 607FACDC1AFB9204008FA782 /* Images.xcassets */, + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, + 607FACD31AFB9204008FA782 /* Supporting Files */, + ); + name = "Example for AlamofireKit"; + path = AlamofireKit; + sourceTree = ""; + }; + 607FACD31AFB9204008FA782 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 607FACD41AFB9204008FA782 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 607FACE81AFB9204008FA782 /* Tests */ = { + isa = PBXGroup; + children = ( + 607FACEB1AFB9204008FA782 /* Tests.swift */, + 607FACE91AFB9204008FA782 /* Supporting Files */, + ); + path = Tests; + sourceTree = ""; + }; + 607FACE91AFB9204008FA782 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 607FACEA1AFB9204008FA782 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { + isa = PBXGroup; + children = ( + F122904FE94182C18472067B /* AlamofireKit.podspec */, + 52E4A02E5E703839E5C5E78F /* README.md */, + 7A62DAC6F12D4129D586D3C5 /* LICENSE */, + ); + name = "Podspec Metadata"; + sourceTree = ""; + }; + 60AF57CBA246C4CE3C025DB7 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5E20A9D8F9C76FE60395CA8E /* Pods_AlamofireKit_Example.framework */, + 4BB2F1AB1D0643C2307D4C53 /* Pods_AlamofireKit_Tests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C0E7AF3458D21D0A6856F2B1 /* Pods */ = { + isa = PBXGroup; + children = ( + 2240D15793376EA6DC7F757B /* Pods-AlamofireKit_Example.debug.xcconfig */, + 299207FCF74DE3E9E9A7E971 /* Pods-AlamofireKit_Example.release.xcconfig */, + 947AC5850C92C1FBB60300D9 /* Pods-AlamofireKit_Tests.debug.xcconfig */, + D45BE23A194BA09E04B4F54D /* Pods-AlamofireKit_Tests.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 607FACCF1AFB9204008FA782 /* AlamofireKit_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AlamofireKit_Example" */; + buildPhases = ( + D464A9A6DEB25C03086DC3AF /* [CP] Check Pods Manifest.lock */, + 607FACCC1AFB9204008FA782 /* Sources */, + 607FACCD1AFB9204008FA782 /* Frameworks */, + 607FACCE1AFB9204008FA782 /* Resources */, + 4EBC3E3AF78C47BBBCD8D2CA /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = AlamofireKit_Example; + productName = AlamofireKit; + productReference = 607FACD01AFB9204008FA782 /* AlamofireKit_Example.app */; + productType = "com.apple.product-type.application"; + }; + 607FACE41AFB9204008FA782 /* AlamofireKit_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AlamofireKit_Tests" */; + buildPhases = ( + F174D5AAA0760907582FF3B7 /* [CP] Check Pods Manifest.lock */, + 607FACE11AFB9204008FA782 /* Sources */, + 607FACE21AFB9204008FA782 /* Frameworks */, + 607FACE31AFB9204008FA782 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 607FACE71AFB9204008FA782 /* PBXTargetDependency */, + ); + name = AlamofireKit_Tests; + productName = Tests; + productReference = 607FACE51AFB9204008FA782 /* AlamofireKit_Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 607FACC81AFB9204008FA782 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0830; + LastUpgradeCheck = 0830; + ORGANIZATIONNAME = CocoaPods; + TargetAttributes = { + 607FACCF1AFB9204008FA782 = { + CreatedOnToolsVersion = 6.3.1; + LastSwiftMigration = 0900; + }; + 607FACE41AFB9204008FA782 = { + CreatedOnToolsVersion = 6.3.1; + LastSwiftMigration = 0900; + TestTargetID = 607FACCF1AFB9204008FA782; + }; + }; + }; + buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "AlamofireKit" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + English, + en, + Base, + ); + mainGroup = 607FACC71AFB9204008FA782; + productRefGroup = 607FACD11AFB9204008FA782 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 607FACCF1AFB9204008FA782 /* AlamofireKit_Example */, + 607FACE41AFB9204008FA782 /* AlamofireKit_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 607FACCE1AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE31AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 4EBC3E3AF78C47BBBCD8D2CA /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/AlamofireKit/AlamofireKit.framework", + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AlamofireKit.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + D464A9A6DEB25C03086DC3AF /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-AlamofireKit_Example-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + F174D5AAA0760907582FF3B7 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-AlamofireKit_Tests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 607FACCC1AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACE11AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 607FACCF1AFB9204008FA782 /* AlamofireKit_Example */; + targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 607FACD91AFB9204008FA782 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 607FACDA1AFB9204008FA782 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { + isa = PBXVariantGroup; + children = ( + 607FACDF1AFB9204008FA782 /* Base */, + ); + name = LaunchScreen.xib; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 607FACED1AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 607FACEE1AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 607FACF01AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2240D15793376EA6DC7F757B /* Pods-AlamofireKit_Example.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + INFOPLIST_FILE = AlamofireKit/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_SWIFT3_OBJC_INFERENCE = Default; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + 607FACF11AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 299207FCF74DE3E9E9A7E971 /* Pods-AlamofireKit_Example.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + INFOPLIST_FILE = AlamofireKit/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_SWIFT3_OBJC_INFERENCE = Default; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + 607FACF31AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 947AC5850C92C1FBB60300D9 /* Pods-AlamofireKit_Tests.debug.xcconfig */; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + "$(inherited)", + ); + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_SWIFT3_OBJC_INFERENCE = Default; + SWIFT_VERSION = 4.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AlamofireKit_Example.app/AlamofireKit_Example"; + }; + name = Debug; + }; + 607FACF41AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D45BE23A194BA09E04B4F54D /* Pods-AlamofireKit_Tests.release.xcconfig */; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + "$(inherited)", + ); + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_SWIFT3_OBJC_INFERENCE = Default; + SWIFT_VERSION = 4.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AlamofireKit_Example.app/AlamofireKit_Example"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "AlamofireKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACED1AFB9204008FA782 /* Debug */, + 607FACEE1AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AlamofireKit_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF01AFB9204008FA782 /* Debug */, + 607FACF11AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "AlamofireKit_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF31AFB9204008FA782 /* Debug */, + 607FACF41AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 607FACC81AFB9204008FA782 /* Project object */; +} diff --git a/Example/AlamofireKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/AlamofireKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..6fb46bd --- /dev/null +++ b/Example/AlamofireKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Example/AlamofireKit.xcodeproj/xcshareddata/xcschemes/AlamofireKit-Example.xcscheme b/Example/AlamofireKit.xcodeproj/xcshareddata/xcschemes/AlamofireKit-Example.xcscheme new file mode 100644 index 0000000..0525495 --- /dev/null +++ b/Example/AlamofireKit.xcodeproj/xcshareddata/xcschemes/AlamofireKit-Example.xcscheme @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/AlamofireKit.xcworkspace/contents.xcworkspacedata b/Example/AlamofireKit.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..0e0e68b --- /dev/null +++ b/Example/AlamofireKit.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Example/AlamofireKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Example/AlamofireKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Example/AlamofireKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Example/AlamofireKit/AppDelegate.swift b/Example/AlamofireKit/AppDelegate.swift new file mode 100644 index 0000000..79a3e84 --- /dev/null +++ b/Example/AlamofireKit/AppDelegate.swift @@ -0,0 +1,46 @@ +// +// AppDelegate.swift +// AlamofireKit +// +// Created by Rashed on 01/24/2021. +// Copyright (c) 2021 Rashed. All rights reserved. +// + +import UIKit + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + func applicationWillResignActive(_ application: UIApplication) { + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. + } + + func applicationDidEnterBackground(_ application: UIApplication) { + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. + } + + func applicationWillEnterForeground(_ application: UIApplication) { + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. + } + + func applicationDidBecomeActive(_ application: UIApplication) { + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + } + + func applicationWillTerminate(_ application: UIApplication) { + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. + } + + +} + diff --git a/Example/AlamofireKit/Base.lproj/LaunchScreen.xib b/Example/AlamofireKit/Base.lproj/LaunchScreen.xib new file mode 100644 index 0000000..4508516 --- /dev/null +++ b/Example/AlamofireKit/Base.lproj/LaunchScreen.xib @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/AlamofireKit/Base.lproj/Main.storyboard b/Example/AlamofireKit/Base.lproj/Main.storyboard new file mode 100644 index 0000000..b0af58e --- /dev/null +++ b/Example/AlamofireKit/Base.lproj/Main.storyboard @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/AlamofireKit/Images.xcassets/AppIcon.appiconset/Contents.json b/Example/AlamofireKit/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..7006c9e --- /dev/null +++ b/Example/AlamofireKit/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,53 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "3x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/Example/AlamofireKit/Info.plist b/Example/AlamofireKit/Info.plist new file mode 100644 index 0000000..eb18faa --- /dev/null +++ b/Example/AlamofireKit/Info.plist @@ -0,0 +1,39 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + + + diff --git a/Example/AlamofireKit/ViewController.swift b/Example/AlamofireKit/ViewController.swift new file mode 100644 index 0000000..81ce31b --- /dev/null +++ b/Example/AlamofireKit/ViewController.swift @@ -0,0 +1,24 @@ +// +// ViewController.swift +// AlamofireKit +// +// Created by Rashed on 01/24/2021. +// Copyright (c) 2021 Rashed. All rights reserved. +// + +import UIKit + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view, typically from a nib. + } + + override func didReceiveMemoryWarning() { + super.didReceiveMemoryWarning() + // Dispose of any resources that can be recreated. + } + +} + diff --git a/Example/Podfile b/Example/Podfile new file mode 100644 index 0000000..e06ba41 --- /dev/null +++ b/Example/Podfile @@ -0,0 +1,13 @@ +use_frameworks! + +platform :ios, '9.0' + +target 'AlamofireKit_Example' do + pod 'AlamofireKit', :path => '../' + + target 'AlamofireKit_Tests' do + inherit! :search_paths + + + end +end diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..ff46e24 --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - AlamofireKit (0.1.0) + +DEPENDENCIES: + - AlamofireKit (from `../`) + +EXTERNAL SOURCES: + AlamofireKit: + :path: "../" + +SPEC CHECKSUMS: + AlamofireKit: 9905a4f41629979eea860e210c91dc56dbc5befa + +PODFILE CHECKSUM: cd984712aebca2130f4ba1c488e183a75e0906ae + +COCOAPODS: 1.10.1 diff --git a/Example/Pods/Local Podspecs/AlamofireKit.podspec.json b/Example/Pods/Local Podspecs/AlamofireKit.podspec.json new file mode 100644 index 0000000..4210036 --- /dev/null +++ b/Example/Pods/Local Podspecs/AlamofireKit.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "AlamofireKit", + "version": "0.1.0", + "summary": "A short description of AlamofireKit.", + "description": "TODO: Add long description of the pod here.", + "homepage": "https://github.com/Rashed/AlamofireKit", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "Rashed": "rashedgit@gmail.com" + }, + "source": { + "git": "https://github.com/Rashed/AlamofireKit.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "9.0" + }, + "source_files": "AlamofireKit/Classes/**/*" +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..ff46e24 --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - AlamofireKit (0.1.0) + +DEPENDENCIES: + - AlamofireKit (from `../`) + +EXTERNAL SOURCES: + AlamofireKit: + :path: "../" + +SPEC CHECKSUMS: + AlamofireKit: 9905a4f41629979eea860e210c91dc56dbc5befa + +PODFILE CHECKSUM: cd984712aebca2130f4ba1c488e183a75e0906ae + +COCOAPODS: 1.10.1 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..abde255 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,777 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 0040058C9ACC25F342948E3F54C1CA77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + 1785C4D052896C0D353AC17B6469037F /* Pods-AlamofireKit_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 93478F65ED02B183959C0A9811104399 /* Pods-AlamofireKit_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 31F634D071B8B35756BD6D050B33AB0C /* AlamofireKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BF15AC02FEEF0D5CB575200B9CB865 /* AlamofireKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E70F512E0C9B49107D19B72FE2169B6 /* AlamofireKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC94A5A1C3BC1A67C70495F30C01CBA5 /* AlamofireKit.swift */; }; + 84EB06133A827345FBF9CCBE15FD4E5B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + 9DF9036CCB49E57B42A302CDCDAC52C2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + B7A0AFF4EB3E124C5635544B1B058816 /* Pods-AlamofireKit_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C068CC400C1AC8B4516928317688030F /* Pods-AlamofireKit_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C4F143C1164903E87CE1293160AE2BD9 /* AlamofireKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F99F0B1AF64D8758825217706C63C7EB /* AlamofireKit-dummy.m */; }; + D0CD1885028ADEF828A88A27EC3E8099 /* Pods-AlamofireKit_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC80260C8837488FEDC8870FD36FD325 /* Pods-AlamofireKit_Tests-dummy.m */; }; + D8C48CF0E05BD721CF33917EB9804EC5 /* Pods-AlamofireKit_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3998B26771AF2A2DED2A0FB187266214 /* Pods-AlamofireKit_Example-dummy.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 83C554AECBBC61CA58A9476711763F6B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 965D9FF03B3B31263B113B5EDFA901E0; + remoteInfo = AlamofireKit; + }; + FCC0322A163CFE8437D5DD902972D455 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 572B52CE03E326B728861FBC253A1C74; + remoteInfo = "Pods-AlamofireKit_Example"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 093FD39916334B33CA66236EEA1A943F /* Pods-AlamofireKit_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AlamofireKit_Tests-acknowledgements.plist"; sourceTree = ""; }; + 160BB48E6C29D48D802C3628D4CFCB7B /* AlamofireKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AlamofireKit.release.xcconfig; sourceTree = ""; }; + 3043526CA4DBC8F9BE4C8971144E8D5E /* Pods-AlamofireKit_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AlamofireKit_Example-frameworks.sh"; sourceTree = ""; }; + 35369DF5F103A7EB341CE8C704440D57 /* Pods-AlamofireKit_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AlamofireKit_Example-Info.plist"; sourceTree = ""; }; + 3998B26771AF2A2DED2A0FB187266214 /* Pods-AlamofireKit_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AlamofireKit_Example-dummy.m"; sourceTree = ""; }; + 440C8593CB2798322A01A1A9B2A3EB43 /* Pods-AlamofireKit_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AlamofireKit_Tests.debug.xcconfig"; sourceTree = ""; }; + 4A36C68A17FA15D620257C7939391AB0 /* AlamofireKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireKit-prefix.pch"; sourceTree = ""; }; + 58A96F64A8E4F1FDE706D965DB521AE5 /* AlamofireKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AlamofireKit.modulemap; sourceTree = ""; }; + 5A6A8F55BAF798B185C881D3536B39F9 /* Pods-AlamofireKit_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AlamofireKit_Example.debug.xcconfig"; sourceTree = ""; }; + 6160F627F41D3052ECA4B766C7E531F5 /* Pods-AlamofireKit_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AlamofireKit_Example.release.xcconfig"; sourceTree = ""; }; + 6E0672A00F4086C2CBE81A75EEF41684 /* Pods-AlamofireKit_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AlamofireKit_Example-acknowledgements.plist"; sourceTree = ""; }; + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 93478F65ED02B183959C0A9811104399 /* Pods-AlamofireKit_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AlamofireKit_Tests-umbrella.h"; sourceTree = ""; }; + 9BE7EFEC84A5D868F9BAE0C3B9DF8F2A /* Pods-AlamofireKit_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AlamofireKit_Tests-acknowledgements.markdown"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A709C734D2962A35EBCCC90053CC1F7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + A727102CC42A32DA9AFC7E1837BF4A94 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + AC94A5A1C3BC1A67C70495F30C01CBA5 /* AlamofireKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AlamofireKit.swift; sourceTree = ""; }; + AD46FF4868503AFC6C4C81F7D687C514 /* Pods-AlamofireKit_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AlamofireKit_Tests-Info.plist"; sourceTree = ""; }; + B34194D16C81417A96760A4CB5A86C47 /* AlamofireKit.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = AlamofireKit.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B876B99BD288B122BCED4993D9AC5F7A /* Pods_AlamofireKit_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AlamofireKit_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B9DA88E41971FBCC7818EBBEAFB2FA3B /* Pods_AlamofireKit_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AlamofireKit_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BD15A48BB8C8892350B4E15342E4B8C3 /* Pods-AlamofireKit_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AlamofireKit_Tests.modulemap"; sourceTree = ""; }; + C068CC400C1AC8B4516928317688030F /* Pods-AlamofireKit_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AlamofireKit_Example-umbrella.h"; sourceTree = ""; }; + CEA474F70EB6925EAE67778295239EB6 /* Pods-AlamofireKit_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AlamofireKit_Tests.release.xcconfig"; sourceTree = ""; }; + DC80260C8837488FEDC8870FD36FD325 /* Pods-AlamofireKit_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AlamofireKit_Tests-dummy.m"; sourceTree = ""; }; + DFFA0747E0BC2D271C74D946627A2582 /* AlamofireKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AlamofireKit-Info.plist"; sourceTree = ""; }; + E19BCC94DC3F41DF2100D44F68430421 /* AlamofireKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AlamofireKit.debug.xcconfig; sourceTree = ""; }; + E1BF15AC02FEEF0D5CB575200B9CB865 /* AlamofireKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireKit-umbrella.h"; sourceTree = ""; }; + E993DDC10808BD93DD15282C336CA3DF /* AlamofireKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EB592262CE536E2C8F19E6D85AA95147 /* Pods-AlamofireKit_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AlamofireKit_Example.modulemap"; sourceTree = ""; }; + F99F0B1AF64D8758825217706C63C7EB /* AlamofireKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AlamofireKit-dummy.m"; sourceTree = ""; }; + FE1000AF2F902EF1E930E1982D121EDC /* Pods-AlamofireKit_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AlamofireKit_Example-acknowledgements.markdown"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 01336FAE738E5A49FC1B2DE329F6CA0B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0040058C9ACC25F342948E3F54C1CA77 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1454010D38001D1678826D4C97C2E555 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9DF9036CCB49E57B42A302CDCDAC52C2 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D8D57E2717C3F772FD5E0BA5538A9677 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 84EB06133A827345FBF9CCBE15FD4E5B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0F782D9808F35481AC9C4EC6FC5DA66B /* Support Files */ = { + isa = PBXGroup; + children = ( + 58A96F64A8E4F1FDE706D965DB521AE5 /* AlamofireKit.modulemap */, + F99F0B1AF64D8758825217706C63C7EB /* AlamofireKit-dummy.m */, + DFFA0747E0BC2D271C74D946627A2582 /* AlamofireKit-Info.plist */, + 4A36C68A17FA15D620257C7939391AB0 /* AlamofireKit-prefix.pch */, + E1BF15AC02FEEF0D5CB575200B9CB865 /* AlamofireKit-umbrella.h */, + E19BCC94DC3F41DF2100D44F68430421 /* AlamofireKit.debug.xcconfig */, + 160BB48E6C29D48D802C3628D4CFCB7B /* AlamofireKit.release.xcconfig */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/AlamofireKit"; + sourceTree = ""; + }; + 578452D2E740E91742655AC8F1636D1F /* iOS */ = { + isa = PBXGroup; + children = ( + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 5FED9212C25D1531815D752EB47CACB5 /* Products */ = { + isa = PBXGroup; + children = ( + E993DDC10808BD93DD15282C336CA3DF /* AlamofireKit.framework */, + B876B99BD288B122BCED4993D9AC5F7A /* Pods_AlamofireKit_Example.framework */, + B9DA88E41971FBCC7818EBBEAFB2FA3B /* Pods_AlamofireKit_Tests.framework */, + ); + name = Products; + sourceTree = ""; + }; + 6BC3731A4BA120344831D493A83176C1 /* AlamofireKit */ = { + isa = PBXGroup; + children = ( + 880E58B625BD951600378AEA /* Source */, + FBBF8A17ADE00C118951C0260F1FD07E /* Pod */, + 0F782D9808F35481AC9C4EC6FC5DA66B /* Support Files */, + ); + name = AlamofireKit; + path = ../..; + sourceTree = ""; + }; + 880E58B625BD951600378AEA /* Source */ = { + isa = PBXGroup; + children = ( + AC94A5A1C3BC1A67C70495F30C01CBA5 /* AlamofireKit.swift */, + ); + path = Source; + sourceTree = ""; + }; + B3944A80AF540042FC62CA2A5A0862A3 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 6BC3731A4BA120344831D493A83176C1 /* AlamofireKit */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + C6B748A34F494CE9767255406E4C5DCB /* Pods-AlamofireKit_Tests */ = { + isa = PBXGroup; + children = ( + BD15A48BB8C8892350B4E15342E4B8C3 /* Pods-AlamofireKit_Tests.modulemap */, + 9BE7EFEC84A5D868F9BAE0C3B9DF8F2A /* Pods-AlamofireKit_Tests-acknowledgements.markdown */, + 093FD39916334B33CA66236EEA1A943F /* Pods-AlamofireKit_Tests-acknowledgements.plist */, + DC80260C8837488FEDC8870FD36FD325 /* Pods-AlamofireKit_Tests-dummy.m */, + AD46FF4868503AFC6C4C81F7D687C514 /* Pods-AlamofireKit_Tests-Info.plist */, + 93478F65ED02B183959C0A9811104399 /* Pods-AlamofireKit_Tests-umbrella.h */, + 440C8593CB2798322A01A1A9B2A3EB43 /* Pods-AlamofireKit_Tests.debug.xcconfig */, + CEA474F70EB6925EAE67778295239EB6 /* Pods-AlamofireKit_Tests.release.xcconfig */, + ); + name = "Pods-AlamofireKit_Tests"; + path = "Target Support Files/Pods-AlamofireKit_Tests"; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + B3944A80AF540042FC62CA2A5A0862A3 /* Development Pods */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + 5FED9212C25D1531815D752EB47CACB5 /* Products */, + EAA10B171400094D0A03DAEB8AEF39A1 /* Targets Support Files */, + ); + sourceTree = ""; + }; + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 578452D2E740E91742655AC8F1636D1F /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D250BD489B6D934DD1946C501F490DF0 /* Pods-AlamofireKit_Example */ = { + isa = PBXGroup; + children = ( + EB592262CE536E2C8F19E6D85AA95147 /* Pods-AlamofireKit_Example.modulemap */, + FE1000AF2F902EF1E930E1982D121EDC /* Pods-AlamofireKit_Example-acknowledgements.markdown */, + 6E0672A00F4086C2CBE81A75EEF41684 /* Pods-AlamofireKit_Example-acknowledgements.plist */, + 3998B26771AF2A2DED2A0FB187266214 /* Pods-AlamofireKit_Example-dummy.m */, + 3043526CA4DBC8F9BE4C8971144E8D5E /* Pods-AlamofireKit_Example-frameworks.sh */, + 35369DF5F103A7EB341CE8C704440D57 /* Pods-AlamofireKit_Example-Info.plist */, + C068CC400C1AC8B4516928317688030F /* Pods-AlamofireKit_Example-umbrella.h */, + 5A6A8F55BAF798B185C881D3536B39F9 /* Pods-AlamofireKit_Example.debug.xcconfig */, + 6160F627F41D3052ECA4B766C7E531F5 /* Pods-AlamofireKit_Example.release.xcconfig */, + ); + name = "Pods-AlamofireKit_Example"; + path = "Target Support Files/Pods-AlamofireKit_Example"; + sourceTree = ""; + }; + EAA10B171400094D0A03DAEB8AEF39A1 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + D250BD489B6D934DD1946C501F490DF0 /* Pods-AlamofireKit_Example */, + C6B748A34F494CE9767255406E4C5DCB /* Pods-AlamofireKit_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + FBBF8A17ADE00C118951C0260F1FD07E /* Pod */ = { + isa = PBXGroup; + children = ( + B34194D16C81417A96760A4CB5A86C47 /* AlamofireKit.podspec */, + A709C734D2962A35EBCCC90053CC1F7F /* LICENSE */, + A727102CC42A32DA9AFC7E1837BF4A94 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 5B1EF529DCDACA448AC0460962B61E0C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1785C4D052896C0D353AC17B6469037F /* Pods-AlamofireKit_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7AA6DE3ACEBFC99282CBA64C2E7A0DB5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 31F634D071B8B35756BD6D050B33AB0C /* AlamofireKit-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7BA07E16C449D74F0C8795C9745D5FCB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B7A0AFF4EB3E124C5635544B1B058816 /* Pods-AlamofireKit_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 572B52CE03E326B728861FBC253A1C74 /* Pods-AlamofireKit_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 092942984CDE6A2B67240D168C643083 /* Build configuration list for PBXNativeTarget "Pods-AlamofireKit_Example" */; + buildPhases = ( + 7BA07E16C449D74F0C8795C9745D5FCB /* Headers */, + CF5F8D82C73E5B88211B62D650808EFA /* Sources */, + D8D57E2717C3F772FD5E0BA5538A9677 /* Frameworks */, + 27B34D17C3B6C1687D5AF0FD74F42C0C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 06781F91B08437D14B0CEBEFFDDC54AF /* PBXTargetDependency */, + ); + name = "Pods-AlamofireKit_Example"; + productName = "Pods-AlamofireKit_Example"; + productReference = B876B99BD288B122BCED4993D9AC5F7A /* Pods_AlamofireKit_Example.framework */; + productType = "com.apple.product-type.framework"; + }; + 965D9FF03B3B31263B113B5EDFA901E0 /* AlamofireKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = B5BB02D103E7D8119078A1C37181113F /* Build configuration list for PBXNativeTarget "AlamofireKit" */; + buildPhases = ( + 7AA6DE3ACEBFC99282CBA64C2E7A0DB5 /* Headers */, + 1BBE7962DAF9C07B77EF2DC716FA2A7E /* Sources */, + 1454010D38001D1678826D4C97C2E555 /* Frameworks */, + AEB6DD1B3B0EBA10F35B6A99E68D224E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = AlamofireKit; + productName = AlamofireKit; + productReference = E993DDC10808BD93DD15282C336CA3DF /* AlamofireKit.framework */; + productType = "com.apple.product-type.framework"; + }; + C7743A1153E7A13ABB7153517054B917 /* Pods-AlamofireKit_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FC3829576E143AF9C5432E04442051FA /* Build configuration list for PBXNativeTarget "Pods-AlamofireKit_Tests" */; + buildPhases = ( + 5B1EF529DCDACA448AC0460962B61E0C /* Headers */, + DA0989BDD58C86A40561DB8002A5CD62 /* Sources */, + 01336FAE738E5A49FC1B2DE329F6CA0B /* Frameworks */, + E22D883F3FFD4F149BF603B430EA7282 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F5318F67A169DF8F4BEE7A8FD382564D /* PBXTargetDependency */, + ); + name = "Pods-AlamofireKit_Tests"; + productName = "Pods-AlamofireKit_Tests"; + productReference = B9DA88E41971FBCC7818EBBEAFB2FA3B /* Pods_AlamofireKit_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1100; + LastUpgradeCheck = 1100; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + productRefGroup = 5FED9212C25D1531815D752EB47CACB5 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 965D9FF03B3B31263B113B5EDFA901E0 /* AlamofireKit */, + 572B52CE03E326B728861FBC253A1C74 /* Pods-AlamofireKit_Example */, + C7743A1153E7A13ABB7153517054B917 /* Pods-AlamofireKit_Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 27B34D17C3B6C1687D5AF0FD74F42C0C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AEB6DD1B3B0EBA10F35B6A99E68D224E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E22D883F3FFD4F149BF603B430EA7282 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 1BBE7962DAF9C07B77EF2DC716FA2A7E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C4F143C1164903E87CE1293160AE2BD9 /* AlamofireKit-dummy.m in Sources */, + 6E70F512E0C9B49107D19B72FE2169B6 /* AlamofireKit.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CF5F8D82C73E5B88211B62D650808EFA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D8C48CF0E05BD721CF33917EB9804EC5 /* Pods-AlamofireKit_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DA0989BDD58C86A40561DB8002A5CD62 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D0CD1885028ADEF828A88A27EC3E8099 /* Pods-AlamofireKit_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 06781F91B08437D14B0CEBEFFDDC54AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AlamofireKit; + target = 965D9FF03B3B31263B113B5EDFA901E0 /* AlamofireKit */; + targetProxy = 83C554AECBBC61CA58A9476711763F6B /* PBXContainerItemProxy */; + }; + F5318F67A169DF8F4BEE7A8FD382564D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-AlamofireKit_Example"; + target = 572B52CE03E326B728861FBC253A1C74 /* Pods-AlamofireKit_Example */; + targetProxy = FCC0322A163CFE8437D5DD902972D455 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 07601045F360EEFC3F585B41684ECB05 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 160BB48E6C29D48D802C3628D4CFCB7B /* AlamofireKit.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireKit/AlamofireKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireKit/AlamofireKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireKit/AlamofireKit.modulemap"; + PRODUCT_MODULE_NAME = AlamofireKit; + PRODUCT_NAME = AlamofireKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 12108229DD926E2475AAB6B35CF50F87 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 440C8593CB2798322A01A1A9B2A3EB43 /* Pods-AlamofireKit_Tests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 32182CAB1B7564290E6280A4B9AD11DB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CEA474F70EB6925EAE67778295239EB6 /* Pods-AlamofireKit_Tests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 583FB852C832903D69820DA71E7AAF0F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A6A8F55BAF798B185C881D3536B39F9 /* Pods-AlamofireKit_Example.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 69E4C61A630BE9D8BFD463A2E087BF60 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6160F627F41D3052ECA4B766C7E531F5 /* Pods-AlamofireKit_Example.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + BD9F1FE317C2964F7F3B6D4528655401 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E19BCC94DC3F41DF2100D44F68430421 /* AlamofireKit.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireKit/AlamofireKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireKit/AlamofireKit-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireKit/AlamofireKit.modulemap"; + PRODUCT_MODULE_NAME = AlamofireKit; + PRODUCT_NAME = AlamofireKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 092942984CDE6A2B67240D168C643083 /* Build configuration list for PBXNativeTarget "Pods-AlamofireKit_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 583FB852C832903D69820DA71E7AAF0F /* Debug */, + 69E4C61A630BE9D8BFD463A2E087BF60 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */, + CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B5BB02D103E7D8119078A1C37181113F /* Build configuration list for PBXNativeTarget "AlamofireKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BD9F1FE317C2964F7F3B6D4528655401 /* Debug */, + 07601045F360EEFC3F585B41684ECB05 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FC3829576E143AF9C5432E04442051FA /* Build configuration list for PBXNativeTarget "Pods-AlamofireKit_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 12108229DD926E2475AAB6B35CF50F87 /* Debug */, + 32182CAB1B7564290E6280A4B9AD11DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-Info.plist b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-Info.plist new file mode 100644 index 0000000..161a9d3 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-dummy.m b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-dummy.m new file mode 100644 index 0000000..ae6b568 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_AlamofireKit : NSObject +@end +@implementation PodsDummy_AlamofireKit +@end diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-prefix.pch b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-umbrella.h b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-umbrella.h new file mode 100644 index 0000000..5b9d909 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double AlamofireKitVersionNumber; +FOUNDATION_EXPORT const unsigned char AlamofireKitVersionString[]; + diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.debug.xcconfig b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.debug.xcconfig new file mode 100644 index 0000000..ee1c8b7 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.modulemap b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.modulemap new file mode 100644 index 0000000..4c8a453 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.modulemap @@ -0,0 +1,6 @@ +framework module AlamofireKit { + umbrella header "AlamofireKit-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.release.xcconfig b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.release.xcconfig new file mode 100644 index 0000000..ee1c8b7 --- /dev/null +++ b/Example/Pods/Target Support Files/AlamofireKit/AlamofireKit.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-Info.plist b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.markdown new file mode 100644 index 0000000..81281fc --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## AlamofireKit + +Copyright (c) 2021 Rashed + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.plist new file mode 100644 index 0000000..13cb70a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-acknowledgements.plist @@ -0,0 +1,58 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2021 Rashed <rashedgit@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + AlamofireKit + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-dummy.m b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-dummy.m new file mode 100644 index 0000000..a10496c --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_AlamofireKit_Example : NSObject +@end +@implementation PodsDummy_Pods_AlamofireKit_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-frameworks.sh new file mode 100755 index 0000000..c7ee242 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-frameworks.sh @@ -0,0 +1,185 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +BCSYMBOLMAP_DIR="BCSymbolMaps" + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then + # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied + find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do + echo "Installing $f" + install_bcsymbolmap "$f" "$destination" + rm "$f" + done + rmdir "${source}/${BCSYMBOLMAP_DIR}" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + elif [ -L "${binary}" ]; then + echo "Destination binary is symlinked..." + dirname="$(dirname "${binary}")" + binary="${dirname}/$(readlink "${binary}")" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + warn_missing_arch=${2:-true} + if [ -r "$source" ]; then + # Copy the dSYM into the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .dSYM "$source")" + binary_name="$(ls "$source/Contents/Resources/DWARF")" + binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" + + # Strip invalid architectures from the dSYM. + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then + strip_invalid_archs "$binary" "$warn_missing_arch" + fi + if [[ $STRIP_BINARY_RETVAL == 0 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" + fi + fi +} + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + warn_missing_arch=${2:-true} + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + if [[ "$warn_missing_arch" == "true" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + fi + STRIP_BINARY_RETVAL=1 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=0 +} + +# Copies the bcsymbolmap files of a vendored framework +install_bcsymbolmap() { + local bcsymbolmap_path="$1" + local destination="${BUILT_PRODUCTS_DIR}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identity + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/AlamofireKit/AlamofireKit.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/AlamofireKit/AlamofireKit.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-umbrella.h new file mode 100644 index 0000000..e57c792 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_AlamofireKit_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_AlamofireKit_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.debug.xcconfig new file mode 100644 index 0000000..e281df7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.debug.xcconfig @@ -0,0 +1,14 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit/AlamofireKit.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -framework "AlamofireKit" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.modulemap b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.modulemap new file mode 100644 index 0000000..1cbbd83 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_AlamofireKit_Example { + umbrella header "Pods-AlamofireKit_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.release.xcconfig new file mode 100644 index 0000000..e281df7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Example/Pods-AlamofireKit_Example.release.xcconfig @@ -0,0 +1,14 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit/AlamofireKit.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -framework "AlamofireKit" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-Info.plist b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-dummy.m new file mode 100644 index 0000000..63a8e44 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_AlamofireKit_Tests : NSObject +@end +@implementation PodsDummy_Pods_AlamofireKit_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-umbrella.h new file mode 100644 index 0000000..fb97434 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_AlamofireKit_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_AlamofireKit_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.debug.xcconfig new file mode 100644 index 0000000..a3b84c1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.debug.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit/AlamofireKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "AlamofireKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.modulemap b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.modulemap new file mode 100644 index 0000000..1163eb7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_AlamofireKit_Tests { + umbrella header "Pods-AlamofireKit_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.release.xcconfig new file mode 100644 index 0000000..a3b84c1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-AlamofireKit_Tests/Pods-AlamofireKit_Tests.release.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireKit/AlamofireKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "AlamofireKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Tests/Info.plist b/Example/Tests/Info.plist new file mode 100644 index 0000000..ba72822 --- /dev/null +++ b/Example/Tests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/Example/Tests/Tests.swift b/Example/Tests/Tests.swift new file mode 100644 index 0000000..6494853 --- /dev/null +++ b/Example/Tests/Tests.swift @@ -0,0 +1,28 @@ +import XCTest +import AlamofireKit + +class Tests: XCTestCase { + + override func setUp() { + super.setUp() + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDown() { + // Put teardown code here. This method is called after the invocation of each test method in the class. + super.tearDown() + } + + func testExample() { + // This is an example of a functional test case. + XCTAssert(true, "Pass") + } + + func testPerformanceExample() { + // This is an example of a performance test case. + self.measure() { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0ca2f87 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2021 Rashed + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 6f4148a..72b2a2f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ # AlamofireKit -AlamofireKit + +[![CI Status](https://img.shields.io/travis/Rashed/AlamofireKit.svg?style=flat)](https://travis-ci.org/Rashed/AlamofireKit) +[![Version](https://img.shields.io/cocoapods/v/AlamofireKit.svg?style=flat)](https://cocoapods.org/pods/AlamofireKit) +[![License](https://img.shields.io/cocoapods/l/AlamofireKit.svg?style=flat)](https://cocoapods.org/pods/AlamofireKit) +[![Platform](https://img.shields.io/cocoapods/p/AlamofireKit.svg?style=flat)](https://cocoapods.org/pods/AlamofireKit) + +## Example + +To run the example project, clone the repo, and run `pod install` from the Example directory first. + +## Requirements + +## Installation + +AlamofireKit is available through [CocoaPods](https://cocoapods.org). To install +it, simply add the following line to your Podfile: + +```ruby +pod 'AlamofireKit' +``` + +## Author + +Rashed, rashedgit@gmail.com + +## License + +AlamofireKit is available under the MIT license. See the LICENSE file for more info. diff --git a/Source/AlamofireKit.swift b/Source/AlamofireKit.swift new file mode 100644 index 0000000..d665525 --- /dev/null +++ b/Source/AlamofireKit.swift @@ -0,0 +1,93 @@ +import Foundation +//import UIKit +import Alamofire + +public class AlamofireKit { + public typealias RequestModifier = (inout URLRequest) throws -> Void + public static func debugPrint(_ convertible: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil, + interceptor: RequestInterceptor? = nil, + requestModifier: RequestModifier? = nil) { + let request = AF.request(convertible, method: method, parameters: parameters, encoding: URLEncoding.default, headers: headers) + request.responseJSON { response in + debugPrint("DEBUG_LOG_PRINT: response data url \(String(describing: response.request)) line: \(#line)") + debugPrint("DEBUG_LOG_PRINT: status code \(String(describing: response.response?.statusCode)) line: \(#line)") + guard let responseData = response.value else { + debugPrint("DEBUG_LOG_PRINT: data error \(String(describing: response.error)) line: \(#line)") + return + } + debugPrint("DEBUG_LOG_PRINT: data success \(responseData) line: \(#line)") + } + } + public typealias Completion = (_ success: Bool, _ data: T) -> Void + // public func httpRequest(completion: Completion) { + // } + // public func httpRequest(_ completion: @escaping (HTTPResult) -> Void, + public static func request(_ completion: @escaping (_ success: Bool, _ data: T?, _ error: Error?) -> Void, + dataModel: T.Type, + _ convertible: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil, + interceptor: RequestInterceptor? = nil, + requestModifier: RequestModifier? = nil) { + let request = AF.request(convertible, method: method, parameters: parameters, encoding: encoding, headers: headers) + request.responseDecodable(of: dataModel.self) { (response) in + debugPrint("DEBUG_LOG_PRINT: request url \(String(describing: response.request)) line: \(#line)") + debugPrint("DEBUG_LOG_PRINT: status code \(String(describing: response.response?.statusCode)) line: \(#line)") + guard let responseData = response.value else { + completion(false, nil, response.error) + return + } + completion(true, responseData, nil) + } +// request.responseJSON { response in +// debugPrint("DEBUG_LOG_PRINT: request url \(String(describing: response.request)) line: \(#line)") +// debugPrint("DEBUG_LOG_PRINT: status code \(String(describing: response.response?.statusCode)) line: \(#line)") +// guard let responseData = response.data else { +// completion(false, nil, response.error) +// return +// } +// debugPrint("DEBUG_LOG_PRINT: data \(String(describing: responseData)) line: \(#line)") +// do { +// let modelData = try JSONDecoder().decode(dataModel.self, from: responseData) +// debugPrint("DEBUG_LOG_PRINT: data \(String(describing: modelData)) line: \(#line)") +// completion(true, modelData, nil) +// } catch let jsonErr{ +// completion(false, nil, jsonErr) +// } +// } + } + public func usageHTTPRequest() { +// HTTPHelper.Alamofire.httpRequest({ (success, data, error) in +// if success { +// print("DATA: \(data)") +// } else { +// // print("ERROR: \(error?.localizedDescription)") +// } +// }, dataModel: ModelApiHomeRoot.self, AppConstant.HTTP.API.HOME_PAGE, method: .get) + } +} +public enum HTTPResult { + case success(Success) + case failure(Failure) +} +public enum HTTPError: Error { + case error(Error) +} +//public enum HTTPResult { +// case success(T) +// case failure(T) +//} +//public enum Result where Failure : Error { +//public enum DataError: Error { +// case invalid +//} +//public struct ModelTest { +// var name: String +//} +// diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj new file mode 120000 index 0000000..3c5a8e7 --- /dev/null +++ b/_Pods.xcodeproj @@ -0,0 +1 @@ +Example/Pods/Pods.xcodeproj \ No newline at end of file