From 031a354996d6d3a3e15a0b6d9eab5a8b63561835 Mon Sep 17 00:00:00 2001 From: Okechi Onyeje Date: Tue, 23 Aug 2016 13:48:34 -0400 Subject: [PATCH] Ebay Listing Now Posts both information and single image need to rework on categories since subcategory workflow added some complications, but that will be taken care of in a bug fix task --- .DS_Store | Bin 10244 -> 10244 bytes Podfile | 10 +- Podfile.lock | 50 +- .../AFNetworking/AFHTTPRequestOperation.h | 70 + .../AFNetworking/AFHTTPRequestOperation.m | 206 + .../AFHTTPRequestOperationManager.h | 326 + .../AFHTTPRequestOperationManager.m | 290 + .../AFNetworking/AFHTTPSessionManager.h | 253 + .../AFNetworking/AFHTTPSessionManager.m | 328 + .../AFNetworkReachabilityManager.h | 207 + .../AFNetworkReachabilityManager.m | 248 + Pods/AFNetworking/AFNetworking/AFNetworking.h | 46 + .../AFNetworking/AFSecurityPolicy.h | 142 + .../AFNetworking/AFSecurityPolicy.m | 347 + .../AFNetworking/AFURLConnectionOperation.h | 344 + .../AFNetworking/AFURLConnectionOperation.m | 792 ++ .../AFNetworking/AFURLRequestSerialization.h | 476 ++ .../AFNetworking/AFURLRequestSerialization.m | 1428 ++++ .../AFNetworking/AFURLResponseSerialization.h | 315 + .../AFNetworking/AFURLResponseSerialization.m | 825 ++ .../AFNetworking/AFURLSessionManager.h | 554 ++ .../AFNetworking/AFURLSessionManager.m | 1174 +++ Pods/AFNetworking/LICENSE | 19 + Pods/AFNetworking/README.md | 394 + .../AFNetworkActivityIndicatorManager.h | 80 + .../AFNetworkActivityIndicatorManager.m | 170 + .../UIActivityIndicatorView+AFNetworking.h | 63 + .../UIActivityIndicatorView+AFNetworking.m | 171 + .../UIAlertView+AFNetworking.h | 99 + .../UIAlertView+AFNetworking.m | 141 + .../UIButton+AFNetworking.h | 186 + .../UIButton+AFNetworking.m | 293 + .../UIKit+AFNetworking/UIImage+AFNetworking.h | 35 + .../UIImageView+AFNetworking.h | 146 + .../UIImageView+AFNetworking.m | 215 + .../UIKit+AFNetworking/UIKit+AFNetworking.h | 39 + .../UIProgressView+AFNetworking.h | 91 + .../UIProgressView+AFNetworking.m | 182 + .../UIRefreshControl+AFNetworking.h | 68 + .../UIRefreshControl+AFNetworking.m | 166 + .../UIWebView+AFNetworking.h | 86 + .../UIWebView+AFNetworking.m | 159 + .../AeroGearHttp/AuthzModule.swift | 74 + Pods/AeroGearHttp/AeroGearHttp/Http.swift | 608 ++ .../AeroGearHttp/HttpRequestSerializer.swift | 219 + .../AeroGearHttp/JsonRequestSerializer.swift | 68 + .../AeroGearHttp/JsonResponseSerializer.swift | 84 + .../AeroGearHttp/MultiPartData.swift | 66 + .../AeroGearHttp/RequestSerializer.swift | 59 + .../AeroGearHttp/ResponseSerializer.swift | 43 + .../StringResponseSerializer.swift | 70 + Pods/AeroGearHttp/AeroGearHttp/Utils.swift | 49 + Pods/AeroGearHttp/LICENSE.txt | 202 + Pods/AeroGearHttp/README.md | 160 + .../AeroGearOAuth2/AccountManager.swift | 239 + .../AeroGearOAuth2/Config.swift | 121 + .../AeroGearOAuth2/DateUtils.swift | 55 + .../AeroGearOAuth2/FacebookOAuth2Module.swift | 135 + .../AeroGearOAuth2/KeycloakOAuth2Module.swift | 126 + .../AeroGearOAuth2/OAuth2Module.swift | 364 + .../AeroGearOAuth2/OAuth2Session.swift | 75 + .../OAuth2WebViewController.swift | 53 + .../AeroGearOAuth2/OpenIDClaim.swift | 109 + .../TrustedPersistantOAuth2Session.swift | 333 + .../UntrustedMemoryOAuth2Session.swift | 110 + Pods/AeroGearOAuth2/LICENSE.txt | 202 + Pods/AeroGearOAuth2/README.md | 130 + Pods/GDataXML-HTML/LICENSE | 202 + Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.h | 245 + Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.m | 2012 +++++ Pods/GDataXML-HTML/README.md | 58 + Pods/GDataXML-HTML/libxml.modulemap | 5 + Pods/Manifest.lock | 50 +- Pods/PicoKit/LICENSE | 22 + Pods/PicoKit/Pod/Core/Cache/PicoCache.h | 26 + Pods/PicoKit/Pod/Core/Cache/PicoCache.m | 141 + Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.h | 22 + Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.m | 30 + .../Pod/Core/Converter/PicoBoolConverter.h | 13 + .../Pod/Core/Converter/PicoBoolConverter.m | 34 + .../Pod/Core/Converter/PicoConvertable.h | 16 + .../Pod/Core/Converter/PicoConverter.h | 18 + .../Pod/Core/Converter/PicoConverter.m | 98 + .../Pod/Core/Converter/PicoDataConverter.h | 13 + .../Pod/Core/Converter/PicoDataConverter.m | 173 + .../Pod/Core/Converter/PicoDateConverter.h | 13 + .../Pod/Core/Converter/PicoDateConverter.m | 29 + .../Pod/Core/Converter/PicoNumberConverter.h | 13 + .../Pod/Core/Converter/PicoNumberConverter.m | 24 + .../Pod/Core/Converter/PicoStringConverter.h | 13 + .../Pod/Core/Converter/PicoStringConverter.m | 21 + Pods/PicoKit/Pod/Core/PicoBindable.h | 15 + Pods/PicoKit/Pod/Core/PicoConfig.h | 47 + Pods/PicoKit/Pod/Core/PicoConfig.m | 38 + Pods/PicoKit/Pod/Core/PicoConstants.h | 95 + Pods/PicoKit/Pod/Core/PicoConstants.m | 91 + Pods/PicoKit/Pod/Core/PicoReadable.h | 17 + Pods/PicoKit/Pod/Core/PicoWritable.h | 17 + Pods/PicoKit/Pod/Core/PicoXMLReader.h | 24 + Pods/PicoKit/Pod/Core/PicoXMLReader.m | 280 + Pods/PicoKit/Pod/Core/PicoXMLWriter.h | 21 + Pods/PicoKit/Pod/Core/PicoXMLWriter.m | 256 + .../Pod/Core/Schema/PicoBindingSchema.h | 40 + .../Pod/Core/Schema/PicoBindingSchema.m | 113 + .../PicoKit/Pod/Core/Schema/PicoClassSchema.h | 20 + .../PicoKit/Pod/Core/Schema/PicoClassSchema.m | 34 + .../Pod/Core/Schema/PicoPropertySchema.h | 26 + .../Pod/Core/Schema/PicoPropertySchema.m | 44 + .../Pod/Core/XMLSupport/PicoXMLElement.h | 27 + .../Pod/Core/XMLSupport/PicoXMLElement.m | 63 + .../Pod/OrderedDictionary/OrderedDictionary.h | 36 + .../Pod/OrderedDictionary/OrderedDictionary.m | 149 + Pods/PicoKit/Pod/SOAP/PicoSOAPReader.h | 19 + Pods/PicoKit/Pod/SOAP/PicoSOAPReader.m | 120 + Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.h | 13 + Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.m | 114 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.h | 33 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.m | 34 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.h | 33 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.m | 33 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.h | 51 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.m | 42 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.h | 59 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.m | 44 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.h | 33 + Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.m | 34 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.h | 33 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.m | 34 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.h | 33 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.m | 33 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.h | 42 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.m | 39 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.h | 69 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.m | 49 + .../PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.h | 41 + .../PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.m | 37 + .../Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h | 15 + .../Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m | 15 + .../Pod/SOAP/SOAP12/SOAP12Faultreason.h | 34 + .../Pod/SOAP/SOAP12/SOAP12Faultreason.m | 34 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.h | 35 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.m | 34 + .../Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h | 32 + .../Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m | 34 + .../Pod/SOAP/SOAP12/SOAP12Reasontext.h | 40 + .../Pod/SOAP/SOAP12/SOAP12Reasontext.m | 36 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.h | 41 + Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.m | 37 + .../Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h | 32 + .../Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m | 33 + .../Pod/SOAP/SOAP12/SOAP12UpgradeType.h | 34 + .../Pod/SOAP/SOAP12/SOAP12UpgradeType.m | 35 + Pods/PicoKit/Pod/WebService/PicoSOAPClient.h | 72 + Pods/PicoKit/Pod/WebService/PicoSOAPClient.m | 206 + .../Pod/WebService/PicoSOAPRequestOperation.h | 71 + .../Pod/WebService/PicoSOAPRequestOperation.m | 142 + Pods/PicoKit/Pod/WebService/PicoXMLClient.h | 60 + Pods/PicoKit/Pod/WebService/PicoXMLClient.m | 167 + .../Pod/WebService/PicoXMLRequestOperation.h | 48 + .../Pod/WebService/PicoXMLRequestOperation.m | 129 + Pods/PicoKit/Pod/XMLWriter/XMLWriter.h | 147 + Pods/PicoKit/Pod/XMLWriter/XMLWriter.m | 741 ++ Pods/PicoKit/README.md | 158 + Pods/Pods.xcodeproj/project.pbxproj | 6891 +++++++++++------ ...ooTests.xcscheme => AFNetworking.xcscheme} | 6 +- ...UITests.xcscheme => AeroGearHttp.xcscheme} | 6 +- .../xcschemes/AeroGearOAuth2.xcscheme | 60 + .../xcschemes/Alamofire-SwiftyJSON.xcscheme | 37 +- .../xcschemes/GDataXML-HTML.xcscheme | 71 + .../xcschemes/PicoKit.xcscheme | 60 + .../Pods-Vendoo-VendooTests.xcscheme | 71 + .../Pods-Vendoo-VendooUITests.xcscheme | 71 + .../xcschemes/Pods-Vendoo.xcscheme | 37 +- .../xcschemes/SWRevealViewController.xcscheme | 2 +- .../TYMActivityIndicatorView.xcscheme | 2 +- .../xcschemes/xcschememanagement.plist | 163 +- .../AFNetworking/AFNetworking-dummy.m | 5 + .../AFNetworking/AFNetworking-prefix.pch | 11 + .../AFNetworking/AFNetworking-umbrella.h | 26 + .../AFNetworking/AFNetworking.modulemap | 6 + .../AFNetworking/AFNetworking.xcconfig | 9 + .../AFNetworking/Info.plist | 26 + .../AeroGearHttp/AeroGearHttp-dummy.m | 5 + .../AeroGearHttp/AeroGearHttp-prefix.pch | 4 + .../AeroGearHttp/AeroGearHttp-umbrella.h | 6 + .../AeroGearHttp/AeroGearHttp.modulemap | 6 + .../AeroGearHttp/AeroGearHttp.xcconfig | 9 + .../AeroGearHttp/Info.plist | 26 + .../AeroGearOAuth2/AeroGearOAuth2-dummy.m | 5 + .../AeroGearOAuth2/AeroGearOAuth2-prefix.pch | 4 + .../AeroGearOAuth2/AeroGearOAuth2-umbrella.h | 6 + .../AeroGearOAuth2/AeroGearOAuth2.modulemap | 6 + .../AeroGearOAuth2/AeroGearOAuth2.xcconfig | 11 + .../AeroGearOAuth2/Info.plist | 26 + .../GDataXML-HTML/GDataXML-HTML-dummy.m | 5 + .../GDataXML-HTML/GDataXML-HTML-prefix.pch | 4 + .../GDataXML-HTML/GDataXML-HTML.modulemap | 5 + .../GDataXML-HTML/GDataXML-HTML.xcconfig | 9 + .../GDataXML-HTML/Info.plist | 26 + Pods/Target Support Files/PicoKit/Info.plist | 26 + .../PicoKit/PicoKit-dummy.m | 5 + .../PicoKit/PicoKit-prefix.pch | 12 + .../PicoKit/PicoKit-umbrella.h | 52 + .../PicoKit/PicoKit.modulemap | 6 + .../PicoKit/PicoKit.xcconfig | 10 + .../Info.plist | 0 ...ndoo-VendooTests-acknowledgements.markdown | 1043 +++ ...-Vendoo-VendooTests-acknowledgements.plist | 1189 +++ .../Pods-Vendoo-VendooTests-dummy.m | 5 + .../Pods-Vendoo-VendooTests-frameworks.sh} | 43 + .../Pods-Vendoo-VendooTests-resources.sh} | 0 .../Pods-Vendoo-VendooTests-umbrella.h | 6 + .../Pods-Vendoo-VendooTests.debug.xcconfig | 11 + .../Pods-Vendoo-VendooTests.modulemap | 6 + .../Pods-Vendoo-VendooTests.release.xcconfig | 11 + .../Info.plist | 0 ...oo-VendooUITests-acknowledgements.markdown | 1043 +++ ...endoo-VendooUITests-acknowledgements.plist | 1189 +++ .../Pods-Vendoo-VendooUITests-dummy.m | 5 + .../Pods-Vendoo-VendooUITests-frameworks.sh} | 43 + .../Pods-Vendoo-VendooUITests-resources.sh} | 0 .../Pods-Vendoo-VendooUITests-umbrella.h | 6 + .../Pods-Vendoo-VendooUITests.debug.xcconfig | 11 + .../Pods-Vendoo-VendooUITests.modulemap | 6 + ...Pods-Vendoo-VendooUITests.release.xcconfig | 11 + .../Pods-Vendoo-acknowledgements.markdown | 667 ++ .../Pods-Vendoo-acknowledgements.plist | 687 ++ .../Pods-Vendoo/Pods-Vendoo-frameworks.sh | 10 + .../Pods-Vendoo/Pods-Vendoo.debug.xcconfig | 8 +- .../Pods-Vendoo/Pods-Vendoo.release.xcconfig | 8 +- ...Pods-VendooTests-acknowledgements.markdown | 3 - .../Pods-VendooTests-acknowledgements.plist | 29 - .../Pods-VendooTests/Pods-VendooTests-dummy.m | 5 - .../Pods-VendooTests-umbrella.h | 6 - .../Pods-VendooTests.debug.xcconfig | 8 - .../Pods-VendooTests.modulemap | 6 - .../Pods-VendooTests.release.xcconfig | 8 - ...ds-VendooUITests-acknowledgements.markdown | 3 - .../Pods-VendooUITests-acknowledgements.plist | 29 - .../Pods-VendooUITests-dummy.m | 5 - .../Pods-VendooUITests-umbrella.h | 6 - .../Pods-VendooUITests.debug.xcconfig | 8 - .../Pods-VendooUITests.modulemap | 6 - .../Pods-VendooUITests.release.xcconfig | 8 - Vendoo.podspec | 34 - Vendoo.xcodeproj/project.pbxproj | 348 +- .../UserInterfaceState.xcuserstate | Bin 9228 -> 10056 bytes Vendoo.xcworkspace/contents.xcworkspacedata | 3 + .../xcshareddata/Vendoo.xcscmblueprint | 30 - .../UserInterfaceState.xcuserstate | Bin 132878 -> 47817 bytes .../UserInterfaceState.xcuserstate-base | Bin 131312 -> 0 bytes .../UserInterfaceState.xcuserstate-ours | Bin 149143 -> 0 bytes .../UserInterfaceState.xcuserstate-theirs | Bin 131040 -> 0 bytes .../xcdebugger/Breakpoints_v2.xcbkptlist | 678 +- Vendoo/.DS_Store | Bin 10244 -> 10244 bytes Vendoo/CategoriesTableViewController.swift | 117 +- Vendoo/CategoryCell.swift | 1 + Vendoo/CategoryPopUpController.swift | 130 + Vendoo/EbaySettingsViewController.swift | 6 + Vendoo/EbayWebServiceManager.swift | 191 +- Vendoo/EtsyRESTAPIManager.swift | 1 - Vendoo/FacebookGraphAPIManager.swift | 2 - Vendoo/ListingPreviewViewController.swift | 116 +- Vendoo/Main.storyboard | 92 +- wsdl/.DS_Store | Bin 6148 -> 0 bytes 265 files changed, 36070 insertions(+), 2917 deletions(-) create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h create mode 100644 Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m create mode 100644 Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h create mode 100644 Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m create mode 100644 Pods/AFNetworking/AFNetworking/AFNetworking.h create mode 100644 Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h create mode 100644 Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m create mode 100644 Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h create mode 100644 Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m create mode 100644 Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h create mode 100644 Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m create mode 100644 Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h create mode 100644 Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m create mode 100644 Pods/AFNetworking/AFNetworking/AFURLSessionManager.h create mode 100644 Pods/AFNetworking/AFNetworking/AFURLSessionManager.m create mode 100644 Pods/AFNetworking/LICENSE create mode 100644 Pods/AFNetworking/README.md create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h create mode 100644 Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m create mode 100644 Pods/AeroGearHttp/AeroGearHttp/AuthzModule.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/Http.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/JsonRequestSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/JsonResponseSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/MultiPartData.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/RequestSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/ResponseSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/StringResponseSerializer.swift create mode 100644 Pods/AeroGearHttp/AeroGearHttp/Utils.swift create mode 100644 Pods/AeroGearHttp/LICENSE.txt create mode 100644 Pods/AeroGearHttp/README.md create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift create mode 100644 Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift create mode 100644 Pods/AeroGearOAuth2/LICENSE.txt create mode 100644 Pods/AeroGearOAuth2/README.md create mode 100644 Pods/GDataXML-HTML/LICENSE create mode 100644 Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.h create mode 100644 Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.m create mode 100644 Pods/GDataXML-HTML/README.md create mode 100644 Pods/GDataXML-HTML/libxml.modulemap create mode 100644 Pods/PicoKit/LICENSE create mode 100644 Pods/PicoKit/Pod/Core/Cache/PicoCache.h create mode 100644 Pods/PicoKit/Pod/Core/Cache/PicoCache.m create mode 100644 Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.h create mode 100644 Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoConvertable.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoConverter.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.m create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.h create mode 100644 Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.m create mode 100644 Pods/PicoKit/Pod/Core/PicoBindable.h create mode 100644 Pods/PicoKit/Pod/Core/PicoConfig.h create mode 100644 Pods/PicoKit/Pod/Core/PicoConfig.m create mode 100644 Pods/PicoKit/Pod/Core/PicoConstants.h create mode 100644 Pods/PicoKit/Pod/Core/PicoConstants.m create mode 100644 Pods/PicoKit/Pod/Core/PicoReadable.h create mode 100644 Pods/PicoKit/Pod/Core/PicoWritable.h create mode 100644 Pods/PicoKit/Pod/Core/PicoXMLReader.h create mode 100644 Pods/PicoKit/Pod/Core/PicoXMLReader.m create mode 100644 Pods/PicoKit/Pod/Core/PicoXMLWriter.h create mode 100644 Pods/PicoKit/Pod/Core/PicoXMLWriter.m create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.h create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.m create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.h create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.m create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.h create mode 100644 Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.m create mode 100644 Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.h create mode 100644 Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.m create mode 100644 Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.h create mode 100644 Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.m create mode 100644 Pods/PicoKit/Pod/SOAP/PicoSOAPReader.h create mode 100644 Pods/PicoKit/Pod/SOAP/PicoSOAPReader.m create mode 100644 Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.h create mode 100644 Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.h create mode 100644 Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.m create mode 100644 Pods/PicoKit/Pod/WebService/PicoSOAPClient.h create mode 100644 Pods/PicoKit/Pod/WebService/PicoSOAPClient.m create mode 100644 Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.h create mode 100644 Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.m create mode 100644 Pods/PicoKit/Pod/WebService/PicoXMLClient.h create mode 100644 Pods/PicoKit/Pod/WebService/PicoXMLClient.m create mode 100644 Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.h create mode 100644 Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.m create mode 100644 Pods/PicoKit/Pod/XMLWriter/XMLWriter.h create mode 100644 Pods/PicoKit/Pod/XMLWriter/XMLWriter.m create mode 100644 Pods/PicoKit/README.md rename Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/{Pods-VendooTests.xcscheme => AFNetworking.xcscheme} (91%) rename Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/{Pods-VendooUITests.xcscheme => AeroGearHttp.xcscheme} (91%) create mode 100644 Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearOAuth2.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/GDataXML-HTML.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/PicoKit.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooTests.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooUITests.xcscheme create mode 100644 Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m create mode 100644 Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch create mode 100644 Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h create mode 100644 Pods/Target Support Files/AFNetworking/AFNetworking.modulemap create mode 100644 Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig create mode 100644 Pods/Target Support Files/AFNetworking/Info.plist create mode 100644 Pods/Target Support Files/AeroGearHttp/AeroGearHttp-dummy.m create mode 100644 Pods/Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch create mode 100644 Pods/Target Support Files/AeroGearHttp/AeroGearHttp-umbrella.h create mode 100644 Pods/Target Support Files/AeroGearHttp/AeroGearHttp.modulemap create mode 100644 Pods/Target Support Files/AeroGearHttp/AeroGearHttp.xcconfig create mode 100644 Pods/Target Support Files/AeroGearHttp/Info.plist create mode 100644 Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-dummy.m create mode 100644 Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch create mode 100644 Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-umbrella.h create mode 100644 Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap create mode 100644 Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.xcconfig create mode 100644 Pods/Target Support Files/AeroGearOAuth2/Info.plist create mode 100644 Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-dummy.m create mode 100644 Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch create mode 100644 Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap create mode 100644 Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.xcconfig create mode 100644 Pods/Target Support Files/GDataXML-HTML/Info.plist create mode 100644 Pods/Target Support Files/PicoKit/Info.plist create mode 100644 Pods/Target Support Files/PicoKit/PicoKit-dummy.m create mode 100644 Pods/Target Support Files/PicoKit/PicoKit-prefix.pch create mode 100644 Pods/Target Support Files/PicoKit/PicoKit-umbrella.h create mode 100644 Pods/Target Support Files/PicoKit/PicoKit.modulemap create mode 100644 Pods/Target Support Files/PicoKit/PicoKit.xcconfig rename Pods/Target Support Files/{Pods-VendooTests => Pods-Vendoo-VendooTests}/Info.plist (100%) create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-dummy.m rename Pods/Target Support Files/{Pods-VendooTests/Pods-VendooTests-frameworks.sh => Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-frameworks.sh} (51%) rename Pods/Target Support Files/{Pods-VendooTests/Pods-VendooTests-resources.sh => Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-resources.sh} (100%) create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-umbrella.h create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig rename Pods/Target Support Files/{Pods-VendooUITests => Pods-Vendoo-VendooUITests}/Info.plist (100%) create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-dummy.m rename Pods/Target Support Files/{Pods-VendooUITests/Pods-VendooUITests-frameworks.sh => Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-frameworks.sh} (51%) rename Pods/Target Support Files/{Pods-VendooUITests/Pods-VendooUITests-resources.sh => Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-resources.sh} (100%) create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-umbrella.h create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap create mode 100644 Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.markdown delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.plist delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-dummy.m delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-umbrella.h delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.debug.xcconfig delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap delete mode 100644 Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.release.xcconfig delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.markdown delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.plist delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-dummy.m delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-umbrella.h delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.debug.xcconfig delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap delete mode 100644 Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.release.xcconfig delete mode 100644 Vendoo.podspec delete mode 100644 Vendoo.xcworkspace/xcshareddata/Vendoo.xcscmblueprint delete mode 100644 Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-base delete mode 100644 Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-ours delete mode 100644 Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-theirs create mode 100644 Vendoo/CategoryPopUpController.swift delete mode 100644 wsdl/.DS_Store diff --git a/.DS_Store b/.DS_Store index cce6bbe35254621c69d083dfbbc0f3742efe3f50..61cbc18476e1e3c0cff57edf742f2620230c0cbb 100644 GIT binary patch delta 199 zcmZn(XbG6$UDU^hRb;$|L!Y0NAP3=B$>mkH}l))5h$EGi;C`HHaMWLuFiM(NE{ zL`)bbZxD2v%q4bg@>U@s&WOz9{Jh}Is?^D^#ndMM6yjkI0BQ$<$-3f-jFOY}ge@m` yiO-pwBw-3NS7q~T31LQN)&Kt|OH0daUMsbeabxKZmd)%6zgQ+4icTlfY)Jqu{X7l; delta 610 zcmZn(XbG6$ÄU^hRb#%3OYY0NDDfnf47VZF(JgauVO7y=mb8B!S17%~}h7*ZMP zJah7slXCKt7#J7?fcOjp17pSHTf$0{uLuiH<`oHJ6yKa8V#3I{Z}LV#B~CF>aS1_5 zDQT(6M?~*PM`R}F=LKh0rN#^J7iZ*`djh!uMX6<(spXS*i>b*dJ5&__&17KU5MT_+ z%g;;YRCWje3ovj_{vxJmDZr@2sLg1?Xv=8N=)oAs7{nOD7|9sLm<&= 2.5.0' + pod 'PicoKit' + pod 'AeroGearHttp' + pod 'AeroGearOAuth2' + pod 'Firebase' pod 'FirebaseAuth' pod 'Firebase/Database' pod 'Locksmith' -# pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git' pod 'Alamofire-SwiftyJSON' pod 'OAuthSwift', '~> 0.5.0' pod 'FBSDKCoreKit' @@ -24,13 +26,13 @@ use_frameworks! target 'VendooTests' do - inherit! :search_paths + # inherit! :search_paths # Pods for testing end target 'VendooUITests' do - inherit! :search_paths + # inherit! :search_paths # Pods for testing end diff --git a/Podfile.lock b/Podfile.lock index f4f307f..c5df36c 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,4 +1,28 @@ PODS: + - AeroGearHttp (0.6.0) + - AeroGearOAuth2 (0.5.1): + - AeroGearHttp + - AFNetworking (2.6.3): + - AFNetworking/NSURLConnection (= 2.6.3) + - AFNetworking/NSURLSession (= 2.6.3) + - AFNetworking/Reachability (= 2.6.3) + - AFNetworking/Security (= 2.6.3) + - AFNetworking/Serialization (= 2.6.3) + - AFNetworking/UIKit (= 2.6.3) + - AFNetworking/NSURLConnection (2.6.3): + - AFNetworking/Reachability + - AFNetworking/Security + - AFNetworking/Serialization + - AFNetworking/NSURLSession (2.6.3): + - AFNetworking/Reachability + - AFNetworking/Security + - AFNetworking/Serialization + - AFNetworking/Reachability (2.6.3) + - AFNetworking/Security (2.6.3) + - AFNetworking/Serialization (2.6.3) + - AFNetworking/UIKit (2.6.3): + - AFNetworking/NSURLConnection + - AFNetworking/NSURLSession - Alamofire (3.4.1) - Alamofire-SwiftyJSON (0.1.1): - Alamofire (~> 3.4) @@ -47,6 +71,7 @@ PODS: - FirebaseStorage (1.0.2): - FirebaseAnalytics (~> 3.2) - GoogleNetworkingUtilities (~> 1.2) + - GDataXML-HTML (1.3.0) - GoogleInterchangeUtilities (1.2.1): - GoogleSymbolUtilities (~> 1.0) - GoogleNetworkingUtilities (1.2.1): @@ -59,27 +84,46 @@ PODS: - GoogleSymbolUtilities (~> 1.0) - Locksmith (2.0.8) - OAuthSwift (0.5.2) + - PicoKit (0.7.2): + - PicoKit/WebService (= 0.7.2) + - PicoKit/Core (0.7.2): + - GDataXML-HTML (~> 1.3.0) + - PicoKit/OrderedDictionary + - PicoKit/XMLWriter + - PicoKit/OrderedDictionary (0.7.2) + - PicoKit/Soap (0.7.2): + - PicoKit/Core + - PicoKit/WebService (0.7.2): + - AFNetworking (~> 2.6.0) + - PicoKit/Soap + - PicoKit/XMLWriter (0.7.2) - SwiftyJSON (2.3.2) - SWRevealViewController (2.3.0) - TYMActivityIndicatorView (0.3.3) - UIImageViewModeScaleAspect (1.5) DEPENDENCIES: + - AeroGearHttp + - AeroGearOAuth2 - Alamofire-SwiftyJSON - BSImagePicker (~> 2.3) - FBSDKCoreKit - FBSDKLoginKit - FBSDKShareKit - - Firebase (>= 2.5.0) + - Firebase - Firebase/Database - Firebase/Storage - FirebaseAuth - Locksmith - OAuthSwift (~> 0.5.0) + - PicoKit - SWRevealViewController - TYMActivityIndicatorView SPEC CHECKSUMS: + AeroGearHttp: e958f301cc2d1c7fbfd4b61af187ea3490040a48 + AeroGearOAuth2: 6f29d3fac8b78a0ff6d51b04c4ba1a02baed2e52 + AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60 Alamofire: 01a82e2f6c0f860ade35534c8dd88be61bdef40c Alamofire-SwiftyJSON: 5812bb37accc36897cc2f2dabb070d8ebcd7ac98 Bolts: 8a7995239dbe724f9cba2248b766d48b7ebdd322 @@ -94,6 +138,7 @@ SPEC CHECKSUMS: FirebaseDatabase: 59bea2e7dfd81b3b8b2f8e396caf1a52c2ced6f7 FirebaseInstanceID: ba1e640935235e5fac39dfa816fe7660e72e1a8a FirebaseStorage: fa2a87dee81f682f553af6839daa37a750e65f6a + GDataXML-HTML: 7adc03668cab35c288f1dbb8929a179f0fece898 GoogleInterchangeUtilities: def8415a862effc67d549d5b5b0b9c7a2f97d4de GoogleNetworkingUtilities: 3e83269048cfb498dc7ec83ab36813360965c74f GoogleParsingUtilities: 30b3896f9ee167dc78747f013d3de157ced1cadf @@ -101,11 +146,12 @@ SPEC CHECKSUMS: GoogleUtilities: 56c5ac05b7aa5dc417a1bb85221a9516e04d7032 Locksmith: a8ed41ac4c06506ea8cb199d8ec8a8d3d108eb2a OAuthSwift: 1ef042d4362e755e24a78f158d817245641a5d24 + PicoKit: 9079bce659a8d5408c8af1c45254b971df614de3 SwiftyJSON: 04ccea08915aa0109039157c7974cf0298da292a SWRevealViewController: 6d3fd97f70112fd7cef9de14df4260eacce4c63a TYMActivityIndicatorView: ad816387ebd5952c376af129218722733044148b UIImageViewModeScaleAspect: 11a790a0b9d248a13dc63e3a78991f1463b6d84e -PODFILE CHECKSUM: f0e94f082ecd182e6ea530edddd9bc1c1cb65997 +PODFILE CHECKSUM: 3b36a7c734809ee54f4ecf0055d9910a9279d555 COCOAPODS: 1.0.0 diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h new file mode 100644 index 0000000..cf6def4 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h @@ -0,0 +1,70 @@ +// AFHTTPRequestOperation.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#import "AFURLConnectionOperation.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + `AFHTTPRequestOperation` is a subclass of `AFURLConnectionOperation` for requests using the HTTP or HTTPS protocols. It encapsulates the concept of acceptable status codes and content types, which determine the success or failure of a request. + */ +@interface AFHTTPRequestOperation : AFURLConnectionOperation + +///------------------------------------------------ +/// @name Getting HTTP URL Connection Information +///------------------------------------------------ + +/** + The last HTTP response received by the operation's connection. + */ +@property (readonly, nonatomic, strong, nullable) NSHTTPURLResponse *response; + +/** + Responses sent from the server in data tasks created with `dataTaskWithRequest:success:failure:` and run using the `GET` / `POST` / et al. convenience methods are automatically validated and serialized by the response serializer. By default, this property is set to an AFHTTPResponse serializer, which uses the raw data as its response object. The serializer validates the status code to be in the `2XX` range, denoting success. If the response serializer generates an error in `-responseObjectForResponse:data:error:`, the `failure` callback of the session task or request operation will be executed; otherwise, the `success` callback will be executed. + + @warning `responseSerializer` must not be `nil`. Setting a response serializer will clear out any cached value + */ +@property (nonatomic, strong) AFHTTPResponseSerializer * responseSerializer; + +/** + An object constructed by the `responseSerializer` from the response and response data. Returns `nil` unless the operation `isFinished`, has a `response`, and has `responseData` with non-zero content length. If an error occurs during serialization, `nil` will be returned, and the `error` property will be populated with the serialization error. + */ +@property (readonly, nonatomic, strong, nullable) id responseObject; + +///----------------------------------------------------------- +/// @name Setting Completion Block Success / Failure Callbacks +///----------------------------------------------------------- + +/** + Sets the `completionBlock` property with a block that executes either the specified success or failure block, depending on the state of the request on completion. If `error` returns a value, which can be caused by an unacceptable status code or content type, then `failure` is executed. Otherwise, `success` is executed. + + This method should be overridden in subclasses in order to specify the response object passed into the success block. + + @param success The block to be executed on the completion of a successful request. This block has no return value and takes two arguments: the receiver operation and the object constructed from the response data of the request. + @param failure The block to be executed on the completion of an unsuccessful request. This block has no return value and takes two arguments: the receiver operation and the error that occurred during the request. + */ +- (void)setCompletionBlockWithSuccess:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation *operation, NSError *error))failure; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m new file mode 100644 index 0000000..b8deda8 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m @@ -0,0 +1,206 @@ +// AFHTTPRequestOperation.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFHTTPRequestOperation.h" + +static dispatch_queue_t http_request_operation_processing_queue() { + static dispatch_queue_t af_http_request_operation_processing_queue; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_http_request_operation_processing_queue = dispatch_queue_create("com.alamofire.networking.http-request.processing", DISPATCH_QUEUE_CONCURRENT); + }); + + return af_http_request_operation_processing_queue; +} + +static dispatch_group_t http_request_operation_completion_group() { + static dispatch_group_t af_http_request_operation_completion_group; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_http_request_operation_completion_group = dispatch_group_create(); + }); + + return af_http_request_operation_completion_group; +} + +#pragma mark - + +@interface AFURLConnectionOperation () +@property (readwrite, nonatomic, strong) NSURLRequest *request; +@property (readwrite, nonatomic, strong) NSURLResponse *response; +@end + +@interface AFHTTPRequestOperation () +@property (readwrite, nonatomic, strong) NSHTTPURLResponse *response; +@property (readwrite, nonatomic, strong) id responseObject; +@property (readwrite, nonatomic, strong) NSError *responseSerializationError; +@property (readwrite, nonatomic, strong) NSRecursiveLock *lock; +@end + +@implementation AFHTTPRequestOperation +@dynamic response; +@dynamic lock; + +- (instancetype)initWithRequest:(NSURLRequest *)urlRequest { + self = [super initWithRequest:urlRequest]; + if (!self) { + return nil; + } + + self.responseSerializer = [AFHTTPResponseSerializer serializer]; + + return self; +} + +- (void)setResponseSerializer:(AFHTTPResponseSerializer *)responseSerializer { + NSParameterAssert(responseSerializer); + + [self.lock lock]; + _responseSerializer = responseSerializer; + self.responseObject = nil; + self.responseSerializationError = nil; + [self.lock unlock]; +} + +- (id)responseObject { + [self.lock lock]; + if (!_responseObject && [self isFinished] && !self.error) { + NSError *error = nil; + self.responseObject = [self.responseSerializer responseObjectForResponse:self.response data:self.responseData error:&error]; + if (error) { + self.responseSerializationError = error; + } + } + [self.lock unlock]; + + return _responseObject; +} + +- (NSError *)error { + if (_responseSerializationError) { + return _responseSerializationError; + } else { + return [super error]; + } +} + +#pragma mark - AFHTTPRequestOperation + +- (void)setCompletionBlockWithSuccess:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + // completionBlock is manually nilled out in AFURLConnectionOperation to break the retain cycle. +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Warc-retain-cycles" +#pragma clang diagnostic ignored "-Wgnu" + self.completionBlock = ^{ + if (self.completionGroup) { + dispatch_group_enter(self.completionGroup); + } + + dispatch_async(http_request_operation_processing_queue(), ^{ + if (self.error) { + if (failure) { + dispatch_group_async(self.completionGroup ?: http_request_operation_completion_group(), self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(self, self.error); + }); + } + } else { + id responseObject = self.responseObject; + if (self.error) { + if (failure) { + dispatch_group_async(self.completionGroup ?: http_request_operation_completion_group(), self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(self, self.error); + }); + } + } else { + if (success) { + dispatch_group_async(self.completionGroup ?: http_request_operation_completion_group(), self.completionQueue ?: dispatch_get_main_queue(), ^{ + success(self, responseObject); + }); + } + } + } + + if (self.completionGroup) { + dispatch_group_leave(self.completionGroup); + } + }); + }; +#pragma clang diagnostic pop +} + +#pragma mark - AFURLRequestOperation + +- (void)pause { + [super pause]; + + u_int64_t offset = 0; + if ([self.outputStream propertyForKey:NSStreamFileCurrentOffsetKey]) { + offset = [(NSNumber *)[self.outputStream propertyForKey:NSStreamFileCurrentOffsetKey] unsignedLongLongValue]; + } else { + offset = [(NSData *)[self.outputStream propertyForKey:NSStreamDataWrittenToMemoryStreamKey] length]; + } + + NSMutableURLRequest *mutableURLRequest = [self.request mutableCopy]; + if ([self.response respondsToSelector:@selector(allHeaderFields)] && [[self.response allHeaderFields] valueForKey:@"ETag"]) { + [mutableURLRequest setValue:[[self.response allHeaderFields] valueForKey:@"ETag"] forHTTPHeaderField:@"If-Range"]; + } + [mutableURLRequest setValue:[NSString stringWithFormat:@"bytes=%llu-", offset] forHTTPHeaderField:@"Range"]; + self.request = mutableURLRequest; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.responseSerializer = [decoder decodeObjectOfClass:[AFHTTPResponseSerializer class] forKey:NSStringFromSelector(@selector(responseSerializer))]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:self.responseSerializer forKey:NSStringFromSelector(@selector(responseSerializer))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPRequestOperation *operation = [super copyWithZone:zone]; + + operation.responseSerializer = [self.responseSerializer copyWithZone:zone]; + operation.completionQueue = self.completionQueue; + operation.completionGroup = self.completionGroup; + + return operation; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h new file mode 100644 index 0000000..8170811 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h @@ -0,0 +1,326 @@ +// AFHTTPRequestOperationManager.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#import +#import + +#if __IPHONE_OS_VERSION_MIN_REQUIRED +#import +#else +#import +#endif + +#import "AFHTTPRequestOperation.h" +#import "AFURLResponseSerialization.h" +#import "AFURLRequestSerialization.h" +#import "AFSecurityPolicy.h" +#import "AFNetworkReachabilityManager.h" + +#ifndef NS_DESIGNATED_INITIALIZER +#if __has_attribute(objc_designated_initializer) +#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +#else +#define NS_DESIGNATED_INITIALIZER +#endif +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + `AFHTTPRequestOperationManager` encapsulates the common patterns of communicating with a web application over HTTP, including request creation, response serialization, network reachability monitoring, and security, as well as request operation management. + + ## Subclassing Notes + + Developers targeting iOS 7 or Mac OS X 10.9 or later that deal extensively with a web service are encouraged to subclass `AFHTTPSessionManager`, providing a class method that returns a shared singleton object on which authentication and other configuration can be shared across the application. + + For developers targeting iOS 6 or Mac OS X 10.8 or earlier, `AFHTTPRequestOperationManager` may be used to similar effect. + + ## Methods to Override + + To change the behavior of all request operation construction for an `AFHTTPRequestOperationManager` subclass, override `HTTPRequestOperationWithRequest:success:failure`. + + ## Serialization + + Requests created by an HTTP client will contain default headers and encode parameters according to the `requestSerializer` property, which is an object conforming to ``. + + Responses received from the server are automatically validated and serialized by the `responseSerializers` property, which is an object conforming to `` + + ## URL Construction Using Relative Paths + + For HTTP convenience methods, the request serializer constructs URLs from the path relative to the `-baseURL`, using `NSURL +URLWithString:relativeToURL:`, when provided. If `baseURL` is `nil`, `path` needs to resolve to a valid `NSURL` object using `NSURL +URLWithString:`. + + Below are a few examples of how `baseURL` and relative paths interact: + + NSURL *baseURL = [NSURL URLWithString:@"http://example.com/v1/"]; + [NSURL URLWithString:@"foo" relativeToURL:baseURL]; // http://example.com/v1/foo + [NSURL URLWithString:@"foo?bar=baz" relativeToURL:baseURL]; // http://example.com/v1/foo?bar=baz + [NSURL URLWithString:@"/foo" relativeToURL:baseURL]; // http://example.com/foo + [NSURL URLWithString:@"foo/" relativeToURL:baseURL]; // http://example.com/v1/foo + [NSURL URLWithString:@"/foo/" relativeToURL:baseURL]; // http://example.com/foo/ + [NSURL URLWithString:@"http://example2.com/" relativeToURL:baseURL]; // http://example2.com/ + + Also important to note is that a trailing slash will be added to any `baseURL` without one. This would otherwise cause unexpected behavior when constructing URLs using paths without a leading slash. + + ## Network Reachability Monitoring + + Network reachability status and change monitoring is available through the `reachabilityManager` property. Applications may choose to monitor network reachability conditions in order to prevent or suspend any outbound requests. See `AFNetworkReachabilityManager` for more details. + + ## NSSecureCoding & NSCopying Caveats + + `AFHTTPRequestOperationManager` conforms to the `NSSecureCoding` and `NSCopying` protocols, allowing operations to be archived to disk, and copied in memory, respectively. There are a few minor caveats to keep in mind, however: + + - Archives and copies of HTTP clients will be initialized with an empty operation queue. + - NSSecureCoding cannot serialize / deserialize block properties, so an archive of an HTTP client will not include any reachability callback block that may be set. + */ +@interface AFHTTPRequestOperationManager : NSObject + +/** + The URL used to monitor reachability, and construct requests from relative paths in methods like `requestWithMethod:URLString:parameters:`, and the `GET` / `POST` / et al. convenience methods. + */ +@property (readonly, nonatomic, strong, nullable) NSURL *baseURL; + +/** + Requests created with `requestWithMethod:URLString:parameters:` & `multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:` are constructed with a set of default headers using a parameter serialization specified by this property. By default, this is set to an instance of `AFHTTPRequestSerializer`, which serializes query string parameters for `GET`, `HEAD`, and `DELETE` requests, or otherwise URL-form-encodes HTTP message bodies. + + @warning `requestSerializer` must not be `nil`. + */ +@property (nonatomic, strong) AFHTTPRequestSerializer * requestSerializer; + +/** + Responses sent from the server in data tasks created with `dataTaskWithRequest:success:failure:` and run using the `GET` / `POST` / et al. convenience methods are automatically validated and serialized by the response serializer. By default, this property is set to a JSON serializer, which serializes data from responses with a `application/json` MIME type, and falls back to the raw data object. The serializer validates the status code to be in the `2XX` range, denoting success. If the response serializer generates an error in `-responseObjectForResponse:data:error:`, the `failure` callback of the session task or request operation will be executed; otherwise, the `success` callback will be executed. + + @warning `responseSerializer` must not be `nil`. + */ +@property (nonatomic, strong) AFHTTPResponseSerializer * responseSerializer; + +/** + The operation queue on which request operations are scheduled and run. + */ +@property (nonatomic, strong) NSOperationQueue *operationQueue; + +///------------------------------- +/// @name Managing URL Credentials +///------------------------------- + +/** + Whether request operations should consult the credential storage for authenticating the connection. `YES` by default. + + @see AFURLConnectionOperation -shouldUseCredentialStorage + */ +@property (nonatomic, assign) BOOL shouldUseCredentialStorage; + +/** + The credential used by request operations for authentication challenges. + + @see AFURLConnectionOperation -credential + */ +@property (nonatomic, strong, nullable) NSURLCredential *credential; + +///------------------------------- +/// @name Managing Security Policy +///------------------------------- + +/** + The security policy used by created request operations to evaluate server trust for secure connections. `AFHTTPRequestOperationManager` uses the `defaultPolicy` unless otherwise specified. + */ +@property (nonatomic, strong) AFSecurityPolicy *securityPolicy; + +///------------------------------------ +/// @name Managing Network Reachability +///------------------------------------ + +/** + The network reachability manager. `AFHTTPRequestOperationManager` uses the `sharedManager` by default. + */ +@property (readwrite, nonatomic, strong) AFNetworkReachabilityManager *reachabilityManager; + +///------------------------------- +/// @name Managing Callback Queues +///------------------------------- + +/** + The dispatch queue for the `completionBlock` of request operations. If `NULL` (default), the main queue is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_queue_t completionQueue; +#else +@property (nonatomic, assign, nullable) dispatch_queue_t completionQueue; +#endif + +/** + The dispatch group for the `completionBlock` of request operations. If `NULL` (default), a private dispatch group is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_group_t completionGroup; +#else +@property (nonatomic, assign, nullable) dispatch_group_t completionGroup; +#endif + +///--------------------------------------------- +/// @name Creating and Initializing HTTP Clients +///--------------------------------------------- + +/** + Creates and returns an `AFHTTPRequestOperationManager` object. + */ ++ (instancetype)manager; + +/** + Initializes an `AFHTTPRequestOperationManager` object with the specified base URL. + + This is the designated initializer. + + @param url The base URL for the HTTP client. + + @return The newly-initialized HTTP client + */ +- (instancetype)initWithBaseURL:(nullable NSURL *)url NS_DESIGNATED_INITIALIZER; + +///--------------------------------------- +/// @name Managing HTTP Request Operations +///--------------------------------------- + +/** + Creates an `AFHTTPRequestOperation`, and sets the response serializers to that of the HTTP client. + + @param request The request object to be loaded asynchronously during execution of the operation. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the created request operation and the object created from the response data of request. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes two arguments:, the created request operation and the `NSError` object describing the network or parsing error that occurred. + */ +- (AFHTTPRequestOperation *)HTTPRequestOperationWithRequest:(NSURLRequest *)request + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation *operation, NSError *error))failure; + +///--------------------------- +/// @name Making HTTP Requests +///--------------------------- + +/** + Creates and runs an `AFHTTPRequestOperation` with a `GET` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)GET:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a `HEAD` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes a single arguments: the request operation. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)HEAD:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a `POST` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)POST:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a multipart `POST` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param block A block that takes a single argument and appends data to the HTTP body. The block argument is an object adopting the `AFMultipartFormData` protocol. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)POST:(NSString *)URLString + parameters:(nullable id)parameters + constructingBodyWithBlock:(nullable void (^)(id formData))block + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a `PUT` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)PUT:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a `PATCH` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)PATCH:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +/** + Creates and runs an `AFHTTPRequestOperation` with a `DELETE` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: the request operation, and the response object created by the client response serializer. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the request operation and the error describing the network or parsing error that occurred. + + @see -HTTPRequestOperationWithRequest:success:failure: + */ +- (nullable AFHTTPRequestOperation *)DELETE:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(nullable void (^)(AFHTTPRequestOperation * __nullable operation, NSError *error))failure; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m new file mode 100644 index 0000000..ee682b7 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m @@ -0,0 +1,290 @@ +// AFHTTPRequestOperationManager.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import "AFHTTPRequestOperationManager.h" +#import "AFHTTPRequestOperation.h" + +#import +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +#import +#endif + +@interface AFHTTPRequestOperationManager () +@property (readwrite, nonatomic, strong) NSURL *baseURL; +@end + +@implementation AFHTTPRequestOperationManager + ++ (instancetype)manager { + return [[self alloc] initWithBaseURL:nil]; +} + +- (instancetype)init { + return [self initWithBaseURL:nil]; +} + +- (instancetype)initWithBaseURL:(NSURL *)url { + self = [super init]; + if (!self) { + return nil; + } + + // Ensure terminal slash for baseURL path, so that NSURL +URLWithString:relativeToURL: works as expected + if ([[url path] length] > 0 && ![[url absoluteString] hasSuffix:@"/"]) { + url = [url URLByAppendingPathComponent:@""]; + } + + self.baseURL = url; + + self.requestSerializer = [AFHTTPRequestSerializer serializer]; + self.responseSerializer = [AFJSONResponseSerializer serializer]; + + self.securityPolicy = [AFSecurityPolicy defaultPolicy]; + + self.reachabilityManager = [AFNetworkReachabilityManager sharedManager]; + + self.operationQueue = [[NSOperationQueue alloc] init]; + + self.shouldUseCredentialStorage = YES; + + return self; +} + +#pragma mark - + +#ifdef _SYSTEMCONFIGURATION_H +#endif + +- (void)setRequestSerializer:(AFHTTPRequestSerializer *)requestSerializer { + NSParameterAssert(requestSerializer); + + _requestSerializer = requestSerializer; +} + +- (void)setResponseSerializer:(AFHTTPResponseSerializer *)responseSerializer { + NSParameterAssert(responseSerializer); + + _responseSerializer = responseSerializer; +} + +#pragma mark - + +- (AFHTTPRequestOperation *)HTTPRequestOperationWithHTTPMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + NSError *serializationError = nil; + NSMutableURLRequest *request = [self.requestSerializer requestWithMethod:method URLString:[[NSURL URLWithString:URLString relativeToURL:self.baseURL] absoluteString] parameters:parameters error:&serializationError]; + if (serializationError) { + if (failure) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_async(self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(nil, serializationError); + }); +#pragma clang diagnostic pop + } + + return nil; + } + + return [self HTTPRequestOperationWithRequest:request success:success failure:failure]; +} + +- (AFHTTPRequestOperation *)HTTPRequestOperationWithRequest:(NSURLRequest *)request + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; + operation.responseSerializer = self.responseSerializer; + operation.shouldUseCredentialStorage = self.shouldUseCredentialStorage; + operation.credential = self.credential; + operation.securityPolicy = self.securityPolicy; + + [operation setCompletionBlockWithSuccess:success failure:failure]; + operation.completionQueue = self.completionQueue; + operation.completionGroup = self.completionGroup; + + return operation; +} + +#pragma mark - + +- (AFHTTPRequestOperation *)GET:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"GET" URLString:URLString parameters:parameters success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)HEAD:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"HEAD" URLString:URLString parameters:parameters success:^(AFHTTPRequestOperation *requestOperation, __unused id responseObject) { + if (success) { + success(requestOperation); + } + } failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)POST:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"POST" URLString:URLString parameters:parameters success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)POST:(NSString *)URLString + parameters:(id)parameters + constructingBodyWithBlock:(void (^)(id formData))block + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + NSError *serializationError = nil; + NSMutableURLRequest *request = [self.requestSerializer multipartFormRequestWithMethod:@"POST" URLString:[[NSURL URLWithString:URLString relativeToURL:self.baseURL] absoluteString] parameters:parameters constructingBodyWithBlock:block error:&serializationError]; + if (serializationError) { + if (failure) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_async(self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(nil, serializationError); + }); +#pragma clang diagnostic pop + } + + return nil; + } + + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)PUT:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"PUT" URLString:URLString parameters:parameters success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)PATCH:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"PATCH" URLString:URLString parameters:parameters success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +- (AFHTTPRequestOperation *)DELETE:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithHTTPMethod:@"DELETE" URLString:URLString parameters:parameters success:success failure:failure]; + + [self.operationQueue addOperation:operation]; + + return operation; +} + +#pragma mark - NSObject + +- (NSString *)description { + return [NSString stringWithFormat:@"<%@: %p, baseURL: %@, operationQueue: %@>", NSStringFromClass([self class]), self, [self.baseURL absoluteString], self.operationQueue]; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + NSURL *baseURL = [decoder decodeObjectForKey:NSStringFromSelector(@selector(baseURL))]; + + self = [self initWithBaseURL:baseURL]; + if (!self) { + return nil; + } + + self.requestSerializer = [decoder decodeObjectOfClass:[AFHTTPRequestSerializer class] forKey:NSStringFromSelector(@selector(requestSerializer))]; + self.responseSerializer = [decoder decodeObjectOfClass:[AFHTTPResponseSerializer class] forKey:NSStringFromSelector(@selector(responseSerializer))]; + AFSecurityPolicy *decodedPolicy = [decoder decodeObjectOfClass:[AFSecurityPolicy class] forKey:NSStringFromSelector(@selector(securityPolicy))]; + if (decodedPolicy) { + self.securityPolicy = decodedPolicy; + } + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [coder encodeObject:self.baseURL forKey:NSStringFromSelector(@selector(baseURL))]; + [coder encodeObject:self.requestSerializer forKey:NSStringFromSelector(@selector(requestSerializer))]; + [coder encodeObject:self.responseSerializer forKey:NSStringFromSelector(@selector(responseSerializer))]; + [coder encodeObject:self.securityPolicy forKey:NSStringFromSelector(@selector(securityPolicy))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPRequestOperationManager *HTTPClient = [[[self class] allocWithZone:zone] initWithBaseURL:self.baseURL]; + + HTTPClient.requestSerializer = [self.requestSerializer copyWithZone:zone]; + HTTPClient.responseSerializer = [self.responseSerializer copyWithZone:zone]; + HTTPClient.securityPolicy = [self.securityPolicy copyWithZone:zone]; + + return HTTPClient; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h b/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h new file mode 100644 index 0000000..04b0876 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h @@ -0,0 +1,253 @@ +// AFHTTPSessionManager.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#if !TARGET_OS_WATCH +#import +#endif +#import + +#if __IPHONE_OS_VERSION_MIN_REQUIRED +#import +#else +#import +#endif + +#import "AFURLSessionManager.h" + +#ifndef NS_DESIGNATED_INITIALIZER +#if __has_attribute(objc_designated_initializer) +#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +#else +#define NS_DESIGNATED_INITIALIZER +#endif +#endif + +/** + `AFHTTPSessionManager` is a subclass of `AFURLSessionManager` with convenience methods for making HTTP requests. When a `baseURL` is provided, requests made with the `GET` / `POST` / et al. convenience methods can be made with relative paths. + + ## Subclassing Notes + + Developers targeting iOS 7 or Mac OS X 10.9 or later that deal extensively with a web service are encouraged to subclass `AFHTTPSessionManager`, providing a class method that returns a shared singleton object on which authentication and other configuration can be shared across the application. + + For developers targeting iOS 6 or Mac OS X 10.8 or earlier, `AFHTTPRequestOperationManager` may be used to similar effect. + + ## Methods to Override + + To change the behavior of all data task operation construction, which is also used in the `GET` / `POST` / et al. convenience methods, override `dataTaskWithRequest:completionHandler:`. + + ## Serialization + + Requests created by an HTTP client will contain default headers and encode parameters according to the `requestSerializer` property, which is an object conforming to ``. + + Responses received from the server are automatically validated and serialized by the `responseSerializers` property, which is an object conforming to `` + + ## URL Construction Using Relative Paths + + For HTTP convenience methods, the request serializer constructs URLs from the path relative to the `-baseURL`, using `NSURL +URLWithString:relativeToURL:`, when provided. If `baseURL` is `nil`, `path` needs to resolve to a valid `NSURL` object using `NSURL +URLWithString:`. + + Below are a few examples of how `baseURL` and relative paths interact: + + NSURL *baseURL = [NSURL URLWithString:@"http://example.com/v1/"]; + [NSURL URLWithString:@"foo" relativeToURL:baseURL]; // http://example.com/v1/foo + [NSURL URLWithString:@"foo?bar=baz" relativeToURL:baseURL]; // http://example.com/v1/foo?bar=baz + [NSURL URLWithString:@"/foo" relativeToURL:baseURL]; // http://example.com/foo + [NSURL URLWithString:@"foo/" relativeToURL:baseURL]; // http://example.com/v1/foo + [NSURL URLWithString:@"/foo/" relativeToURL:baseURL]; // http://example.com/foo/ + [NSURL URLWithString:@"http://example2.com/" relativeToURL:baseURL]; // http://example2.com/ + + Also important to note is that a trailing slash will be added to any `baseURL` without one. This would otherwise cause unexpected behavior when constructing URLs using paths without a leading slash. + + @warning Managers for background sessions must be owned for the duration of their use. This can be accomplished by creating an application-wide or shared singleton instance. + */ + +#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || TARGET_OS_WATCH + +NS_ASSUME_NONNULL_BEGIN + +@interface AFHTTPSessionManager : AFURLSessionManager + +/** + The URL used to construct requests from relative paths in methods like `requestWithMethod:URLString:parameters:`, and the `GET` / `POST` / et al. convenience methods. + */ +@property (readonly, nonatomic, strong, nullable) NSURL *baseURL; + +/** + Requests created with `requestWithMethod:URLString:parameters:` & `multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:` are constructed with a set of default headers using a parameter serialization specified by this property. By default, this is set to an instance of `AFHTTPRequestSerializer`, which serializes query string parameters for `GET`, `HEAD`, and `DELETE` requests, or otherwise URL-form-encodes HTTP message bodies. + + @warning `requestSerializer` must not be `nil`. + */ +@property (nonatomic, strong) AFHTTPRequestSerializer * requestSerializer; + +/** + Responses sent from the server in data tasks created with `dataTaskWithRequest:success:failure:` and run using the `GET` / `POST` / et al. convenience methods are automatically validated and serialized by the response serializer. By default, this property is set to an instance of `AFJSONResponseSerializer`. + + @warning `responseSerializer` must not be `nil`. + */ +@property (nonatomic, strong) AFHTTPResponseSerializer * responseSerializer; + +///--------------------- +/// @name Initialization +///--------------------- + +/** + Creates and returns an `AFHTTPSessionManager` object. + */ ++ (instancetype)manager; + +/** + Initializes an `AFHTTPSessionManager` object with the specified base URL. + + @param url The base URL for the HTTP client. + + @return The newly-initialized HTTP client + */ +- (instancetype)initWithBaseURL:(nullable NSURL *)url; + +/** + Initializes an `AFHTTPSessionManager` object with the specified base URL. + + This is the designated initializer. + + @param url The base URL for the HTTP client. + @param configuration The configuration used to create the managed session. + + @return The newly-initialized HTTP client + */ +- (instancetype)initWithBaseURL:(nullable NSURL *)url + sessionConfiguration:(nullable NSURLSessionConfiguration *)configuration NS_DESIGNATED_INITIALIZER; + +///--------------------------- +/// @name Making HTTP Requests +///--------------------------- + +/** + Creates and runs an `NSURLSessionDataTask` with a `GET` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)GET:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a `HEAD` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes a single arguments: the data task. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)HEAD:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a `POST` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)POST:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a multipart `POST` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param block A block that takes a single argument and appends data to the HTTP body. The block argument is an object adopting the `AFMultipartFormData` protocol. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)POST:(NSString *)URLString + parameters:(nullable id)parameters + constructingBodyWithBlock:(nullable void (^)(id formData))block + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a `PUT` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)PUT:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a `PATCH` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)PATCH:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +/** + Creates and runs an `NSURLSessionDataTask` with a `DELETE` request. + + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded according to the client request serializer. + @param success A block object to be executed when the task finishes successfully. This block has no return value and takes two arguments: the data task, and the response object created by the client response serializer. + @param failure A block object to be executed when the task finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a two arguments: the data task and the error describing the network or parsing error that occurred. + + @see -dataTaskWithRequest:completionHandler: + */ +- (nullable NSURLSessionDataTask *)DELETE:(NSString *)URLString + parameters:(nullable id)parameters + success:(nullable void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(nullable void (^)(NSURLSessionDataTask * __nullable task, NSError *error))failure; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m b/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m new file mode 100644 index 0000000..ed46b26 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m @@ -0,0 +1,328 @@ +// AFHTTPSessionManager.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFHTTPSessionManager.h" + +#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || TARGET_WATCH_OS + +#import "AFURLRequestSerialization.h" +#import "AFURLResponseSerialization.h" + +#import +#import + +#ifdef _SYSTEMCONFIGURATION_H +#import +#import +#import +#import +#import +#endif + +#if TARGET_OS_IOS +#import +#elif TARGET_OS_WATCH +#import +#endif + +@interface AFHTTPSessionManager () +@property (readwrite, nonatomic, strong) NSURL *baseURL; +@end + +@implementation AFHTTPSessionManager +@dynamic responseSerializer; + ++ (instancetype)manager { + return [[[self class] alloc] initWithBaseURL:nil]; +} + +- (instancetype)init { + return [self initWithBaseURL:nil]; +} + +- (instancetype)initWithBaseURL:(NSURL *)url { + return [self initWithBaseURL:url sessionConfiguration:nil]; +} + +- (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration { + return [self initWithBaseURL:nil sessionConfiguration:configuration]; +} + +- (instancetype)initWithBaseURL:(NSURL *)url + sessionConfiguration:(NSURLSessionConfiguration *)configuration +{ + self = [super initWithSessionConfiguration:configuration]; + if (!self) { + return nil; + } + + // Ensure terminal slash for baseURL path, so that NSURL +URLWithString:relativeToURL: works as expected + if ([[url path] length] > 0 && ![[url absoluteString] hasSuffix:@"/"]) { + url = [url URLByAppendingPathComponent:@""]; + } + + self.baseURL = url; + + self.requestSerializer = [AFHTTPRequestSerializer serializer]; + self.responseSerializer = [AFJSONResponseSerializer serializer]; + + return self; +} + +#pragma mark - + +#ifdef _SYSTEMCONFIGURATION_H +#endif + +- (void)setRequestSerializer:(AFHTTPRequestSerializer *)requestSerializer { + NSParameterAssert(requestSerializer); + + _requestSerializer = requestSerializer; +} + +- (void)setResponseSerializer:(AFHTTPResponseSerializer *)responseSerializer { + NSParameterAssert(responseSerializer); + + [super setResponseSerializer:responseSerializer]; +} + +#pragma mark - + +- (NSURLSessionDataTask *)GET:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"GET" URLString:URLString parameters:parameters success:success failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)HEAD:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"HEAD" URLString:URLString parameters:parameters success:^(NSURLSessionDataTask *task, __unused id responseObject) { + if (success) { + success(task); + } + } failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)POST:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"POST" URLString:URLString parameters:parameters success:success failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)POST:(NSString *)URLString + parameters:(id)parameters + constructingBodyWithBlock:(void (^)(id formData))block + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSError *serializationError = nil; + NSMutableURLRequest *request = [self.requestSerializer multipartFormRequestWithMethod:@"POST" URLString:[[NSURL URLWithString:URLString relativeToURL:self.baseURL] absoluteString] parameters:parameters constructingBodyWithBlock:block error:&serializationError]; + if (serializationError) { + if (failure) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_async(self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(nil, serializationError); + }); +#pragma clang diagnostic pop + } + + return nil; + } + + __block NSURLSessionDataTask *task = [self uploadTaskWithStreamedRequest:request progress:nil completionHandler:^(NSURLResponse * __unused response, id responseObject, NSError *error) { + if (error) { + if (failure) { + failure(task, error); + } + } else { + if (success) { + success(task, responseObject); + } + } + }]; + + [task resume]; + + return task; +} + +- (NSURLSessionDataTask *)PUT:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"PUT" URLString:URLString parameters:parameters success:success failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)PATCH:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"PATCH" URLString:URLString parameters:parameters success:success failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)DELETE:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *task, id responseObject))success + failure:(void (^)(NSURLSessionDataTask *task, NSError *error))failure +{ + NSURLSessionDataTask *dataTask = [self dataTaskWithHTTPMethod:@"DELETE" URLString:URLString parameters:parameters success:success failure:failure]; + + [dataTask resume]; + + return dataTask; +} + +- (NSURLSessionDataTask *)dataTaskWithHTTPMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(id)parameters + success:(void (^)(NSURLSessionDataTask *, id))success + failure:(void (^)(NSURLSessionDataTask *, NSError *))failure +{ + NSError *serializationError = nil; + NSMutableURLRequest *request = [self.requestSerializer requestWithMethod:method URLString:[[NSURL URLWithString:URLString relativeToURL:self.baseURL] absoluteString] parameters:parameters error:&serializationError]; + if (serializationError) { + if (failure) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_async(self.completionQueue ?: dispatch_get_main_queue(), ^{ + failure(nil, serializationError); + }); +#pragma clang diagnostic pop + } + + return nil; + } + + __block NSURLSessionDataTask *dataTask = nil; + dataTask = [self dataTaskWithRequest:request completionHandler:^(NSURLResponse * __unused response, id responseObject, NSError *error) { + if (error) { + if (failure) { + failure(dataTask, error); + } + } else { + if (success) { + success(dataTask, responseObject); + } + } + }]; + + return dataTask; +} + +#pragma mark - NSObject + +- (NSString *)description { + return [NSString stringWithFormat:@"<%@: %p, baseURL: %@, session: %@, operationQueue: %@>", NSStringFromClass([self class]), self, [self.baseURL absoluteString], self.session, self.operationQueue]; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + NSURL *baseURL = [decoder decodeObjectOfClass:[NSURL class] forKey:NSStringFromSelector(@selector(baseURL))]; + NSURLSessionConfiguration *configuration = [decoder decodeObjectOfClass:[NSURLSessionConfiguration class] forKey:@"sessionConfiguration"]; + if (!configuration) { + NSString *configurationIdentifier = [decoder decodeObjectOfClass:[NSString class] forKey:@"identifier"]; + if (configurationIdentifier) { +#if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1100) + configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:configurationIdentifier]; +#else + configuration = [NSURLSessionConfiguration backgroundSessionConfiguration:configurationIdentifier]; +#endif + } + } + + self = [self initWithBaseURL:baseURL sessionConfiguration:configuration]; + if (!self) { + return nil; + } + + self.requestSerializer = [decoder decodeObjectOfClass:[AFHTTPRequestSerializer class] forKey:NSStringFromSelector(@selector(requestSerializer))]; + self.responseSerializer = [decoder decodeObjectOfClass:[AFHTTPResponseSerializer class] forKey:NSStringFromSelector(@selector(responseSerializer))]; + AFSecurityPolicy *decodedPolicy = [decoder decodeObjectOfClass:[AFSecurityPolicy class] forKey:NSStringFromSelector(@selector(securityPolicy))]; + if (decodedPolicy) { + self.securityPolicy = decodedPolicy; + } + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:self.baseURL forKey:NSStringFromSelector(@selector(baseURL))]; + if ([self.session.configuration conformsToProtocol:@protocol(NSCoding)]) { + [coder encodeObject:self.session.configuration forKey:@"sessionConfiguration"]; + } else { + [coder encodeObject:self.session.configuration.identifier forKey:@"identifier"]; + } + [coder encodeObject:self.requestSerializer forKey:NSStringFromSelector(@selector(requestSerializer))]; + [coder encodeObject:self.responseSerializer forKey:NSStringFromSelector(@selector(responseSerializer))]; + [coder encodeObject:self.securityPolicy forKey:NSStringFromSelector(@selector(securityPolicy))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPSessionManager *HTTPClient = [[[self class] allocWithZone:zone] initWithBaseURL:self.baseURL sessionConfiguration:self.session.configuration]; + + HTTPClient.requestSerializer = [self.requestSerializer copyWithZone:zone]; + HTTPClient.responseSerializer = [self.responseSerializer copyWithZone:zone]; + HTTPClient.securityPolicy = [self.securityPolicy copyWithZone:zone]; + return HTTPClient; +} + +@end + +#endif diff --git a/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h b/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h new file mode 100644 index 0000000..e2eb945 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h @@ -0,0 +1,207 @@ +// AFNetworkReachabilityManager.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#if !TARGET_OS_WATCH +#import + +#ifndef NS_DESIGNATED_INITIALIZER +#if __has_attribute(objc_designated_initializer) +#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +#else +#define NS_DESIGNATED_INITIALIZER +#endif +#endif + +typedef NS_ENUM(NSInteger, AFNetworkReachabilityStatus) { + AFNetworkReachabilityStatusUnknown = -1, + AFNetworkReachabilityStatusNotReachable = 0, + AFNetworkReachabilityStatusReachableViaWWAN = 1, + AFNetworkReachabilityStatusReachableViaWiFi = 2, +}; + +NS_ASSUME_NONNULL_BEGIN + +/** + `AFNetworkReachabilityManager` monitors the reachability of domains, and addresses for both WWAN and WiFi network interfaces. + + Reachability can be used to determine background information about why a network operation failed, or to trigger a network operation retrying when a connection is established. It should not be used to prevent a user from initiating a network request, as it's possible that an initial request may be required to establish reachability. + + See Apple's Reachability Sample Code (https://developer.apple.com/library/ios/samplecode/reachability/) + + @warning Instances of `AFNetworkReachabilityManager` must be started with `-startMonitoring` before reachability status can be determined. + */ +@interface AFNetworkReachabilityManager : NSObject + +/** + The current network reachability status. + */ +@property (readonly, nonatomic, assign) AFNetworkReachabilityStatus networkReachabilityStatus; + +/** + Whether or not the network is currently reachable. + */ +@property (readonly, nonatomic, assign, getter = isReachable) BOOL reachable; + +/** + Whether or not the network is currently reachable via WWAN. + */ +@property (readonly, nonatomic, assign, getter = isReachableViaWWAN) BOOL reachableViaWWAN; + +/** + Whether or not the network is currently reachable via WiFi. + */ +@property (readonly, nonatomic, assign, getter = isReachableViaWiFi) BOOL reachableViaWiFi; + +///--------------------- +/// @name Initialization +///--------------------- + +/** + Returns the shared network reachability manager. + */ ++ (instancetype)sharedManager; + +/** + Creates and returns a network reachability manager for the specified domain. + + @param domain The domain used to evaluate network reachability. + + @return An initialized network reachability manager, actively monitoring the specified domain. + */ ++ (instancetype)managerForDomain:(NSString *)domain; + +/** + Creates and returns a network reachability manager for the socket address. + + @param address The socket address (`sockaddr_in`) used to evaluate network reachability. + + @return An initialized network reachability manager, actively monitoring the specified socket address. + */ ++ (instancetype)managerForAddress:(const void *)address; + +/** + Initializes an instance of a network reachability manager from the specified reachability object. + + @param reachability The reachability object to monitor. + + @return An initialized network reachability manager, actively monitoring the specified reachability. + */ +- (instancetype)initWithReachability:(SCNetworkReachabilityRef)reachability NS_DESIGNATED_INITIALIZER; + +///-------------------------------------------------- +/// @name Starting & Stopping Reachability Monitoring +///-------------------------------------------------- + +/** + Starts monitoring for changes in network reachability status. + */ +- (void)startMonitoring; + +/** + Stops monitoring for changes in network reachability status. + */ +- (void)stopMonitoring; + +///------------------------------------------------- +/// @name Getting Localized Reachability Description +///------------------------------------------------- + +/** + Returns a localized string representation of the current network reachability status. + */ +- (NSString *)localizedNetworkReachabilityStatusString; + +///--------------------------------------------------- +/// @name Setting Network Reachability Change Callback +///--------------------------------------------------- + +/** + Sets a callback to be executed when the network availability of the `baseURL` host changes. + + @param block A block object to be executed when the network availability of the `baseURL` host changes.. This block has no return value and takes a single argument which represents the various reachability states from the device to the `baseURL`. + */ +- (void)setReachabilityStatusChangeBlock:(nullable void (^)(AFNetworkReachabilityStatus status))block; + +@end + +///---------------- +/// @name Constants +///---------------- + +/** + ## Network Reachability + + The following constants are provided by `AFNetworkReachabilityManager` as possible network reachability statuses. + + enum { + AFNetworkReachabilityStatusUnknown, + AFNetworkReachabilityStatusNotReachable, + AFNetworkReachabilityStatusReachableViaWWAN, + AFNetworkReachabilityStatusReachableViaWiFi, + } + + `AFNetworkReachabilityStatusUnknown` + The `baseURL` host reachability is not known. + + `AFNetworkReachabilityStatusNotReachable` + The `baseURL` host cannot be reached. + + `AFNetworkReachabilityStatusReachableViaWWAN` + The `baseURL` host can be reached via a cellular connection, such as EDGE or GPRS. + + `AFNetworkReachabilityStatusReachableViaWiFi` + The `baseURL` host can be reached via a Wi-Fi connection. + + ### Keys for Notification UserInfo Dictionary + + Strings that are used as keys in a `userInfo` dictionary in a network reachability status change notification. + + `AFNetworkingReachabilityNotificationStatusItem` + A key in the userInfo dictionary in a `AFNetworkingReachabilityDidChangeNotification` notification. + The corresponding value is an `NSNumber` object representing the `AFNetworkReachabilityStatus` value for the current reachability status. + */ + +///-------------------- +/// @name Notifications +///-------------------- + +/** + Posted when network reachability changes. + This notification assigns no notification object. The `userInfo` dictionary contains an `NSNumber` object under the `AFNetworkingReachabilityNotificationStatusItem` key, representing the `AFNetworkReachabilityStatus` value for the current network reachability. + + @warning In order for network reachability to be monitored, include the `SystemConfiguration` framework in the active target's "Link Binary With Library" build phase, and add `#import ` to the header prefix of the project (`Prefix.pch`). + */ +FOUNDATION_EXPORT NSString * const AFNetworkingReachabilityDidChangeNotification; +FOUNDATION_EXPORT NSString * const AFNetworkingReachabilityNotificationStatusItem; + +///-------------------- +/// @name Functions +///-------------------- + +/** + Returns a localized string representation of an `AFNetworkReachabilityStatus` value. + */ +FOUNDATION_EXPORT NSString * AFStringFromNetworkReachabilityStatus(AFNetworkReachabilityStatus status); + +NS_ASSUME_NONNULL_END +#endif diff --git a/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m b/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m new file mode 100644 index 0000000..fe67781 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m @@ -0,0 +1,248 @@ +// AFNetworkReachabilityManager.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFNetworkReachabilityManager.h" +#if !TARGET_OS_WATCH + +#import +#import +#import +#import +#import + +NSString * const AFNetworkingReachabilityDidChangeNotification = @"com.alamofire.networking.reachability.change"; +NSString * const AFNetworkingReachabilityNotificationStatusItem = @"AFNetworkingReachabilityNotificationStatusItem"; + +typedef void (^AFNetworkReachabilityStatusBlock)(AFNetworkReachabilityStatus status); + +NSString * AFStringFromNetworkReachabilityStatus(AFNetworkReachabilityStatus status) { + switch (status) { + case AFNetworkReachabilityStatusNotReachable: + return NSLocalizedStringFromTable(@"Not Reachable", @"AFNetworking", nil); + case AFNetworkReachabilityStatusReachableViaWWAN: + return NSLocalizedStringFromTable(@"Reachable via WWAN", @"AFNetworking", nil); + case AFNetworkReachabilityStatusReachableViaWiFi: + return NSLocalizedStringFromTable(@"Reachable via WiFi", @"AFNetworking", nil); + case AFNetworkReachabilityStatusUnknown: + default: + return NSLocalizedStringFromTable(@"Unknown", @"AFNetworking", nil); + } +} + +static AFNetworkReachabilityStatus AFNetworkReachabilityStatusForFlags(SCNetworkReachabilityFlags flags) { + BOOL isReachable = ((flags & kSCNetworkReachabilityFlagsReachable) != 0); + BOOL needsConnection = ((flags & kSCNetworkReachabilityFlagsConnectionRequired) != 0); + BOOL canConnectionAutomatically = (((flags & kSCNetworkReachabilityFlagsConnectionOnDemand ) != 0) || ((flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0)); + BOOL canConnectWithoutUserInteraction = (canConnectionAutomatically && (flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0); + BOOL isNetworkReachable = (isReachable && (!needsConnection || canConnectWithoutUserInteraction)); + + AFNetworkReachabilityStatus status = AFNetworkReachabilityStatusUnknown; + if (isNetworkReachable == NO) { + status = AFNetworkReachabilityStatusNotReachable; + } +#if TARGET_OS_IPHONE + else if ((flags & kSCNetworkReachabilityFlagsIsWWAN) != 0) { + status = AFNetworkReachabilityStatusReachableViaWWAN; + } +#endif + else { + status = AFNetworkReachabilityStatusReachableViaWiFi; + } + + return status; +} + +/** + * Queue a status change notification for the main thread. + * + * This is done to ensure that the notifications are received in the same order + * as they are sent. If notifications are sent directly, it is possible that + * a queued notification (for an earlier status condition) is processed after + * the later update, resulting in the listener being left in the wrong state. + */ +static void AFPostReachabilityStatusChange(SCNetworkReachabilityFlags flags, AFNetworkReachabilityStatusBlock block) { + AFNetworkReachabilityStatus status = AFNetworkReachabilityStatusForFlags(flags); + dispatch_async(dispatch_get_main_queue(), ^{ + if (block) { + block(status); + } + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + NSDictionary *userInfo = @{ AFNetworkingReachabilityNotificationStatusItem: @(status) }; + [notificationCenter postNotificationName:AFNetworkingReachabilityDidChangeNotification object:nil userInfo:userInfo]; + }); +} + +static void AFNetworkReachabilityCallback(SCNetworkReachabilityRef __unused target, SCNetworkReachabilityFlags flags, void *info) { + AFPostReachabilityStatusChange(flags, (__bridge AFNetworkReachabilityStatusBlock)info); +} + +static const void * AFNetworkReachabilityRetainCallback(const void *info) { + return Block_copy(info); +} + +static void AFNetworkReachabilityReleaseCallback(const void *info) { + if (info) { + Block_release(info); + } +} + +@interface AFNetworkReachabilityManager () +@property (readwrite, nonatomic, strong) id networkReachability; +@property (readwrite, nonatomic, assign) AFNetworkReachabilityStatus networkReachabilityStatus; +@property (readwrite, nonatomic, copy) AFNetworkReachabilityStatusBlock networkReachabilityStatusBlock; +@end + +@implementation AFNetworkReachabilityManager + ++ (instancetype)sharedManager { + static AFNetworkReachabilityManager *_sharedManager = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + struct sockaddr_in address; + bzero(&address, sizeof(address)); + address.sin_len = sizeof(address); + address.sin_family = AF_INET; + + _sharedManager = [self managerForAddress:&address]; + }); + + return _sharedManager; +} + +#ifndef __clang_analyzer__ ++ (instancetype)managerForDomain:(NSString *)domain { + SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, [domain UTF8String]); + + AFNetworkReachabilityManager *manager = [[self alloc] initWithReachability:reachability]; + + return manager; +} +#endif + +#ifndef __clang_analyzer__ ++ (instancetype)managerForAddress:(const void *)address { + SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithAddress(kCFAllocatorDefault, (const struct sockaddr *)address); + AFNetworkReachabilityManager *manager = [[self alloc] initWithReachability:reachability]; + + return manager; +} +#endif + +- (instancetype)initWithReachability:(SCNetworkReachabilityRef)reachability { + self = [super init]; + if (!self) { + return nil; + } + + self.networkReachability = CFBridgingRelease(reachability); + self.networkReachabilityStatus = AFNetworkReachabilityStatusUnknown; + + return self; +} + +- (instancetype)init NS_UNAVAILABLE +{ + return nil; +} + +- (void)dealloc { + [self stopMonitoring]; +} + +#pragma mark - + +- (BOOL)isReachable { + return [self isReachableViaWWAN] || [self isReachableViaWiFi]; +} + +- (BOOL)isReachableViaWWAN { + return self.networkReachabilityStatus == AFNetworkReachabilityStatusReachableViaWWAN; +} + +- (BOOL)isReachableViaWiFi { + return self.networkReachabilityStatus == AFNetworkReachabilityStatusReachableViaWiFi; +} + +#pragma mark - + +- (void)startMonitoring { + [self stopMonitoring]; + + if (!self.networkReachability) { + return; + } + + __weak __typeof(self)weakSelf = self; + AFNetworkReachabilityStatusBlock callback = ^(AFNetworkReachabilityStatus status) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + + strongSelf.networkReachabilityStatus = status; + if (strongSelf.networkReachabilityStatusBlock) { + strongSelf.networkReachabilityStatusBlock(status); + } + + }; + + id networkReachability = self.networkReachability; + SCNetworkReachabilityContext context = {0, (__bridge void *)callback, AFNetworkReachabilityRetainCallback, AFNetworkReachabilityReleaseCallback, NULL}; + SCNetworkReachabilitySetCallback((__bridge SCNetworkReachabilityRef)networkReachability, AFNetworkReachabilityCallback, &context); + SCNetworkReachabilityScheduleWithRunLoop((__bridge SCNetworkReachabilityRef)networkReachability, CFRunLoopGetMain(), kCFRunLoopCommonModes); + + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0),^{ + SCNetworkReachabilityFlags flags; + if (SCNetworkReachabilityGetFlags((__bridge SCNetworkReachabilityRef)networkReachability, &flags)) { + AFPostReachabilityStatusChange(flags, callback); + } + }); +} + +- (void)stopMonitoring { + if (!self.networkReachability) { + return; + } + + SCNetworkReachabilityUnscheduleFromRunLoop((__bridge SCNetworkReachabilityRef)self.networkReachability, CFRunLoopGetMain(), kCFRunLoopCommonModes); +} + +#pragma mark - + +- (NSString *)localizedNetworkReachabilityStatusString { + return AFStringFromNetworkReachabilityStatus(self.networkReachabilityStatus); +} + +#pragma mark - + +- (void)setReachabilityStatusChangeBlock:(void (^)(AFNetworkReachabilityStatus status))block { + self.networkReachabilityStatusBlock = block; +} + +#pragma mark - NSKeyValueObserving + ++ (NSSet *)keyPathsForValuesAffectingValueForKey:(NSString *)key { + if ([key isEqualToString:@"reachable"] || [key isEqualToString:@"reachableViaWWAN"] || [key isEqualToString:@"reachableViaWiFi"]) { + return [NSSet setWithObject:@"networkReachabilityStatus"]; + } + + return [super keyPathsForValuesAffectingValueForKey:key]; +} + +@end +#endif diff --git a/Pods/AFNetworking/AFNetworking/AFNetworking.h b/Pods/AFNetworking/AFNetworking/AFNetworking.h new file mode 100644 index 0000000..6d442bb --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFNetworking.h @@ -0,0 +1,46 @@ +// AFNetworking.h +// +// Copyright (c) 2013 AFNetworking (http://afnetworking.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. + +#import +#import + +#ifndef _AFNETWORKING_ + #define _AFNETWORKING_ + + #import "AFURLRequestSerialization.h" + #import "AFURLResponseSerialization.h" + #import "AFSecurityPolicy.h" +#if !TARGET_OS_WATCH + #import "AFNetworkReachabilityManager.h" + #import "AFURLConnectionOperation.h" + #import "AFHTTPRequestOperation.h" + #import "AFHTTPRequestOperationManager.h" +#endif + +#if ( ( defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || \ + ( defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 ) || \ + TARGET_OS_WATCH ) + #import "AFURLSessionManager.h" + #import "AFHTTPSessionManager.h" +#endif + +#endif /* _AFNETWORKING_ */ diff --git a/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h b/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h new file mode 100644 index 0000000..d968f49 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h @@ -0,0 +1,142 @@ +// AFSecurityPolicy.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#import + +typedef NS_ENUM(NSUInteger, AFSSLPinningMode) { + AFSSLPinningModeNone, + AFSSLPinningModePublicKey, + AFSSLPinningModeCertificate, +}; + +/** + `AFSecurityPolicy` evaluates server trust against pinned X.509 certificates and public keys over secure connections. + + Adding pinned SSL certificates to your app helps prevent man-in-the-middle attacks and other vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged to route all communication over an HTTPS connection with SSL pinning configured and enabled. + */ + +NS_ASSUME_NONNULL_BEGIN + +@interface AFSecurityPolicy : NSObject + +/** + The criteria by which server trust should be evaluated against the pinned SSL certificates. Defaults to `AFSSLPinningModeNone`. + */ +@property (readonly, nonatomic, assign) AFSSLPinningMode SSLPinningMode; + +/** + The certificates used to evaluate server trust according to the SSL pinning mode. By default, this property is set to any (`.cer`) certificates included in the app bundle. Note that if you create an array with duplicate certificates, the duplicate certificates will be removed. Note that if pinning is enabled, `evaluateServerTrust:forDomain:` will return true if any pinned certificate matches. + */ +@property (nonatomic, strong, nullable) NSArray *pinnedCertificates; + +/** + Whether or not to trust servers with an invalid or expired SSL certificates. Defaults to `NO`. + */ +@property (nonatomic, assign) BOOL allowInvalidCertificates; + +/** + Whether or not to validate the domain name in the certificate's CN field. Defaults to `YES`. + */ +@property (nonatomic, assign) BOOL validatesDomainName; + +///----------------------------------------- +/// @name Getting Specific Security Policies +///----------------------------------------- + +/** + Returns the shared default security policy, which does not allow invalid certificates, validates domain name, and does not validate against pinned certificates or public keys. + + @return The default security policy. + */ ++ (instancetype)defaultPolicy; + +///--------------------- +/// @name Initialization +///--------------------- + +/** + Creates and returns a security policy with the specified pinning mode. + + @param pinningMode The SSL pinning mode. + + @return A new security policy. + */ ++ (instancetype)policyWithPinningMode:(AFSSLPinningMode)pinningMode; + +///------------------------------ +/// @name Evaluating Server Trust +///------------------------------ + +/** + Whether or not the specified server trust should be accepted, based on the security policy. + + This method should be used when responding to an authentication challenge from a server. + + @param serverTrust The X.509 certificate trust of the server. + + @return Whether or not to trust the server. + + @warning This method has been deprecated in favor of `-evaluateServerTrust:forDomain:`. + */ +- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust DEPRECATED_ATTRIBUTE; + +/** + Whether or not the specified server trust should be accepted, based on the security policy. + + This method should be used when responding to an authentication challenge from a server. + + @param serverTrust The X.509 certificate trust of the server. + @param domain The domain of serverTrust. If `nil`, the domain will not be validated. + + @return Whether or not to trust the server. + */ +- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust + forDomain:(nullable NSString *)domain; + +@end + +NS_ASSUME_NONNULL_END + +///---------------- +/// @name Constants +///---------------- + +/** + ## SSL Pinning Modes + + The following constants are provided by `AFSSLPinningMode` as possible SSL pinning modes. + + enum { + AFSSLPinningModeNone, + AFSSLPinningModePublicKey, + AFSSLPinningModeCertificate, + } + + `AFSSLPinningModeNone` + Do not used pinned certificates to validate servers. + + `AFSSLPinningModePublicKey` + Validate host certificates against public keys of pinned certificates. + + `AFSSLPinningModeCertificate` + Validate host certificates against pinned certificates. +*/ diff --git a/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m b/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m new file mode 100644 index 0000000..2624775 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m @@ -0,0 +1,347 @@ +// AFSecurityPolicy.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFSecurityPolicy.h" + +#import + +#if !TARGET_OS_IOS && !TARGET_OS_WATCH +static NSData * AFSecKeyGetData(SecKeyRef key) { + CFDataRef data = NULL; + + __Require_noErr_Quiet(SecItemExport(key, kSecFormatUnknown, kSecItemPemArmour, NULL, &data), _out); + + return (__bridge_transfer NSData *)data; + +_out: + if (data) { + CFRelease(data); + } + + return nil; +} +#endif + +static BOOL AFSecKeyIsEqualToKey(SecKeyRef key1, SecKeyRef key2) { +#if TARGET_OS_IOS || TARGET_OS_WATCH + return [(__bridge id)key1 isEqual:(__bridge id)key2]; +#else + return [AFSecKeyGetData(key1) isEqual:AFSecKeyGetData(key2)]; +#endif +} + +static id AFPublicKeyForCertificate(NSData *certificate) { + id allowedPublicKey = nil; + SecCertificateRef allowedCertificate; + SecCertificateRef allowedCertificates[1]; + CFArrayRef tempCertificates = nil; + SecPolicyRef policy = nil; + SecTrustRef allowedTrust = nil; + SecTrustResultType result; + + allowedCertificate = SecCertificateCreateWithData(NULL, (__bridge CFDataRef)certificate); + __Require_Quiet(allowedCertificate != NULL, _out); + + allowedCertificates[0] = allowedCertificate; + tempCertificates = CFArrayCreate(NULL, (const void **)allowedCertificates, 1, NULL); + + policy = SecPolicyCreateBasicX509(); + __Require_noErr_Quiet(SecTrustCreateWithCertificates(tempCertificates, policy, &allowedTrust), _out); + __Require_noErr_Quiet(SecTrustEvaluate(allowedTrust, &result), _out); + + allowedPublicKey = (__bridge_transfer id)SecTrustCopyPublicKey(allowedTrust); + +_out: + if (allowedTrust) { + CFRelease(allowedTrust); + } + + if (policy) { + CFRelease(policy); + } + + if (tempCertificates) { + CFRelease(tempCertificates); + } + + if (allowedCertificate) { + CFRelease(allowedCertificate); + } + + return allowedPublicKey; +} + +static BOOL AFServerTrustIsValid(SecTrustRef serverTrust) { + BOOL isValid = NO; + SecTrustResultType result; + __Require_noErr_Quiet(SecTrustEvaluate(serverTrust, &result), _out); + + isValid = (result == kSecTrustResultUnspecified || result == kSecTrustResultProceed); + +_out: + return isValid; +} + +static NSArray * AFCertificateTrustChainForServerTrust(SecTrustRef serverTrust) { + CFIndex certificateCount = SecTrustGetCertificateCount(serverTrust); + NSMutableArray *trustChain = [NSMutableArray arrayWithCapacity:(NSUInteger)certificateCount]; + + for (CFIndex i = 0; i < certificateCount; i++) { + SecCertificateRef certificate = SecTrustGetCertificateAtIndex(serverTrust, i); + [trustChain addObject:(__bridge_transfer NSData *)SecCertificateCopyData(certificate)]; + } + + return [NSArray arrayWithArray:trustChain]; +} + +static NSArray * AFPublicKeyTrustChainForServerTrust(SecTrustRef serverTrust) { + SecPolicyRef policy = SecPolicyCreateBasicX509(); + CFIndex certificateCount = SecTrustGetCertificateCount(serverTrust); + NSMutableArray *trustChain = [NSMutableArray arrayWithCapacity:(NSUInteger)certificateCount]; + for (CFIndex i = 0; i < certificateCount; i++) { + SecCertificateRef certificate = SecTrustGetCertificateAtIndex(serverTrust, i); + + SecCertificateRef someCertificates[] = {certificate}; + CFArrayRef certificates = CFArrayCreate(NULL, (const void **)someCertificates, 1, NULL); + + SecTrustRef trust; + __Require_noErr_Quiet(SecTrustCreateWithCertificates(certificates, policy, &trust), _out); + + SecTrustResultType result; + __Require_noErr_Quiet(SecTrustEvaluate(trust, &result), _out); + + [trustChain addObject:(__bridge_transfer id)SecTrustCopyPublicKey(trust)]; + + _out: + if (trust) { + CFRelease(trust); + } + + if (certificates) { + CFRelease(certificates); + } + + continue; + } + CFRelease(policy); + + return [NSArray arrayWithArray:trustChain]; +} + +#pragma mark - + +@interface AFSecurityPolicy() +@property (readwrite, nonatomic, assign) AFSSLPinningMode SSLPinningMode; +@property (readwrite, nonatomic, strong) NSArray *pinnedPublicKeys; +@end + +@implementation AFSecurityPolicy + ++ (NSArray *)defaultPinnedCertificates { + static NSArray *_defaultPinnedCertificates = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + NSBundle *bundle = [NSBundle bundleForClass:[self class]]; + NSArray *paths = [bundle pathsForResourcesOfType:@"cer" inDirectory:@"."]; + + NSMutableArray *certificates = [NSMutableArray arrayWithCapacity:[paths count]]; + for (NSString *path in paths) { + NSData *certificateData = [NSData dataWithContentsOfFile:path]; + [certificates addObject:certificateData]; + } + + _defaultPinnedCertificates = [[NSArray alloc] initWithArray:certificates]; + }); + + return _defaultPinnedCertificates; +} + ++ (instancetype)defaultPolicy { + AFSecurityPolicy *securityPolicy = [[self alloc] init]; + securityPolicy.SSLPinningMode = AFSSLPinningModeNone; + + return securityPolicy; +} + ++ (instancetype)policyWithPinningMode:(AFSSLPinningMode)pinningMode { + AFSecurityPolicy *securityPolicy = [[self alloc] init]; + securityPolicy.SSLPinningMode = pinningMode; + + [securityPolicy setPinnedCertificates:[self defaultPinnedCertificates]]; + + return securityPolicy; +} + +- (id)init { + self = [super init]; + if (!self) { + return nil; + } + + self.validatesDomainName = YES; + + return self; +} + +- (void)setPinnedCertificates:(NSArray *)pinnedCertificates { + _pinnedCertificates = [[NSOrderedSet orderedSetWithArray:pinnedCertificates] array]; + + if (self.pinnedCertificates) { + NSMutableArray *mutablePinnedPublicKeys = [NSMutableArray arrayWithCapacity:[self.pinnedCertificates count]]; + for (NSData *certificate in self.pinnedCertificates) { + id publicKey = AFPublicKeyForCertificate(certificate); + if (!publicKey) { + continue; + } + [mutablePinnedPublicKeys addObject:publicKey]; + } + self.pinnedPublicKeys = [NSArray arrayWithArray:mutablePinnedPublicKeys]; + } else { + self.pinnedPublicKeys = nil; + } +} + +#pragma mark - + +- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust { + return [self evaluateServerTrust:serverTrust forDomain:nil]; +} + +- (BOOL)evaluateServerTrust:(SecTrustRef)serverTrust + forDomain:(NSString *)domain +{ + if (domain && self.allowInvalidCertificates && self.validatesDomainName && (self.SSLPinningMode == AFSSLPinningModeNone || [self.pinnedCertificates count] == 0)) { + // https://developer.apple.com/library/mac/documentation/NetworkingInternet/Conceptual/NetworkingTopics/Articles/OverridingSSLChainValidationCorrectly.html + // According to the docs, you should only trust your provided certs for evaluation. + // Pinned certificates are added to the trust. Without pinned certificates, + // there is nothing to evaluate against. + // + // From Apple Docs: + // "Do not implicitly trust self-signed certificates as anchors (kSecTrustOptionImplicitAnchors). + // Instead, add your own (self-signed) CA certificate to the list of trusted anchors." + NSLog(@"In order to validate a domain name for self signed certificates, you MUST use pinning."); + return NO; + } + + NSMutableArray *policies = [NSMutableArray array]; + if (self.validatesDomainName) { + [policies addObject:(__bridge_transfer id)SecPolicyCreateSSL(true, (__bridge CFStringRef)domain)]; + } else { + [policies addObject:(__bridge_transfer id)SecPolicyCreateBasicX509()]; + } + + SecTrustSetPolicies(serverTrust, (__bridge CFArrayRef)policies); + + if (self.SSLPinningMode == AFSSLPinningModeNone) { + return self.allowInvalidCertificates || AFServerTrustIsValid(serverTrust); + } else if (!AFServerTrustIsValid(serverTrust) && !self.allowInvalidCertificates) { + return NO; + } + + NSArray *serverCertificates = AFCertificateTrustChainForServerTrust(serverTrust); + switch (self.SSLPinningMode) { + case AFSSLPinningModeNone: + default: + return NO; + case AFSSLPinningModeCertificate: { + NSMutableArray *pinnedCertificates = [NSMutableArray array]; + for (NSData *certificateData in self.pinnedCertificates) { + [pinnedCertificates addObject:(__bridge_transfer id)SecCertificateCreateWithData(NULL, (__bridge CFDataRef)certificateData)]; + } + SecTrustSetAnchorCertificates(serverTrust, (__bridge CFArrayRef)pinnedCertificates); + + if (!AFServerTrustIsValid(serverTrust)) { + return NO; + } + + NSUInteger trustedCertificateCount = 0; + for (NSData *trustChainCertificate in serverCertificates) { + if ([self.pinnedCertificates containsObject:trustChainCertificate]) { + trustedCertificateCount++; + } + } + return trustedCertificateCount > 0; + } + case AFSSLPinningModePublicKey: { + NSUInteger trustedPublicKeyCount = 0; + NSArray *publicKeys = AFPublicKeyTrustChainForServerTrust(serverTrust); + + for (id trustChainPublicKey in publicKeys) { + for (id pinnedPublicKey in self.pinnedPublicKeys) { + if (AFSecKeyIsEqualToKey((__bridge SecKeyRef)trustChainPublicKey, (__bridge SecKeyRef)pinnedPublicKey)) { + trustedPublicKeyCount += 1; + } + } + } + return trustedPublicKeyCount > 0; + } + } + + return NO; +} + +#pragma mark - NSKeyValueObserving + ++ (NSSet *)keyPathsForValuesAffectingPinnedPublicKeys { + return [NSSet setWithObject:@"pinnedCertificates"]; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (instancetype)initWithCoder:(NSCoder *)decoder { + + self = [self init]; + if (!self) { + return nil; + } + + self.SSLPinningMode = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(SSLPinningMode))] unsignedIntegerValue]; + self.allowInvalidCertificates = [decoder decodeBoolForKey:NSStringFromSelector(@selector(allowInvalidCertificates))]; + self.validatesDomainName = [decoder decodeBoolForKey:NSStringFromSelector(@selector(validatesDomainName))]; + self.pinnedCertificates = [decoder decodeObjectOfClass:[NSArray class] forKey:NSStringFromSelector(@selector(pinnedCertificates))]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [coder encodeObject:[NSNumber numberWithUnsignedInteger:self.SSLPinningMode] forKey:NSStringFromSelector(@selector(SSLPinningMode))]; + [coder encodeBool:self.allowInvalidCertificates forKey:NSStringFromSelector(@selector(allowInvalidCertificates))]; + [coder encodeBool:self.validatesDomainName forKey:NSStringFromSelector(@selector(validatesDomainName))]; + [coder encodeObject:self.pinnedCertificates forKey:NSStringFromSelector(@selector(pinnedCertificates))]; +} + +#pragma mark - NSCopying + +- (instancetype)copyWithZone:(NSZone *)zone { + AFSecurityPolicy *securityPolicy = [[[self class] allocWithZone:zone] init]; + securityPolicy.SSLPinningMode = self.SSLPinningMode; + securityPolicy.allowInvalidCertificates = self.allowInvalidCertificates; + securityPolicy.validatesDomainName = self.validatesDomainName; + securityPolicy.pinnedCertificates = [self.pinnedCertificates copyWithZone:zone]; + + return securityPolicy; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h b/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h new file mode 100644 index 0000000..c21119e --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h @@ -0,0 +1,344 @@ +// AFURLConnectionOperation.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import +#import "AFURLRequestSerialization.h" +#import "AFURLResponseSerialization.h" +#import "AFSecurityPolicy.h" + +#ifndef NS_DESIGNATED_INITIALIZER +#if __has_attribute(objc_designated_initializer) +#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +#else +#define NS_DESIGNATED_INITIALIZER +#endif +#endif + +/** + `AFURLConnectionOperation` is a subclass of `NSOperation` that implements `NSURLConnection` delegate methods. + + ## Subclassing Notes + + This is the base class of all network request operations. You may wish to create your own subclass in order to implement additional `NSURLConnection` delegate methods (see "`NSURLConnection` Delegate Methods" below), or to provide additional properties and/or class constructors. + + If you are creating a subclass that communicates over the HTTP or HTTPS protocols, you may want to consider subclassing `AFHTTPRequestOperation` instead, as it supports specifying acceptable content types or status codes. + + ## NSURLConnection Delegate Methods + + `AFURLConnectionOperation` implements the following `NSURLConnection` delegate methods: + + - `connection:didReceiveResponse:` + - `connection:didReceiveData:` + - `connectionDidFinishLoading:` + - `connection:didFailWithError:` + - `connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:` + - `connection:willCacheResponse:` + - `connectionShouldUseCredentialStorage:` + - `connection:needNewBodyStream:` + - `connection:willSendRequestForAuthenticationChallenge:` + + If any of these methods are overridden in a subclass, they _must_ call the `super` implementation first. + + ## Callbacks and Completion Blocks + + The built-in `completionBlock` provided by `NSOperation` allows for custom behavior to be executed after the request finishes. It is a common pattern for class constructors in subclasses to take callback block parameters, and execute them conditionally in the body of its `completionBlock`. Make sure to handle cancelled operations appropriately when setting a `completionBlock` (i.e. returning early before parsing response data). See the implementation of any of the `AFHTTPRequestOperation` subclasses for an example of this. + + Subclasses are strongly discouraged from overriding `setCompletionBlock:`, as `AFURLConnectionOperation`'s implementation includes a workaround to mitigate retain cycles, and what Apple rather ominously refers to as ["The Deallocation Problem"](http://developer.apple.com/library/ios/#technotes/tn2109/). + + ## SSL Pinning + + Relying on the CA trust model to validate SSL certificates exposes your app to security vulnerabilities, such as man-in-the-middle attacks. For applications that connect to known servers, SSL certificate pinning provides an increased level of security, by checking server certificate validity against those specified in the app bundle. + + SSL with certificate pinning is strongly recommended for any application that transmits sensitive information to an external webservice. + + Connections will be validated on all matching certificates with a `.cer` extension in the bundle root. + + ## NSCoding & NSCopying Conformance + + `AFURLConnectionOperation` conforms to the `NSCoding` and `NSCopying` protocols, allowing operations to be archived to disk, and copied in memory, respectively. However, because of the intrinsic limitations of capturing the exact state of an operation at a particular moment, there are some important caveats to keep in mind: + + ### NSCoding Caveats + + - Encoded operations do not include any block or stream properties. Be sure to set `completionBlock`, `outputStream`, and any callback blocks as necessary when using `-initWithCoder:` or `NSKeyedUnarchiver`. + - Operations are paused on `encodeWithCoder:`. If the operation was encoded while paused or still executing, its archived state will return `YES` for `isReady`. Otherwise, the state of an operation when encoding will remain unchanged. + + ### NSCopying Caveats + + - `-copy` and `-copyWithZone:` return a new operation with the `NSURLRequest` of the original. So rather than an exact copy of the operation at that particular instant, the copying mechanism returns a completely new instance, which can be useful for retrying operations. + - A copy of an operation will not include the `outputStream` of the original. + - Operation copies do not include `completionBlock`, as it often strongly captures a reference to `self`, which would otherwise have the unintuitive side-effect of pointing to the _original_ operation when copied. + */ + +NS_ASSUME_NONNULL_BEGIN + +@interface AFURLConnectionOperation : NSOperation + +///------------------------------- +/// @name Accessing Run Loop Modes +///------------------------------- + +/** + The run loop modes in which the operation will run on the network thread. By default, this is a single-member set containing `NSRunLoopCommonModes`. + */ +@property (nonatomic, strong) NSSet *runLoopModes; + +///----------------------------------------- +/// @name Getting URL Connection Information +///----------------------------------------- + +/** + The request used by the operation's connection. + */ +@property (readonly, nonatomic, strong) NSURLRequest *request; + +/** + The last response received by the operation's connection. + */ +@property (readonly, nonatomic, strong, nullable) NSURLResponse *response; + +/** + The error, if any, that occurred in the lifecycle of the request. + */ +@property (readonly, nonatomic, strong, nullable) NSError *error; + +///---------------------------- +/// @name Getting Response Data +///---------------------------- + +/** + The data received during the request. + */ +@property (readonly, nonatomic, strong, nullable) NSData *responseData; + +/** + The string representation of the response data. + */ +@property (readonly, nonatomic, copy, nullable) NSString *responseString; + +/** + The string encoding of the response. + + If the response does not specify a valid string encoding, `responseStringEncoding` will return `NSUTF8StringEncoding`. + */ +@property (readonly, nonatomic, assign) NSStringEncoding responseStringEncoding; + +///------------------------------- +/// @name Managing URL Credentials +///------------------------------- + +/** + Whether the URL connection should consult the credential storage for authenticating the connection. `YES` by default. + + This is the value that is returned in the `NSURLConnectionDelegate` method `-connectionShouldUseCredentialStorage:`. + */ +@property (nonatomic, assign) BOOL shouldUseCredentialStorage; + +/** + The credential used for authentication challenges in `-connection:didReceiveAuthenticationChallenge:`. + + This will be overridden by any shared credentials that exist for the username or password of the request URL, if present. + */ +@property (nonatomic, strong, nullable) NSURLCredential *credential; + +///------------------------------- +/// @name Managing Security Policy +///------------------------------- + +/** + The security policy used to evaluate server trust for secure connections. + */ +@property (nonatomic, strong) AFSecurityPolicy *securityPolicy; + +///------------------------ +/// @name Accessing Streams +///------------------------ + +/** + The input stream used to read data to be sent during the request. + + This property acts as a proxy to the `HTTPBodyStream` property of `request`. + */ +@property (nonatomic, strong) NSInputStream *inputStream; + +/** + The output stream that is used to write data received until the request is finished. + + By default, data is accumulated into a buffer that is stored into `responseData` upon completion of the request, with the intermediary `outputStream` property set to `nil`. When `outputStream` is set, the data will not be accumulated into an internal buffer, and as a result, the `responseData` property of the completed request will be `nil`. The output stream will be scheduled in the network thread runloop upon being set. + */ +@property (nonatomic, strong, nullable) NSOutputStream *outputStream; + +///--------------------------------- +/// @name Managing Callback Queues +///--------------------------------- + +/** + The dispatch queue for `completionBlock`. If `NULL` (default), the main queue is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_queue_t completionQueue; +#else +@property (nonatomic, assign, nullable) dispatch_queue_t completionQueue; +#endif + +/** + The dispatch group for `completionBlock`. If `NULL` (default), a private dispatch group is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_group_t completionGroup; +#else +@property (nonatomic, assign, nullable) dispatch_group_t completionGroup; +#endif + +///--------------------------------------------- +/// @name Managing Request Operation Information +///--------------------------------------------- + +/** + The user info dictionary for the receiver. + */ +@property (nonatomic, strong) NSDictionary *userInfo; +// FIXME: It doesn't seem that this userInfo is used anywhere in the implementation. + +///------------------------------------------------------ +/// @name Initializing an AFURLConnectionOperation Object +///------------------------------------------------------ + +/** + Initializes and returns a newly allocated operation object with a url connection configured with the specified url request. + + This is the designated initializer. + + @param urlRequest The request object to be used by the operation connection. + */ +- (instancetype)initWithRequest:(NSURLRequest *)urlRequest NS_DESIGNATED_INITIALIZER; + +///---------------------------------- +/// @name Pausing / Resuming Requests +///---------------------------------- + +/** + Pauses the execution of the request operation. + + A paused operation returns `NO` for `-isReady`, `-isExecuting`, and `-isFinished`. As such, it will remain in an `NSOperationQueue` until it is either cancelled or resumed. Pausing a finished, cancelled, or paused operation has no effect. + */ +- (void)pause; + +/** + Whether the request operation is currently paused. + + @return `YES` if the operation is currently paused, otherwise `NO`. + */ +- (BOOL)isPaused; + +/** + Resumes the execution of the paused request operation. + + Pause/Resume behavior varies depending on the underlying implementation for the operation class. In its base implementation, resuming a paused requests restarts the original request. However, since HTTP defines a specification for how to request a specific content range, `AFHTTPRequestOperation` will resume downloading the request from where it left off, instead of restarting the original request. + */ +- (void)resume; + +///---------------------------------------------- +/// @name Configuring Backgrounding Task Behavior +///---------------------------------------------- + +/** + Specifies that the operation should continue execution after the app has entered the background, and the expiration handler for that background task. + + @param handler A handler to be called shortly before the application’s remaining background time reaches 0. The handler is wrapped in a block that cancels the operation, and cleans up and marks the end of execution, unlike the `handler` parameter in `UIApplication -beginBackgroundTaskWithExpirationHandler:`, which expects this to be done in the handler itself. The handler is called synchronously on the main thread, thus blocking the application’s suspension momentarily while the application is notified. + */ +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +- (void)setShouldExecuteAsBackgroundTaskWithExpirationHandler:(nullable void (^)(void))handler NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extensions."); +#endif + +///--------------------------------- +/// @name Setting Progress Callbacks +///--------------------------------- + +/** + Sets a callback to be called when an undetermined number of bytes have been uploaded to the server. + + @param block A block object to be called when an undetermined number of bytes have been uploaded to the server. This block has no return value and takes three arguments: the number of bytes written since the last time the upload progress block was called, the total bytes written, and the total bytes expected to be written during the request, as initially determined by the length of the HTTP body. This block may be called multiple times, and will execute on the main thread. + */ +- (void)setUploadProgressBlock:(nullable void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))block; + +/** + Sets a callback to be called when an undetermined number of bytes have been downloaded from the server. + + @param block A block object to be called when an undetermined number of bytes have been downloaded from the server. This block has no return value and takes three arguments: the number of bytes read since the last time the download progress block was called, the total bytes read, and the total bytes expected to be read during the request, as initially determined by the expected content size of the `NSHTTPURLResponse` object. This block may be called multiple times, and will execute on the main thread. + */ +- (void)setDownloadProgressBlock:(nullable void (^)(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead))block; + +///------------------------------------------------- +/// @name Setting NSURLConnection Delegate Callbacks +///------------------------------------------------- + +/** + Sets a block to be executed when the connection will authenticate a challenge in order to download its request, as handled by the `NSURLConnectionDelegate` method `connection:willSendRequestForAuthenticationChallenge:`. + + @param block A block object to be executed when the connection will authenticate a challenge in order to download its request. The block has no return type and takes two arguments: the URL connection object, and the challenge that must be authenticated. This block must invoke one of the challenge-responder methods (NSURLAuthenticationChallengeSender protocol). + + If `allowsInvalidSSLCertificate` is set to YES, `connection:willSendRequestForAuthenticationChallenge:` will attempt to have the challenge sender use credentials with invalid SSL certificates. + */ +- (void)setWillSendRequestForAuthenticationChallengeBlock:(nullable void (^)(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge))block; + +/** + Sets a block to be executed when the server redirects the request from one URL to another URL, or when the request URL changed by the `NSURLProtocol` subclass handling the request in order to standardize its format, as handled by the `NSURLConnectionDataDelegate` method `connection:willSendRequest:redirectResponse:`. + + @param block A block object to be executed when the request URL was changed. The block returns an `NSURLRequest` object, the URL request to redirect, and takes three arguments: the URL connection object, the the proposed redirected request, and the URL response that caused the redirect. + */ +- (void)setRedirectResponseBlock:(nullable NSURLRequest * (^)(NSURLConnection *connection, NSURLRequest *request, NSURLResponse *redirectResponse))block; + + +/** + Sets a block to be executed to modify the response a connection will cache, if any, as handled by the `NSURLConnectionDelegate` method `connection:willCacheResponse:`. + + @param block A block object to be executed to determine what response a connection will cache, if any. The block returns an `NSCachedURLResponse` object, the cached response to store in memory or `nil` to prevent the response from being cached, and takes two arguments: the URL connection object, and the cached response provided for the request. + */ +- (void)setCacheResponseBlock:(nullable NSCachedURLResponse * (^)(NSURLConnection *connection, NSCachedURLResponse *cachedResponse))block; + +/// + +/** + + */ ++ (NSArray *)batchOfRequestOperations:(nullable NSArray *)operations + progressBlock:(nullable void (^)(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations))progressBlock + completionBlock:(nullable void (^)(NSArray *operations))completionBlock; + +@end + +///-------------------- +/// @name Notifications +///-------------------- + +/** + Posted when an operation begins executing. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingOperationDidStartNotification; + +/** + Posted when an operation finishes. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingOperationDidFinishNotification; + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m b/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m new file mode 100644 index 0000000..2126ca6 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m @@ -0,0 +1,792 @@ +// AFURLConnectionOperation.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFURLConnectionOperation.h" + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +#import +#endif + +#if !__has_feature(objc_arc) +#error AFNetworking must be built with ARC. +// You can turn on ARC for only AFNetworking files by adding -fobjc-arc to the build phase for each of its files. +#endif + +typedef NS_ENUM(NSInteger, AFOperationState) { + AFOperationPausedState = -1, + AFOperationReadyState = 1, + AFOperationExecutingState = 2, + AFOperationFinishedState = 3, +}; + +static dispatch_group_t url_request_operation_completion_group() { + static dispatch_group_t af_url_request_operation_completion_group; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_url_request_operation_completion_group = dispatch_group_create(); + }); + + return af_url_request_operation_completion_group; +} + +static dispatch_queue_t url_request_operation_completion_queue() { + static dispatch_queue_t af_url_request_operation_completion_queue; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_url_request_operation_completion_queue = dispatch_queue_create("com.alamofire.networking.operation.queue", DISPATCH_QUEUE_CONCURRENT ); + }); + + return af_url_request_operation_completion_queue; +} + +static NSString * const kAFNetworkingLockName = @"com.alamofire.networking.operation.lock"; + +NSString * const AFNetworkingOperationDidStartNotification = @"com.alamofire.networking.operation.start"; +NSString * const AFNetworkingOperationDidFinishNotification = @"com.alamofire.networking.operation.finish"; + +typedef void (^AFURLConnectionOperationProgressBlock)(NSUInteger bytes, long long totalBytes, long long totalBytesExpected); +typedef void (^AFURLConnectionOperationAuthenticationChallengeBlock)(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge); +typedef NSCachedURLResponse * (^AFURLConnectionOperationCacheResponseBlock)(NSURLConnection *connection, NSCachedURLResponse *cachedResponse); +typedef NSURLRequest * (^AFURLConnectionOperationRedirectResponseBlock)(NSURLConnection *connection, NSURLRequest *request, NSURLResponse *redirectResponse); +typedef void (^AFURLConnectionOperationBackgroundTaskCleanupBlock)(); + +static inline NSString * AFKeyPathFromOperationState(AFOperationState state) { + switch (state) { + case AFOperationReadyState: + return @"isReady"; + case AFOperationExecutingState: + return @"isExecuting"; + case AFOperationFinishedState: + return @"isFinished"; + case AFOperationPausedState: + return @"isPaused"; + default: { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunreachable-code" + return @"state"; +#pragma clang diagnostic pop + } + } +} + +static inline BOOL AFStateTransitionIsValid(AFOperationState fromState, AFOperationState toState, BOOL isCancelled) { + switch (fromState) { + case AFOperationReadyState: + switch (toState) { + case AFOperationPausedState: + case AFOperationExecutingState: + return YES; + case AFOperationFinishedState: + return isCancelled; + default: + return NO; + } + case AFOperationExecutingState: + switch (toState) { + case AFOperationPausedState: + case AFOperationFinishedState: + return YES; + default: + return NO; + } + case AFOperationFinishedState: + return NO; + case AFOperationPausedState: + return toState == AFOperationReadyState; + default: { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunreachable-code" + switch (toState) { + case AFOperationPausedState: + case AFOperationReadyState: + case AFOperationExecutingState: + case AFOperationFinishedState: + return YES; + default: + return NO; + } + } +#pragma clang diagnostic pop + } +} + +@interface AFURLConnectionOperation () +@property (readwrite, nonatomic, assign) AFOperationState state; +@property (readwrite, nonatomic, strong) NSRecursiveLock *lock; +@property (readwrite, nonatomic, strong) NSURLConnection *connection; +@property (readwrite, nonatomic, strong) NSURLRequest *request; +@property (readwrite, nonatomic, strong) NSURLResponse *response; +@property (readwrite, nonatomic, strong) NSError *error; +@property (readwrite, nonatomic, strong) NSData *responseData; +@property (readwrite, nonatomic, copy) NSString *responseString; +@property (readwrite, nonatomic, assign) NSStringEncoding responseStringEncoding; +@property (readwrite, nonatomic, assign) long long totalBytesRead; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationBackgroundTaskCleanupBlock backgroundTaskCleanup; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationProgressBlock uploadProgress; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationProgressBlock downloadProgress; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationAuthenticationChallengeBlock authenticationChallenge; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationCacheResponseBlock cacheResponse; +@property (readwrite, nonatomic, copy) AFURLConnectionOperationRedirectResponseBlock redirectResponse; + +- (void)operationDidStart; +- (void)finish; +- (void)cancelConnection; +@end + +@implementation AFURLConnectionOperation +@synthesize outputStream = _outputStream; + ++ (void)networkRequestThreadEntryPoint:(id)__unused object { + @autoreleasepool { + [[NSThread currentThread] setName:@"AFNetworking"]; + + NSRunLoop *runLoop = [NSRunLoop currentRunLoop]; + [runLoop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode]; + [runLoop run]; + } +} + ++ (NSThread *)networkRequestThread { + static NSThread *_networkRequestThread = nil; + static dispatch_once_t oncePredicate; + dispatch_once(&oncePredicate, ^{ + _networkRequestThread = [[NSThread alloc] initWithTarget:self selector:@selector(networkRequestThreadEntryPoint:) object:nil]; + [_networkRequestThread start]; + }); + + return _networkRequestThread; +} + +- (instancetype)initWithRequest:(NSURLRequest *)urlRequest { + NSParameterAssert(urlRequest); + + self = [super init]; + if (!self) { + return nil; + } + + _state = AFOperationReadyState; + + self.lock = [[NSRecursiveLock alloc] init]; + self.lock.name = kAFNetworkingLockName; + + self.runLoopModes = [NSSet setWithObject:NSRunLoopCommonModes]; + + self.request = urlRequest; + + self.shouldUseCredentialStorage = YES; + + self.securityPolicy = [AFSecurityPolicy defaultPolicy]; + + return self; +} + +- (instancetype)init NS_UNAVAILABLE +{ + return nil; +} + +- (void)dealloc { + if (_outputStream) { + [_outputStream close]; + _outputStream = nil; + } + + if (_backgroundTaskCleanup) { + _backgroundTaskCleanup(); + } +} + +#pragma mark - + +- (void)setResponseData:(NSData *)responseData { + [self.lock lock]; + if (!responseData) { + _responseData = nil; + } else { + _responseData = [NSData dataWithBytes:responseData.bytes length:responseData.length]; + } + [self.lock unlock]; +} + +- (NSString *)responseString { + [self.lock lock]; + if (!_responseString && self.response && self.responseData) { + self.responseString = [[NSString alloc] initWithData:self.responseData encoding:self.responseStringEncoding]; + } + [self.lock unlock]; + + return _responseString; +} + +- (NSStringEncoding)responseStringEncoding { + [self.lock lock]; + if (!_responseStringEncoding && self.response) { + NSStringEncoding stringEncoding = NSUTF8StringEncoding; + if (self.response.textEncodingName) { + CFStringEncoding IANAEncoding = CFStringConvertIANACharSetNameToEncoding((__bridge CFStringRef)self.response.textEncodingName); + if (IANAEncoding != kCFStringEncodingInvalidId) { + stringEncoding = CFStringConvertEncodingToNSStringEncoding(IANAEncoding); + } + } + + self.responseStringEncoding = stringEncoding; + } + [self.lock unlock]; + + return _responseStringEncoding; +} + +- (NSInputStream *)inputStream { + return self.request.HTTPBodyStream; +} + +- (void)setInputStream:(NSInputStream *)inputStream { + NSMutableURLRequest *mutableRequest = [self.request mutableCopy]; + mutableRequest.HTTPBodyStream = inputStream; + self.request = mutableRequest; +} + +- (NSOutputStream *)outputStream { + if (!_outputStream) { + self.outputStream = [NSOutputStream outputStreamToMemory]; + } + + return _outputStream; +} + +- (void)setOutputStream:(NSOutputStream *)outputStream { + [self.lock lock]; + if (outputStream != _outputStream) { + if (_outputStream) { + [_outputStream close]; + } + + _outputStream = outputStream; + } + [self.lock unlock]; +} + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +- (void)setShouldExecuteAsBackgroundTaskWithExpirationHandler:(void (^)(void))handler { + [self.lock lock]; + if (!self.backgroundTaskCleanup) { + UIApplication *application = [UIApplication sharedApplication]; + UIBackgroundTaskIdentifier __block backgroundTaskIdentifier = UIBackgroundTaskInvalid; + __weak __typeof(self)weakSelf = self; + + self.backgroundTaskCleanup = ^(){ + if (backgroundTaskIdentifier != UIBackgroundTaskInvalid) { + [[UIApplication sharedApplication] endBackgroundTask:backgroundTaskIdentifier]; + backgroundTaskIdentifier = UIBackgroundTaskInvalid; + } + }; + + backgroundTaskIdentifier = [application beginBackgroundTaskWithExpirationHandler:^{ + __strong __typeof(weakSelf)strongSelf = weakSelf; + + if (handler) { + handler(); + } + + if (strongSelf) { + [strongSelf cancel]; + strongSelf.backgroundTaskCleanup(); + } + }]; + } + [self.lock unlock]; +} +#endif + +#pragma mark - + +- (void)setState:(AFOperationState)state { + if (!AFStateTransitionIsValid(self.state, state, [self isCancelled])) { + return; + } + + [self.lock lock]; + NSString *oldStateKey = AFKeyPathFromOperationState(self.state); + NSString *newStateKey = AFKeyPathFromOperationState(state); + + [self willChangeValueForKey:newStateKey]; + [self willChangeValueForKey:oldStateKey]; + _state = state; + [self didChangeValueForKey:oldStateKey]; + [self didChangeValueForKey:newStateKey]; + [self.lock unlock]; +} + +- (void)pause { + if ([self isPaused] || [self isFinished] || [self isCancelled]) { + return; + } + + [self.lock lock]; + if ([self isExecuting]) { + [self performSelector:@selector(operationDidPause) onThread:[[self class] networkRequestThread] withObject:nil waitUntilDone:NO modes:[self.runLoopModes allObjects]]; + + dispatch_async(dispatch_get_main_queue(), ^{ + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + [notificationCenter postNotificationName:AFNetworkingOperationDidFinishNotification object:self]; + }); + } + + self.state = AFOperationPausedState; + [self.lock unlock]; +} + +- (void)operationDidPause { + [self.lock lock]; + [self.connection cancel]; + [self.lock unlock]; +} + +- (BOOL)isPaused { + return self.state == AFOperationPausedState; +} + +- (void)resume { + if (![self isPaused]) { + return; + } + + [self.lock lock]; + self.state = AFOperationReadyState; + + [self start]; + [self.lock unlock]; +} + +#pragma mark - + +- (void)setUploadProgressBlock:(void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))block { + self.uploadProgress = block; +} + +- (void)setDownloadProgressBlock:(void (^)(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead))block { + self.downloadProgress = block; +} + +- (void)setWillSendRequestForAuthenticationChallengeBlock:(void (^)(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge))block { + self.authenticationChallenge = block; +} + +- (void)setCacheResponseBlock:(NSCachedURLResponse * (^)(NSURLConnection *connection, NSCachedURLResponse *cachedResponse))block { + self.cacheResponse = block; +} + +- (void)setRedirectResponseBlock:(NSURLRequest * (^)(NSURLConnection *connection, NSURLRequest *request, NSURLResponse *redirectResponse))block { + self.redirectResponse = block; +} + +#pragma mark - NSOperation + +- (void)setCompletionBlock:(void (^)(void))block { + [self.lock lock]; + if (!block) { + [super setCompletionBlock:nil]; + } else { + __weak __typeof(self)weakSelf = self; + [super setCompletionBlock:^ { + __strong __typeof(weakSelf)strongSelf = weakSelf; + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_group_t group = strongSelf.completionGroup ?: url_request_operation_completion_group(); + dispatch_queue_t queue = strongSelf.completionQueue ?: dispatch_get_main_queue(); +#pragma clang diagnostic pop + + dispatch_group_async(group, queue, ^{ + block(); + }); + + dispatch_group_notify(group, url_request_operation_completion_queue(), ^{ + [strongSelf setCompletionBlock:nil]; + }); + }]; + } + [self.lock unlock]; +} + +- (BOOL)isReady { + return self.state == AFOperationReadyState && [super isReady]; +} + +- (BOOL)isExecuting { + return self.state == AFOperationExecutingState; +} + +- (BOOL)isFinished { + return self.state == AFOperationFinishedState; +} + +- (BOOL)isConcurrent { + return YES; +} + +- (void)start { + [self.lock lock]; + if ([self isCancelled]) { + [self performSelector:@selector(cancelConnection) onThread:[[self class] networkRequestThread] withObject:nil waitUntilDone:NO modes:[self.runLoopModes allObjects]]; + } else if ([self isReady]) { + self.state = AFOperationExecutingState; + + [self performSelector:@selector(operationDidStart) onThread:[[self class] networkRequestThread] withObject:nil waitUntilDone:NO modes:[self.runLoopModes allObjects]]; + } + [self.lock unlock]; +} + +- (void)operationDidStart { + [self.lock lock]; + if (![self isCancelled]) { + self.connection = [[NSURLConnection alloc] initWithRequest:self.request delegate:self startImmediately:NO]; + + NSRunLoop *runLoop = [NSRunLoop currentRunLoop]; + for (NSString *runLoopMode in self.runLoopModes) { + [self.connection scheduleInRunLoop:runLoop forMode:runLoopMode]; + [self.outputStream scheduleInRunLoop:runLoop forMode:runLoopMode]; + } + + [self.outputStream open]; + [self.connection start]; + } + [self.lock unlock]; + + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingOperationDidStartNotification object:self]; + }); +} + +- (void)finish { + [self.lock lock]; + self.state = AFOperationFinishedState; + [self.lock unlock]; + + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingOperationDidFinishNotification object:self]; + }); +} + +- (void)cancel { + [self.lock lock]; + if (![self isFinished] && ![self isCancelled]) { + [super cancel]; + + if ([self isExecuting]) { + [self performSelector:@selector(cancelConnection) onThread:[[self class] networkRequestThread] withObject:nil waitUntilDone:NO modes:[self.runLoopModes allObjects]]; + } + } + [self.lock unlock]; +} + +- (void)cancelConnection { + NSDictionary *userInfo = nil; + if ([self.request URL]) { + userInfo = @{NSURLErrorFailingURLErrorKey : [self.request URL]}; + } + NSError *error = [NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorCancelled userInfo:userInfo]; + + if (![self isFinished]) { + if (self.connection) { + [self.connection cancel]; + [self performSelector:@selector(connection:didFailWithError:) withObject:self.connection withObject:error]; + } else { + // Accommodate race condition where `self.connection` has not yet been set before cancellation + self.error = error; + [self finish]; + } + } +} + +#pragma mark - + ++ (NSArray *)batchOfRequestOperations:(NSArray *)operations + progressBlock:(void (^)(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations))progressBlock + completionBlock:(void (^)(NSArray *operations))completionBlock +{ + if (!operations || [operations count] == 0) { + return @[[NSBlockOperation blockOperationWithBlock:^{ + dispatch_async(dispatch_get_main_queue(), ^{ + if (completionBlock) { + completionBlock(@[]); + } + }); + }]]; + } + + __block dispatch_group_t group = dispatch_group_create(); + NSBlockOperation *batchedOperation = [NSBlockOperation blockOperationWithBlock:^{ + dispatch_group_notify(group, dispatch_get_main_queue(), ^{ + if (completionBlock) { + completionBlock(operations); + } + }); + }]; + + for (AFURLConnectionOperation *operation in operations) { + operation.completionGroup = group; + void (^originalCompletionBlock)(void) = [operation.completionBlock copy]; + __weak __typeof(operation)weakOperation = operation; + operation.completionBlock = ^{ + __strong __typeof(weakOperation)strongOperation = weakOperation; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + dispatch_queue_t queue = strongOperation.completionQueue ?: dispatch_get_main_queue(); +#pragma clang diagnostic pop + dispatch_group_async(group, queue, ^{ + if (originalCompletionBlock) { + originalCompletionBlock(); + } + + NSUInteger numberOfFinishedOperations = [[operations indexesOfObjectsPassingTest:^BOOL(id op, NSUInteger __unused idx, BOOL __unused *stop) { + return [op isFinished]; + }] count]; + + if (progressBlock) { + progressBlock(numberOfFinishedOperations, [operations count]); + } + + dispatch_group_leave(group); + }); + }; + + dispatch_group_enter(group); + [batchedOperation addDependency:operation]; + } + + return [operations arrayByAddingObject:batchedOperation]; +} + +#pragma mark - NSObject + +- (NSString *)description { + [self.lock lock]; + NSString *description = [NSString stringWithFormat:@"<%@: %p, state: %@, cancelled: %@ request: %@, response: %@>", NSStringFromClass([self class]), self, AFKeyPathFromOperationState(self.state), ([self isCancelled] ? @"YES" : @"NO"), self.request, self.response]; + [self.lock unlock]; + return description; +} + +#pragma mark - NSURLConnectionDelegate + +- (void)connection:(NSURLConnection *)connection +willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge +{ + if (self.authenticationChallenge) { + self.authenticationChallenge(connection, challenge); + return; + } + + if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) { + if ([self.securityPolicy evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:challenge.protectionSpace.host]) { + NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; + [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge]; + } else { + [[challenge sender] cancelAuthenticationChallenge:challenge]; + } + } else { + if ([challenge previousFailureCount] == 0) { + if (self.credential) { + [[challenge sender] useCredential:self.credential forAuthenticationChallenge:challenge]; + } else { + [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge]; + } + } else { + [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge]; + } + } +} + +- (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection __unused *)connection { + return self.shouldUseCredentialStorage; +} + +- (NSURLRequest *)connection:(NSURLConnection *)connection + willSendRequest:(NSURLRequest *)request + redirectResponse:(NSURLResponse *)redirectResponse +{ + if (self.redirectResponse) { + return self.redirectResponse(connection, request, redirectResponse); + } else { + return request; + } +} + +- (void)connection:(NSURLConnection __unused *)connection + didSendBodyData:(NSInteger)bytesWritten + totalBytesWritten:(NSInteger)totalBytesWritten +totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite +{ + dispatch_async(dispatch_get_main_queue(), ^{ + if (self.uploadProgress) { + self.uploadProgress((NSUInteger)bytesWritten, totalBytesWritten, totalBytesExpectedToWrite); + } + }); +} + +- (void)connection:(NSURLConnection __unused *)connection +didReceiveResponse:(NSURLResponse *)response +{ + self.response = response; +} + +- (void)connection:(NSURLConnection __unused *)connection + didReceiveData:(NSData *)data +{ + NSUInteger length = [data length]; + while (YES) { + NSInteger totalNumberOfBytesWritten = 0; + if ([self.outputStream hasSpaceAvailable]) { + const uint8_t *dataBuffer = (uint8_t *)[data bytes]; + + NSInteger numberOfBytesWritten = 0; + while (totalNumberOfBytesWritten < (NSInteger)length) { + numberOfBytesWritten = [self.outputStream write:&dataBuffer[(NSUInteger)totalNumberOfBytesWritten] maxLength:(length - (NSUInteger)totalNumberOfBytesWritten)]; + if (numberOfBytesWritten == -1) { + break; + } + + totalNumberOfBytesWritten += numberOfBytesWritten; + } + + break; + } else { + [self.connection cancel]; + if (self.outputStream.streamError) { + [self performSelector:@selector(connection:didFailWithError:) withObject:self.connection withObject:self.outputStream.streamError]; + } + return; + } + } + + dispatch_async(dispatch_get_main_queue(), ^{ + self.totalBytesRead += (long long)length; + + if (self.downloadProgress) { + self.downloadProgress(length, self.totalBytesRead, self.response.expectedContentLength); + } + }); +} + +- (void)connectionDidFinishLoading:(NSURLConnection __unused *)connection { + self.responseData = [self.outputStream propertyForKey:NSStreamDataWrittenToMemoryStreamKey]; + + [self.outputStream close]; + if (self.responseData) { + self.outputStream = nil; + } + + self.connection = nil; + + [self finish]; +} + +- (void)connection:(NSURLConnection __unused *)connection + didFailWithError:(NSError *)error +{ + self.error = error; + + [self.outputStream close]; + if (self.responseData) { + self.outputStream = nil; + } + + self.connection = nil; + + [self finish]; +} + +- (NSCachedURLResponse *)connection:(NSURLConnection *)connection + willCacheResponse:(NSCachedURLResponse *)cachedResponse +{ + if (self.cacheResponse) { + return self.cacheResponse(connection, cachedResponse); + } else { + if ([self isCancelled]) { + return nil; + } + + return cachedResponse; + } +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + NSURLRequest *request = [decoder decodeObjectOfClass:[NSURLRequest class] forKey:NSStringFromSelector(@selector(request))]; + + self = [self initWithRequest:request]; + if (!self) { + return nil; + } + + self.state = (AFOperationState)[[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(state))] integerValue]; + self.response = [decoder decodeObjectOfClass:[NSHTTPURLResponse class] forKey:NSStringFromSelector(@selector(response))]; + self.error = [decoder decodeObjectOfClass:[NSError class] forKey:NSStringFromSelector(@selector(error))]; + self.responseData = [decoder decodeObjectOfClass:[NSData class] forKey:NSStringFromSelector(@selector(responseData))]; + self.totalBytesRead = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(totalBytesRead))] longLongValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [self pause]; + + [coder encodeObject:self.request forKey:NSStringFromSelector(@selector(request))]; + + switch (self.state) { + case AFOperationExecutingState: + case AFOperationPausedState: + [coder encodeInteger:AFOperationReadyState forKey:NSStringFromSelector(@selector(state))]; + break; + default: + [coder encodeInteger:self.state forKey:NSStringFromSelector(@selector(state))]; + break; + } + + [coder encodeObject:self.response forKey:NSStringFromSelector(@selector(response))]; + [coder encodeObject:self.error forKey:NSStringFromSelector(@selector(error))]; + [coder encodeObject:self.responseData forKey:NSStringFromSelector(@selector(responseData))]; + [coder encodeInt64:self.totalBytesRead forKey:NSStringFromSelector(@selector(totalBytesRead))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFURLConnectionOperation *operation = [(AFURLConnectionOperation *)[[self class] allocWithZone:zone] initWithRequest:self.request]; + + operation.uploadProgress = self.uploadProgress; + operation.downloadProgress = self.downloadProgress; + operation.authenticationChallenge = self.authenticationChallenge; + operation.cacheResponse = self.cacheResponse; + operation.redirectResponse = self.redirectResponse; + operation.completionQueue = self.completionQueue; + operation.completionGroup = self.completionGroup; + + return operation; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h b/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h new file mode 100644 index 0000000..15ced1d --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h @@ -0,0 +1,476 @@ +// AFURLRequestSerialization.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#if TARGET_OS_IOS +#import +#elif TARGET_OS_WATCH +#import +#endif + +NS_ASSUME_NONNULL_BEGIN + +/** + The `AFURLRequestSerialization` protocol is adopted by an object that encodes parameters for a specified HTTP requests. Request serializers may encode parameters as query strings, HTTP bodies, setting the appropriate HTTP header fields as necessary. + + For example, a JSON request serializer may set the HTTP body of the request to a JSON representation, and set the `Content-Type` HTTP header field value to `application/json`. + */ +@protocol AFURLRequestSerialization + +/** + Returns a request with the specified parameters encoded into a copy of the original request. + + @param request The original request. + @param parameters The parameters to be encoded. + @param error The error that occurred while attempting to encode the request parameters. + + @return A serialized request. + */ +- (nullable NSURLRequest *)requestBySerializingRequest:(NSURLRequest *)request + withParameters:(nullable id)parameters + error:(NSError * __nullable __autoreleasing *)error +#ifdef NS_SWIFT_NOTHROW +NS_SWIFT_NOTHROW +#endif +; +@end + +#pragma mark - + +/** + + */ +typedef NS_ENUM(NSUInteger, AFHTTPRequestQueryStringSerializationStyle) { + AFHTTPRequestQueryStringDefaultStyle = 0, +}; + +@protocol AFMultipartFormData; + +/** + `AFHTTPRequestSerializer` conforms to the `AFURLRequestSerialization` & `AFURLResponseSerialization` protocols, offering a concrete base implementation of query string / URL form-encoded parameter serialization and default request headers, as well as response status code and content type validation. + + Any request or response serializer dealing with HTTP is encouraged to subclass `AFHTTPRequestSerializer` in order to ensure consistent default behavior. + */ +@interface AFHTTPRequestSerializer : NSObject + +/** + The string encoding used to serialize parameters. `NSUTF8StringEncoding` by default. + */ +@property (nonatomic, assign) NSStringEncoding stringEncoding; + +/** + Whether created requests can use the device’s cellular radio (if present). `YES` by default. + + @see NSMutableURLRequest -setAllowsCellularAccess: + */ +@property (nonatomic, assign) BOOL allowsCellularAccess; + +/** + The cache policy of created requests. `NSURLRequestUseProtocolCachePolicy` by default. + + @see NSMutableURLRequest -setCachePolicy: + */ +@property (nonatomic, assign) NSURLRequestCachePolicy cachePolicy; + +/** + Whether created requests should use the default cookie handling. `YES` by default. + + @see NSMutableURLRequest -setHTTPShouldHandleCookies: + */ +@property (nonatomic, assign) BOOL HTTPShouldHandleCookies; + +/** + Whether created requests can continue transmitting data before receiving a response from an earlier transmission. `NO` by default + + @see NSMutableURLRequest -setHTTPShouldUsePipelining: + */ +@property (nonatomic, assign) BOOL HTTPShouldUsePipelining; + +/** + The network service type for created requests. `NSURLNetworkServiceTypeDefault` by default. + + @see NSMutableURLRequest -setNetworkServiceType: + */ +@property (nonatomic, assign) NSURLRequestNetworkServiceType networkServiceType; + +/** + The timeout interval, in seconds, for created requests. The default timeout interval is 60 seconds. + + @see NSMutableURLRequest -setTimeoutInterval: + */ +@property (nonatomic, assign) NSTimeInterval timeoutInterval; + +///--------------------------------------- +/// @name Configuring HTTP Request Headers +///--------------------------------------- + +/** + Default HTTP header field values to be applied to serialized requests. By default, these include the following: + + - `Accept-Language` with the contents of `NSLocale +preferredLanguages` + - `User-Agent` with the contents of various bundle identifiers and OS designations + + @discussion To add or remove default request headers, use `setValue:forHTTPHeaderField:`. + */ +@property (readonly, nonatomic, strong) NSDictionary *HTTPRequestHeaders; + +/** + Creates and returns a serializer with default configuration. + */ ++ (instancetype)serializer; + +/** + Sets the value for the HTTP headers set in request objects made by the HTTP client. If `nil`, removes the existing value for that header. + + @param field The HTTP header to set a default value for + @param value The value set as default for the specified header, or `nil` + */ +- (void)setValue:(nullable NSString *)value +forHTTPHeaderField:(NSString *)field; + +/** + Returns the value for the HTTP headers set in the request serializer. + + @param field The HTTP header to retrieve the default value for + + @return The value set as default for the specified header, or `nil` + */ +- (nullable NSString *)valueForHTTPHeaderField:(NSString *)field; + +/** + Sets the "Authorization" HTTP header set in request objects made by the HTTP client to a basic authentication value with Base64-encoded username and password. This overwrites any existing value for this header. + + @param username The HTTP basic auth username + @param password The HTTP basic auth password + */ +- (void)setAuthorizationHeaderFieldWithUsername:(NSString *)username + password:(NSString *)password; + +/** + @deprecated This method has been deprecated. Use -setValue:forHTTPHeaderField: instead. + */ +- (void)setAuthorizationHeaderFieldWithToken:(NSString *)token DEPRECATED_ATTRIBUTE; + + +/** + Clears any existing value for the "Authorization" HTTP header. + */ +- (void)clearAuthorizationHeader; + +///------------------------------------------------------- +/// @name Configuring Query String Parameter Serialization +///------------------------------------------------------- + +/** + HTTP methods for which serialized requests will encode parameters as a query string. `GET`, `HEAD`, and `DELETE` by default. + */ +@property (nonatomic, strong) NSSet *HTTPMethodsEncodingParametersInURI; + +/** + Set the method of query string serialization according to one of the pre-defined styles. + + @param style The serialization style. + + @see AFHTTPRequestQueryStringSerializationStyle + */ +- (void)setQueryStringSerializationWithStyle:(AFHTTPRequestQueryStringSerializationStyle)style; + +/** + Set the a custom method of query string serialization according to the specified block. + + @param block A block that defines a process of encoding parameters into a query string. This block returns the query string and takes three arguments: the request, the parameters to encode, and the error that occurred when attempting to encode parameters for the given request. + */ +- (void)setQueryStringSerializationWithBlock:(nullable NSString * (^)(NSURLRequest *request, id parameters, NSError * __autoreleasing *error))block; + +///------------------------------- +/// @name Creating Request Objects +///------------------------------- + +/** + @deprecated This method has been deprecated. Use -requestWithMethod:URLString:parameters:error: instead. + */ +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(id)parameters DEPRECATED_ATTRIBUTE; + +/** + Creates an `NSMutableURLRequest` object with the specified HTTP method and URL string. + + If the HTTP method is `GET`, `HEAD`, or `DELETE`, the parameters will be used to construct a url-encoded query string that is appended to the request's URL. Otherwise, the parameters will be encoded according to the value of the `parameterEncoding` property, and set as the request body. + + @param method The HTTP method for the request, such as `GET`, `POST`, `PUT`, or `DELETE`. This parameter must not be `nil`. + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be either set as a query string for `GET` requests, or the request HTTP body. + @param error The error that occurred while constructing the request. + + @return An `NSMutableURLRequest` object. + */ +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(nullable id)parameters + error:(NSError * __nullable __autoreleasing *)error; + +/** + @deprecated This method has been deprecated. Use -multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:error: instead. + */ +- (NSMutableURLRequest *)multipartFormRequestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(NSDictionary *)parameters + constructingBodyWithBlock:(void (^)(id formData))block DEPRECATED_ATTRIBUTE; + +/** + Creates an `NSMutableURLRequest` object with the specified HTTP method and URLString, and constructs a `multipart/form-data` HTTP body, using the specified parameters and multipart form data block. See http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.2 + + Multipart form requests are automatically streamed, reading files directly from disk along with in-memory data in a single HTTP body. The resulting `NSMutableURLRequest` object has an `HTTPBodyStream` property, so refrain from setting `HTTPBodyStream` or `HTTPBody` on this request object, as it will clear out the multipart form body stream. + + @param method The HTTP method for the request. This parameter must not be `GET` or `HEAD`, or `nil`. + @param URLString The URL string used to create the request URL. + @param parameters The parameters to be encoded and set in the request HTTP body. + @param block A block that takes a single argument and appends data to the HTTP body. The block argument is an object adopting the `AFMultipartFormData` protocol. + @param error The error that occurred while constructing the request. + + @return An `NSMutableURLRequest` object + */ +- (NSMutableURLRequest *)multipartFormRequestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(nullable NSDictionary *)parameters + constructingBodyWithBlock:(nullable void (^)(id formData))block + error:(NSError * __nullable __autoreleasing *)error; + +/** + Creates an `NSMutableURLRequest` by removing the `HTTPBodyStream` from a request, and asynchronously writing its contents into the specified file, invoking the completion handler when finished. + + @param request The multipart form request. The `HTTPBodyStream` property of `request` must not be `nil`. + @param fileURL The file URL to write multipart form contents to. + @param handler A handler block to execute. + + @discussion There is a bug in `NSURLSessionTask` that causes requests to not send a `Content-Length` header when streaming contents from an HTTP body, which is notably problematic when interacting with the Amazon S3 webservice. As a workaround, this method takes a request constructed with `multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:error:`, or any other request with an `HTTPBodyStream`, writes the contents to the specified file and returns a copy of the original request with the `HTTPBodyStream` property set to `nil`. From here, the file can either be passed to `AFURLSessionManager -uploadTaskWithRequest:fromFile:progress:completionHandler:`, or have its contents read into an `NSData` that's assigned to the `HTTPBody` property of the request. + + @see https://github.com/AFNetworking/AFNetworking/issues/1398 + */ +- (NSMutableURLRequest *)requestWithMultipartFormRequest:(NSURLRequest *)request + writingStreamContentsToFile:(NSURL *)fileURL + completionHandler:(nullable void (^)(NSError * __nullable error))handler; + +@end + +#pragma mark - + +/** + The `AFMultipartFormData` protocol defines the methods supported by the parameter in the block argument of `AFHTTPRequestSerializer -multipartFormRequestWithMethod:URLString:parameters:constructingBodyWithBlock:`. + */ +@protocol AFMultipartFormData + +/** + Appends the HTTP header `Content-Disposition: file; filename=#{generated filename}; name=#{name}"` and `Content-Type: #{generated mimeType}`, followed by the encoded file data and the multipart form boundary. + + The filename and MIME type for this data in the form will be automatically generated, using the last path component of the `fileURL` and system associated MIME type for the `fileURL` extension, respectively. + + @param fileURL The URL corresponding to the file whose content will be appended to the form. This parameter must not be `nil`. + @param name The name to be associated with the specified data. This parameter must not be `nil`. + @param error If an error occurs, upon return contains an `NSError` object that describes the problem. + + @return `YES` if the file data was successfully appended, otherwise `NO`. + */ +- (BOOL)appendPartWithFileURL:(NSURL *)fileURL + name:(NSString *)name + error:(NSError * __nullable __autoreleasing *)error; + +/** + Appends the HTTP header `Content-Disposition: file; filename=#{filename}; name=#{name}"` and `Content-Type: #{mimeType}`, followed by the encoded file data and the multipart form boundary. + + @param fileURL The URL corresponding to the file whose content will be appended to the form. This parameter must not be `nil`. + @param name The name to be associated with the specified data. This parameter must not be `nil`. + @param fileName The file name to be used in the `Content-Disposition` header. This parameter must not be `nil`. + @param mimeType The declared MIME type of the file data. This parameter must not be `nil`. + @param error If an error occurs, upon return contains an `NSError` object that describes the problem. + + @return `YES` if the file data was successfully appended otherwise `NO`. + */ +- (BOOL)appendPartWithFileURL:(NSURL *)fileURL + name:(NSString *)name + fileName:(NSString *)fileName + mimeType:(NSString *)mimeType + error:(NSError * __nullable __autoreleasing *)error; + +/** + Appends the HTTP header `Content-Disposition: file; filename=#{filename}; name=#{name}"` and `Content-Type: #{mimeType}`, followed by the data from the input stream and the multipart form boundary. + + @param inputStream The input stream to be appended to the form data + @param name The name to be associated with the specified input stream. This parameter must not be `nil`. + @param fileName The filename to be associated with the specified input stream. This parameter must not be `nil`. + @param length The length of the specified input stream in bytes. + @param mimeType The MIME type of the specified data. (For example, the MIME type for a JPEG image is image/jpeg.) For a list of valid MIME types, see http://www.iana.org/assignments/media-types/. This parameter must not be `nil`. + */ +- (void)appendPartWithInputStream:(nullable NSInputStream *)inputStream + name:(NSString *)name + fileName:(NSString *)fileName + length:(int64_t)length + mimeType:(NSString *)mimeType; + +/** + Appends the HTTP header `Content-Disposition: file; filename=#{filename}; name=#{name}"` and `Content-Type: #{mimeType}`, followed by the encoded file data and the multipart form boundary. + + @param data The data to be encoded and appended to the form data. + @param name The name to be associated with the specified data. This parameter must not be `nil`. + @param fileName The filename to be associated with the specified data. This parameter must not be `nil`. + @param mimeType The MIME type of the specified data. (For example, the MIME type for a JPEG image is image/jpeg.) For a list of valid MIME types, see http://www.iana.org/assignments/media-types/. This parameter must not be `nil`. + */ +- (void)appendPartWithFileData:(NSData *)data + name:(NSString *)name + fileName:(NSString *)fileName + mimeType:(NSString *)mimeType; + +/** + Appends the HTTP headers `Content-Disposition: form-data; name=#{name}"`, followed by the encoded data and the multipart form boundary. + + @param data The data to be encoded and appended to the form data. + @param name The name to be associated with the specified data. This parameter must not be `nil`. + */ + +- (void)appendPartWithFormData:(NSData *)data + name:(NSString *)name; + + +/** + Appends HTTP headers, followed by the encoded data and the multipart form boundary. + + @param headers The HTTP headers to be appended to the form data. + @param body The data to be encoded and appended to the form data. This parameter must not be `nil`. + */ +- (void)appendPartWithHeaders:(nullable NSDictionary *)headers + body:(NSData *)body; + +/** + Throttles request bandwidth by limiting the packet size and adding a delay for each chunk read from the upload stream. + + When uploading over a 3G or EDGE connection, requests may fail with "request body stream exhausted". Setting a maximum packet size and delay according to the recommended values (`kAFUploadStream3GSuggestedPacketSize` and `kAFUploadStream3GSuggestedDelay`) lowers the risk of the input stream exceeding its allocated bandwidth. Unfortunately, there is no definite way to distinguish between a 3G, EDGE, or LTE connection over `NSURLConnection`. As such, it is not recommended that you throttle bandwidth based solely on network reachability. Instead, you should consider checking for the "request body stream exhausted" in a failure block, and then retrying the request with throttled bandwidth. + + @param numberOfBytes Maximum packet size, in number of bytes. The default packet size for an input stream is 16kb. + @param delay Duration of delay each time a packet is read. By default, no delay is set. + */ +- (void)throttleBandwidthWithPacketSize:(NSUInteger)numberOfBytes + delay:(NSTimeInterval)delay; + +@end + +#pragma mark - + +/** + `AFJSONRequestSerializer` is a subclass of `AFHTTPRequestSerializer` that encodes parameters as JSON using `NSJSONSerialization`, setting the `Content-Type` of the encoded request to `application/json`. + */ +@interface AFJSONRequestSerializer : AFHTTPRequestSerializer + +/** + Options for writing the request JSON data from Foundation objects. For possible values, see the `NSJSONSerialization` documentation section "NSJSONWritingOptions". `0` by default. + */ +@property (nonatomic, assign) NSJSONWritingOptions writingOptions; + +/** + Creates and returns a JSON serializer with specified reading and writing options. + + @param writingOptions The specified JSON writing options. + */ ++ (instancetype)serializerWithWritingOptions:(NSJSONWritingOptions)writingOptions; + +@end + +#pragma mark - + +/** + `AFPropertyListRequestSerializer` is a subclass of `AFHTTPRequestSerializer` that encodes parameters as JSON using `NSPropertyListSerializer`, setting the `Content-Type` of the encoded request to `application/x-plist`. + */ +@interface AFPropertyListRequestSerializer : AFHTTPRequestSerializer + +/** + The property list format. Possible values are described in "NSPropertyListFormat". + */ +@property (nonatomic, assign) NSPropertyListFormat format; + +/** + @warning The `writeOptions` property is currently unused. + */ +@property (nonatomic, assign) NSPropertyListWriteOptions writeOptions; + +/** + Creates and returns a property list serializer with a specified format, read options, and write options. + + @param format The property list format. + @param writeOptions The property list write options. + + @warning The `writeOptions` property is currently unused. + */ ++ (instancetype)serializerWithFormat:(NSPropertyListFormat)format + writeOptions:(NSPropertyListWriteOptions)writeOptions; + +@end + +#pragma mark - + +///---------------- +/// @name Constants +///---------------- + +/** + ## Error Domains + + The following error domain is predefined. + + - `NSString * const AFURLRequestSerializationErrorDomain` + + ### Constants + + `AFURLRequestSerializationErrorDomain` + AFURLRequestSerializer errors. Error codes for `AFURLRequestSerializationErrorDomain` correspond to codes in `NSURLErrorDomain`. + */ +FOUNDATION_EXPORT NSString * const AFURLRequestSerializationErrorDomain; + +/** + ## User info dictionary keys + + These keys may exist in the user info dictionary, in addition to those defined for NSError. + + - `NSString * const AFNetworkingOperationFailingURLRequestErrorKey` + + ### Constants + + `AFNetworkingOperationFailingURLRequestErrorKey` + The corresponding value is an `NSURLRequest` containing the request of the operation associated with an error. This key is only present in the `AFURLRequestSerializationErrorDomain`. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingOperationFailingURLRequestErrorKey; + +/** + ## Throttling Bandwidth for HTTP Request Input Streams + + @see -throttleBandwidthWithPacketSize:delay: + + ### Constants + + `kAFUploadStream3GSuggestedPacketSize` + Maximum packet size, in number of bytes. Equal to 16kb. + + `kAFUploadStream3GSuggestedDelay` + Duration of delay each time a packet is read. Equal to 0.2 seconds. + */ +FOUNDATION_EXPORT NSUInteger const kAFUploadStream3GSuggestedPacketSize; +FOUNDATION_EXPORT NSTimeInterval const kAFUploadStream3GSuggestedDelay; + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m b/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m new file mode 100644 index 0000000..7e22454 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m @@ -0,0 +1,1428 @@ +// AFURLRequestSerialization.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFURLRequestSerialization.h" + +#if __IPHONE_OS_VERSION_MIN_REQUIRED +#import +#else +#import +#endif + +NSString * const AFURLRequestSerializationErrorDomain = @"com.alamofire.error.serialization.request"; +NSString * const AFNetworkingOperationFailingURLRequestErrorKey = @"com.alamofire.serialization.request.error.response"; + +typedef NSString * (^AFQueryStringSerializationBlock)(NSURLRequest *request, id parameters, NSError *__autoreleasing *error); + +static NSString * AFBase64EncodedStringFromString(NSString *string) { + NSData *data = [NSData dataWithBytes:[string UTF8String] length:[string lengthOfBytesUsingEncoding:NSUTF8StringEncoding]]; + NSUInteger length = [data length]; + NSMutableData *mutableData = [NSMutableData dataWithLength:((length + 2) / 3) * 4]; + + uint8_t *input = (uint8_t *)[data bytes]; + uint8_t *output = (uint8_t *)[mutableData mutableBytes]; + + for (NSUInteger i = 0; i < length; i += 3) { + NSUInteger value = 0; + for (NSUInteger j = i; j < (i + 3); j++) { + value <<= 8; + if (j < length) { + value |= (0xFF & input[j]); + } + } + + static uint8_t const kAFBase64EncodingTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + + NSUInteger idx = (i / 3) * 4; + output[idx + 0] = kAFBase64EncodingTable[(value >> 18) & 0x3F]; + output[idx + 1] = kAFBase64EncodingTable[(value >> 12) & 0x3F]; + output[idx + 2] = (i + 1) < length ? kAFBase64EncodingTable[(value >> 6) & 0x3F] : '='; + output[idx + 3] = (i + 2) < length ? kAFBase64EncodingTable[(value >> 0) & 0x3F] : '='; + } + + return [[NSString alloc] initWithData:mutableData encoding:NSASCIIStringEncoding]; +} + +/** + Returns a percent-escaped string following RFC 3986 for a query string key or value. + RFC 3986 states that the following characters are "reserved" characters. + - General Delimiters: ":", "#", "[", "]", "@", "?", "/" + - Sub-Delimiters: "!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=" + + In RFC 3986 - Section 3.4, it states that the "?" and "/" characters should not be escaped to allow + query strings to include a URL. Therefore, all "reserved" characters with the exception of "?" and "/" + should be percent-escaped in the query string. + - parameter string: The string to be percent-escaped. + - returns: The percent-escaped string. + */ +static NSString * AFPercentEscapedStringFromString(NSString *string) { + static NSString * const kAFCharactersGeneralDelimitersToEncode = @":#[]@"; // does not include "?" or "/" due to RFC 3986 - Section 3.4 + static NSString * const kAFCharactersSubDelimitersToEncode = @"!$&'()*+,;="; + + NSMutableCharacterSet * allowedCharacterSet = [[NSCharacterSet URLQueryAllowedCharacterSet] mutableCopy]; + [allowedCharacterSet removeCharactersInString:[kAFCharactersGeneralDelimitersToEncode stringByAppendingString:kAFCharactersSubDelimitersToEncode]]; + + // FIXME: https://github.com/AFNetworking/AFNetworking/pull/3028 + // return [string stringByAddingPercentEncodingWithAllowedCharacters:allowedCharacterSet]; + + static NSUInteger const batchSize = 50; + + NSUInteger index = 0; + NSMutableString *escaped = @"".mutableCopy; + + while (index < string.length) { +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wgnu" + NSUInteger length = MIN(string.length - index, batchSize); +#pragma GCC diagnostic pop + NSRange range = NSMakeRange(index, length); + + // To avoid breaking up character sequences such as 👴🏻👮🏽 + range = [string rangeOfComposedCharacterSequencesForRange:range]; + + NSString *substring = [string substringWithRange:range]; + NSString *encoded = [substring stringByAddingPercentEncodingWithAllowedCharacters:allowedCharacterSet]; + [escaped appendString:encoded]; + + index += range.length; + } + + return escaped; +} + +#pragma mark - + +@interface AFQueryStringPair : NSObject +@property (readwrite, nonatomic, strong) id field; +@property (readwrite, nonatomic, strong) id value; + +- (id)initWithField:(id)field value:(id)value; + +- (NSString *)URLEncodedStringValue; +@end + +@implementation AFQueryStringPair + +- (id)initWithField:(id)field value:(id)value { + self = [super init]; + if (!self) { + return nil; + } + + self.field = field; + self.value = value; + + return self; +} + +- (NSString *)URLEncodedStringValue { + if (!self.value || [self.value isEqual:[NSNull null]]) { + return AFPercentEscapedStringFromString([self.field description]); + } else { + return [NSString stringWithFormat:@"%@=%@", AFPercentEscapedStringFromString([self.field description]), AFPercentEscapedStringFromString([self.value description])]; + } +} + +@end + +#pragma mark - + +FOUNDATION_EXPORT NSArray * AFQueryStringPairsFromDictionary(NSDictionary *dictionary); +FOUNDATION_EXPORT NSArray * AFQueryStringPairsFromKeyAndValue(NSString *key, id value); + +static NSString * AFQueryStringFromParameters(NSDictionary *parameters) { + NSMutableArray *mutablePairs = [NSMutableArray array]; + for (AFQueryStringPair *pair in AFQueryStringPairsFromDictionary(parameters)) { + [mutablePairs addObject:[pair URLEncodedStringValue]]; + } + + return [mutablePairs componentsJoinedByString:@"&"]; +} + +NSArray * AFQueryStringPairsFromDictionary(NSDictionary *dictionary) { + return AFQueryStringPairsFromKeyAndValue(nil, dictionary); +} + +NSArray * AFQueryStringPairsFromKeyAndValue(NSString *key, id value) { + NSMutableArray *mutableQueryStringComponents = [NSMutableArray array]; + + NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"description" ascending:YES selector:@selector(compare:)]; + + if ([value isKindOfClass:[NSDictionary class]]) { + NSDictionary *dictionary = value; + // Sort dictionary keys to ensure consistent ordering in query string, which is important when deserializing potentially ambiguous sequences, such as an array of dictionaries + for (id nestedKey in [dictionary.allKeys sortedArrayUsingDescriptors:@[ sortDescriptor ]]) { + id nestedValue = dictionary[nestedKey]; + if (nestedValue) { + [mutableQueryStringComponents addObjectsFromArray:AFQueryStringPairsFromKeyAndValue((key ? [NSString stringWithFormat:@"%@[%@]", key, nestedKey] : nestedKey), nestedValue)]; + } + } + } else if ([value isKindOfClass:[NSArray class]]) { + NSArray *array = value; + for (id nestedValue in array) { + [mutableQueryStringComponents addObjectsFromArray:AFQueryStringPairsFromKeyAndValue([NSString stringWithFormat:@"%@[]", key], nestedValue)]; + } + } else if ([value isKindOfClass:[NSSet class]]) { + NSSet *set = value; + for (id obj in [set sortedArrayUsingDescriptors:@[ sortDescriptor ]]) { + [mutableQueryStringComponents addObjectsFromArray:AFQueryStringPairsFromKeyAndValue(key, obj)]; + } + } else { + [mutableQueryStringComponents addObject:[[AFQueryStringPair alloc] initWithField:key value:value]]; + } + + return mutableQueryStringComponents; +} + +#pragma mark - + +@interface AFStreamingMultipartFormData : NSObject +- (instancetype)initWithURLRequest:(NSMutableURLRequest *)urlRequest + stringEncoding:(NSStringEncoding)encoding; + +- (NSMutableURLRequest *)requestByFinalizingMultipartFormData; +@end + +#pragma mark - + +static NSArray * AFHTTPRequestSerializerObservedKeyPaths() { + static NSArray *_AFHTTPRequestSerializerObservedKeyPaths = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _AFHTTPRequestSerializerObservedKeyPaths = @[NSStringFromSelector(@selector(allowsCellularAccess)), NSStringFromSelector(@selector(cachePolicy)), NSStringFromSelector(@selector(HTTPShouldHandleCookies)), NSStringFromSelector(@selector(HTTPShouldUsePipelining)), NSStringFromSelector(@selector(networkServiceType)), NSStringFromSelector(@selector(timeoutInterval))]; + }); + + return _AFHTTPRequestSerializerObservedKeyPaths; +} + +static void *AFHTTPRequestSerializerObserverContext = &AFHTTPRequestSerializerObserverContext; + +@interface AFHTTPRequestSerializer () +@property (readwrite, nonatomic, strong) NSMutableSet *mutableObservedChangedKeyPaths; +@property (readwrite, nonatomic, strong) NSMutableDictionary *mutableHTTPRequestHeaders; +@property (readwrite, nonatomic, assign) AFHTTPRequestQueryStringSerializationStyle queryStringSerializationStyle; +@property (readwrite, nonatomic, copy) AFQueryStringSerializationBlock queryStringSerialization; +@end + +@implementation AFHTTPRequestSerializer + ++ (instancetype)serializer { + return [[self alloc] init]; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.stringEncoding = NSUTF8StringEncoding; + + self.mutableHTTPRequestHeaders = [NSMutableDictionary dictionary]; + + // Accept-Language HTTP Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 + NSMutableArray *acceptLanguagesComponents = [NSMutableArray array]; + [[NSLocale preferredLanguages] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { + float q = 1.0f - (idx * 0.1f); + [acceptLanguagesComponents addObject:[NSString stringWithFormat:@"%@;q=%0.1g", obj, q]]; + *stop = q <= 0.5f; + }]; + [self setValue:[acceptLanguagesComponents componentsJoinedByString:@", "] forHTTPHeaderField:@"Accept-Language"]; + + NSString *userAgent = nil; +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" +#if TARGET_OS_IOS + // User-Agent Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.43 + userAgent = [NSString stringWithFormat:@"%@/%@ (%@; iOS %@; Scale/%0.2f)", [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleExecutableKey] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleIdentifierKey], [[NSBundle mainBundle] infoDictionary][@"CFBundleShortVersionString"] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleVersionKey], [[UIDevice currentDevice] model], [[UIDevice currentDevice] systemVersion], [[UIScreen mainScreen] scale]]; +#elif TARGET_OS_WATCH + // User-Agent Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.43 + userAgent = [NSString stringWithFormat:@"%@/%@ (%@; watchOS %@; Scale/%0.2f)", [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleExecutableKey] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleIdentifierKey], [[NSBundle mainBundle] infoDictionary][@"CFBundleShortVersionString"] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleVersionKey], [[WKInterfaceDevice currentDevice] model], [[WKInterfaceDevice currentDevice] systemVersion], [[WKInterfaceDevice currentDevice] screenScale]]; +#elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED) + userAgent = [NSString stringWithFormat:@"%@/%@ (Mac OS X %@)", [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleExecutableKey] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleIdentifierKey], [[NSBundle mainBundle] infoDictionary][@"CFBundleShortVersionString"] ?: [[NSBundle mainBundle] infoDictionary][(__bridge NSString *)kCFBundleVersionKey], [[NSProcessInfo processInfo] operatingSystemVersionString]]; +#endif +#pragma clang diagnostic pop + if (userAgent) { + if (![userAgent canBeConvertedToEncoding:NSASCIIStringEncoding]) { + NSMutableString *mutableUserAgent = [userAgent mutableCopy]; + if (CFStringTransform((__bridge CFMutableStringRef)(mutableUserAgent), NULL, (__bridge CFStringRef)@"Any-Latin; Latin-ASCII; [:^ASCII:] Remove", false)) { + userAgent = mutableUserAgent; + } + } + [self setValue:userAgent forHTTPHeaderField:@"User-Agent"]; + } + + // HTTP Method Definitions; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html + self.HTTPMethodsEncodingParametersInURI = [NSSet setWithObjects:@"GET", @"HEAD", @"DELETE", nil]; + + self.mutableObservedChangedKeyPaths = [NSMutableSet set]; + for (NSString *keyPath in AFHTTPRequestSerializerObservedKeyPaths()) { + if ([self respondsToSelector:NSSelectorFromString(keyPath)]) { + [self addObserver:self forKeyPath:keyPath options:NSKeyValueObservingOptionNew context:AFHTTPRequestSerializerObserverContext]; + } + } + + return self; +} + +- (void)dealloc { + for (NSString *keyPath in AFHTTPRequestSerializerObservedKeyPaths()) { + if ([self respondsToSelector:NSSelectorFromString(keyPath)]) { + [self removeObserver:self forKeyPath:keyPath context:AFHTTPRequestSerializerObserverContext]; + } + } +} + +#pragma mark - + +// Workarounds for crashing behavior using Key-Value Observing with XCTest +// See https://github.com/AFNetworking/AFNetworking/issues/2523 + +- (void)setAllowsCellularAccess:(BOOL)allowsCellularAccess { + [self willChangeValueForKey:NSStringFromSelector(@selector(allowsCellularAccess))]; + _allowsCellularAccess = allowsCellularAccess; + [self didChangeValueForKey:NSStringFromSelector(@selector(allowsCellularAccess))]; +} + +- (void)setCachePolicy:(NSURLRequestCachePolicy)cachePolicy { + [self willChangeValueForKey:NSStringFromSelector(@selector(cachePolicy))]; + _cachePolicy = cachePolicy; + [self didChangeValueForKey:NSStringFromSelector(@selector(cachePolicy))]; +} + +- (void)setHTTPShouldHandleCookies:(BOOL)HTTPShouldHandleCookies { + [self willChangeValueForKey:NSStringFromSelector(@selector(HTTPShouldHandleCookies))]; + _HTTPShouldHandleCookies = HTTPShouldHandleCookies; + [self didChangeValueForKey:NSStringFromSelector(@selector(HTTPShouldHandleCookies))]; +} + +- (void)setHTTPShouldUsePipelining:(BOOL)HTTPShouldUsePipelining { + [self willChangeValueForKey:NSStringFromSelector(@selector(HTTPShouldUsePipelining))]; + _HTTPShouldUsePipelining = HTTPShouldUsePipelining; + [self didChangeValueForKey:NSStringFromSelector(@selector(HTTPShouldUsePipelining))]; +} + +- (void)setNetworkServiceType:(NSURLRequestNetworkServiceType)networkServiceType { + [self willChangeValueForKey:NSStringFromSelector(@selector(networkServiceType))]; + _networkServiceType = networkServiceType; + [self didChangeValueForKey:NSStringFromSelector(@selector(networkServiceType))]; +} + +- (void)setTimeoutInterval:(NSTimeInterval)timeoutInterval { + [self willChangeValueForKey:NSStringFromSelector(@selector(timeoutInterval))]; + _timeoutInterval = timeoutInterval; + [self didChangeValueForKey:NSStringFromSelector(@selector(timeoutInterval))]; +} + +#pragma mark - + +- (NSDictionary *)HTTPRequestHeaders { + return [NSDictionary dictionaryWithDictionary:self.mutableHTTPRequestHeaders]; +} + +- (void)setValue:(NSString *)value +forHTTPHeaderField:(NSString *)field +{ + [self.mutableHTTPRequestHeaders setValue:value forKey:field]; +} + +- (NSString *)valueForHTTPHeaderField:(NSString *)field { + return [self.mutableHTTPRequestHeaders valueForKey:field]; +} + +- (void)setAuthorizationHeaderFieldWithUsername:(NSString *)username + password:(NSString *)password +{ + NSString *basicAuthCredentials = [NSString stringWithFormat:@"%@:%@", username, password]; + [self setValue:[NSString stringWithFormat:@"Basic %@", AFBase64EncodedStringFromString(basicAuthCredentials)] forHTTPHeaderField:@"Authorization"]; +} + +- (void)setAuthorizationHeaderFieldWithToken:(NSString *)token { + [self setValue:[NSString stringWithFormat:@"Token token=\"%@\"", token] forHTTPHeaderField:@"Authorization"]; +} + +- (void)clearAuthorizationHeader { + [self.mutableHTTPRequestHeaders removeObjectForKey:@"Authorization"]; +} + +#pragma mark - + +- (void)setQueryStringSerializationWithStyle:(AFHTTPRequestQueryStringSerializationStyle)style { + self.queryStringSerializationStyle = style; + self.queryStringSerialization = nil; +} + +- (void)setQueryStringSerializationWithBlock:(NSString *(^)(NSURLRequest *, id, NSError *__autoreleasing *))block { + self.queryStringSerialization = block; +} + +#pragma mark - + +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(id)parameters +{ + return [self requestWithMethod:method URLString:URLString parameters:parameters error:nil]; +} + +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(id)parameters + error:(NSError *__autoreleasing *)error +{ + NSParameterAssert(method); + NSParameterAssert(URLString); + + NSURL *url = [NSURL URLWithString:URLString]; + + NSParameterAssert(url); + + NSMutableURLRequest *mutableRequest = [[NSMutableURLRequest alloc] initWithURL:url]; + mutableRequest.HTTPMethod = method; + + for (NSString *keyPath in AFHTTPRequestSerializerObservedKeyPaths()) { + if ([self.mutableObservedChangedKeyPaths containsObject:keyPath]) { + [mutableRequest setValue:[self valueForKeyPath:keyPath] forKey:keyPath]; + } + } + + mutableRequest = [[self requestBySerializingRequest:mutableRequest withParameters:parameters error:error] mutableCopy]; + + return mutableRequest; +} + +- (NSMutableURLRequest *)multipartFormRequestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(NSDictionary *)parameters + constructingBodyWithBlock:(void (^)(id formData))block +{ + return [self multipartFormRequestWithMethod:method URLString:URLString parameters:parameters constructingBodyWithBlock:block error:nil]; +} + +- (NSMutableURLRequest *)multipartFormRequestWithMethod:(NSString *)method + URLString:(NSString *)URLString + parameters:(NSDictionary *)parameters + constructingBodyWithBlock:(void (^)(id formData))block + error:(NSError *__autoreleasing *)error +{ + NSParameterAssert(method); + NSParameterAssert(![method isEqualToString:@"GET"] && ![method isEqualToString:@"HEAD"]); + + NSMutableURLRequest *mutableRequest = [self requestWithMethod:method URLString:URLString parameters:nil error:error]; + + __block AFStreamingMultipartFormData *formData = [[AFStreamingMultipartFormData alloc] initWithURLRequest:mutableRequest stringEncoding:NSUTF8StringEncoding]; + + if (parameters) { + for (AFQueryStringPair *pair in AFQueryStringPairsFromDictionary(parameters)) { + NSData *data = nil; + if ([pair.value isKindOfClass:[NSData class]]) { + data = pair.value; + } else if ([pair.value isEqual:[NSNull null]]) { + data = [NSData data]; + } else { + data = [[pair.value description] dataUsingEncoding:self.stringEncoding]; + } + + if (data) { + [formData appendPartWithFormData:data name:[pair.field description]]; + } + } + } + + if (block) { + block(formData); + } + + return [formData requestByFinalizingMultipartFormData]; +} + +- (NSMutableURLRequest *)requestWithMultipartFormRequest:(NSURLRequest *)request + writingStreamContentsToFile:(NSURL *)fileURL + completionHandler:(void (^)(NSError *error))handler +{ + NSParameterAssert(request.HTTPBodyStream); + NSParameterAssert([fileURL isFileURL]); + + NSInputStream *inputStream = request.HTTPBodyStream; + NSOutputStream *outputStream = [[NSOutputStream alloc] initWithURL:fileURL append:NO]; + __block NSError *error = nil; + + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ + [inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode]; + [outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode]; + + [inputStream open]; + [outputStream open]; + + while ([inputStream hasBytesAvailable] && [outputStream hasSpaceAvailable]) { + uint8_t buffer[1024]; + + NSInteger bytesRead = [inputStream read:buffer maxLength:1024]; + if (inputStream.streamError || bytesRead < 0) { + error = inputStream.streamError; + break; + } + + NSInteger bytesWritten = [outputStream write:buffer maxLength:(NSUInteger)bytesRead]; + if (outputStream.streamError || bytesWritten < 0) { + error = outputStream.streamError; + break; + } + + if (bytesRead == 0 && bytesWritten == 0) { + break; + } + } + + [outputStream close]; + [inputStream close]; + + if (handler) { + dispatch_async(dispatch_get_main_queue(), ^{ + handler(error); + }); + } + }); + + NSMutableURLRequest *mutableRequest = [request mutableCopy]; + mutableRequest.HTTPBodyStream = nil; + + return mutableRequest; +} + +#pragma mark - AFURLRequestSerialization + +- (NSURLRequest *)requestBySerializingRequest:(NSURLRequest *)request + withParameters:(id)parameters + error:(NSError *__autoreleasing *)error +{ + NSParameterAssert(request); + + NSMutableURLRequest *mutableRequest = [request mutableCopy]; + + [self.HTTPRequestHeaders enumerateKeysAndObjectsUsingBlock:^(id field, id value, BOOL * __unused stop) { + if (![request valueForHTTPHeaderField:field]) { + [mutableRequest setValue:value forHTTPHeaderField:field]; + } + }]; + + NSString *query = nil; + if (parameters) { + if (self.queryStringSerialization) { + NSError *serializationError; + query = self.queryStringSerialization(request, parameters, &serializationError); + + if (serializationError) { + if (error) { + *error = serializationError; + } + + return nil; + } + } else { + switch (self.queryStringSerializationStyle) { + case AFHTTPRequestQueryStringDefaultStyle: + query = AFQueryStringFromParameters(parameters); + break; + } + } + } + + if ([self.HTTPMethodsEncodingParametersInURI containsObject:[[request HTTPMethod] uppercaseString]]) { + if (query) { + mutableRequest.URL = [NSURL URLWithString:[[mutableRequest.URL absoluteString] stringByAppendingFormat:mutableRequest.URL.query ? @"&%@" : @"?%@", query]]; + } + } else { + // #2864: an empty string is a valid x-www-form-urlencoded payload + if (!query) { + query = @""; + } + if (![mutableRequest valueForHTTPHeaderField:@"Content-Type"]) { + [mutableRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; + } + [mutableRequest setHTTPBody:[query dataUsingEncoding:self.stringEncoding]]; + } + + return mutableRequest; +} + +#pragma mark - NSKeyValueObserving + ++ (BOOL)automaticallyNotifiesObserversForKey:(NSString *)key { + if ([AFHTTPRequestSerializerObservedKeyPaths() containsObject:key]) { + return NO; + } + + return [super automaticallyNotifiesObserversForKey:key]; +} + +- (void)observeValueForKeyPath:(NSString *)keyPath + ofObject:(__unused id)object + change:(NSDictionary *)change + context:(void *)context +{ + if (context == AFHTTPRequestSerializerObserverContext) { + if ([change[NSKeyValueChangeNewKey] isEqual:[NSNull null]]) { + [self.mutableObservedChangedKeyPaths removeObject:keyPath]; + } else { + [self.mutableObservedChangedKeyPaths addObject:keyPath]; + } + } +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + self = [self init]; + if (!self) { + return nil; + } + + self.mutableHTTPRequestHeaders = [[decoder decodeObjectOfClass:[NSDictionary class] forKey:NSStringFromSelector(@selector(mutableHTTPRequestHeaders))] mutableCopy]; + self.queryStringSerializationStyle = (AFHTTPRequestQueryStringSerializationStyle)[[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(queryStringSerializationStyle))] unsignedIntegerValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [coder encodeObject:self.mutableHTTPRequestHeaders forKey:NSStringFromSelector(@selector(mutableHTTPRequestHeaders))]; + [coder encodeInteger:self.queryStringSerializationStyle forKey:NSStringFromSelector(@selector(queryStringSerializationStyle))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPRequestSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.mutableHTTPRequestHeaders = [self.mutableHTTPRequestHeaders mutableCopyWithZone:zone]; + serializer.queryStringSerializationStyle = self.queryStringSerializationStyle; + serializer.queryStringSerialization = self.queryStringSerialization; + + return serializer; +} + +@end + +#pragma mark - + +static NSString * AFCreateMultipartFormBoundary() { + return [NSString stringWithFormat:@"Boundary+%08X%08X", arc4random(), arc4random()]; +} + +static NSString * const kAFMultipartFormCRLF = @"\r\n"; + +static inline NSString * AFMultipartFormInitialBoundary(NSString *boundary) { + return [NSString stringWithFormat:@"--%@%@", boundary, kAFMultipartFormCRLF]; +} + +static inline NSString * AFMultipartFormEncapsulationBoundary(NSString *boundary) { + return [NSString stringWithFormat:@"%@--%@%@", kAFMultipartFormCRLF, boundary, kAFMultipartFormCRLF]; +} + +static inline NSString * AFMultipartFormFinalBoundary(NSString *boundary) { + return [NSString stringWithFormat:@"%@--%@--%@", kAFMultipartFormCRLF, boundary, kAFMultipartFormCRLF]; +} + +static inline NSString * AFContentTypeForPathExtension(NSString *extension) { +#ifdef __UTTYPE__ + NSString *UTI = (__bridge_transfer NSString *)UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)extension, NULL); + NSString *contentType = (__bridge_transfer NSString *)UTTypeCopyPreferredTagWithClass((__bridge CFStringRef)UTI, kUTTagClassMIMEType); + if (!contentType) { + return @"application/octet-stream"; + } else { + return contentType; + } +#else +#pragma unused (extension) + return @"application/octet-stream"; +#endif +} + +NSUInteger const kAFUploadStream3GSuggestedPacketSize = 1024 * 16; +NSTimeInterval const kAFUploadStream3GSuggestedDelay = 0.2; + +@interface AFHTTPBodyPart : NSObject +@property (nonatomic, assign) NSStringEncoding stringEncoding; +@property (nonatomic, strong) NSDictionary *headers; +@property (nonatomic, copy) NSString *boundary; +@property (nonatomic, strong) id body; +@property (nonatomic, assign) unsigned long long bodyContentLength; +@property (nonatomic, strong) NSInputStream *inputStream; + +@property (nonatomic, assign) BOOL hasInitialBoundary; +@property (nonatomic, assign) BOOL hasFinalBoundary; + +@property (readonly, nonatomic, assign, getter = hasBytesAvailable) BOOL bytesAvailable; +@property (readonly, nonatomic, assign) unsigned long long contentLength; + +- (NSInteger)read:(uint8_t *)buffer + maxLength:(NSUInteger)length; +@end + +@interface AFMultipartBodyStream : NSInputStream +@property (nonatomic, assign) NSUInteger numberOfBytesInPacket; +@property (nonatomic, assign) NSTimeInterval delay; +@property (nonatomic, strong) NSInputStream *inputStream; +@property (readonly, nonatomic, assign) unsigned long long contentLength; +@property (readonly, nonatomic, assign, getter = isEmpty) BOOL empty; + +- (id)initWithStringEncoding:(NSStringEncoding)encoding; +- (void)setInitialAndFinalBoundaries; +- (void)appendHTTPBodyPart:(AFHTTPBodyPart *)bodyPart; +@end + +#pragma mark - + +@interface AFStreamingMultipartFormData () +@property (readwrite, nonatomic, copy) NSMutableURLRequest *request; +@property (readwrite, nonatomic, assign) NSStringEncoding stringEncoding; +@property (readwrite, nonatomic, copy) NSString *boundary; +@property (readwrite, nonatomic, strong) AFMultipartBodyStream *bodyStream; +@end + +@implementation AFStreamingMultipartFormData + +- (id)initWithURLRequest:(NSMutableURLRequest *)urlRequest + stringEncoding:(NSStringEncoding)encoding +{ + self = [super init]; + if (!self) { + return nil; + } + + self.request = urlRequest; + self.stringEncoding = encoding; + self.boundary = AFCreateMultipartFormBoundary(); + self.bodyStream = [[AFMultipartBodyStream alloc] initWithStringEncoding:encoding]; + + return self; +} + +- (BOOL)appendPartWithFileURL:(NSURL *)fileURL + name:(NSString *)name + error:(NSError * __autoreleasing *)error +{ + NSParameterAssert(fileURL); + NSParameterAssert(name); + + NSString *fileName = [fileURL lastPathComponent]; + NSString *mimeType = AFContentTypeForPathExtension([fileURL pathExtension]); + + return [self appendPartWithFileURL:fileURL name:name fileName:fileName mimeType:mimeType error:error]; +} + +- (BOOL)appendPartWithFileURL:(NSURL *)fileURL + name:(NSString *)name + fileName:(NSString *)fileName + mimeType:(NSString *)mimeType + error:(NSError * __autoreleasing *)error +{ + NSParameterAssert(fileURL); + NSParameterAssert(name); + NSParameterAssert(fileName); + NSParameterAssert(mimeType); + + if (![fileURL isFileURL]) { + NSDictionary *userInfo = @{NSLocalizedFailureReasonErrorKey: NSLocalizedStringFromTable(@"Expected URL to be a file URL", @"AFNetworking", nil)}; + if (error) { + *error = [[NSError alloc] initWithDomain:AFURLRequestSerializationErrorDomain code:NSURLErrorBadURL userInfo:userInfo]; + } + + return NO; + } else if ([fileURL checkResourceIsReachableAndReturnError:error] == NO) { + NSDictionary *userInfo = @{NSLocalizedFailureReasonErrorKey: NSLocalizedStringFromTable(@"File URL not reachable.", @"AFNetworking", nil)}; + if (error) { + *error = [[NSError alloc] initWithDomain:AFURLRequestSerializationErrorDomain code:NSURLErrorBadURL userInfo:userInfo]; + } + + return NO; + } + + NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[fileURL path] error:error]; + if (!fileAttributes) { + return NO; + } + + NSMutableDictionary *mutableHeaders = [NSMutableDictionary dictionary]; + [mutableHeaders setValue:[NSString stringWithFormat:@"form-data; name=\"%@\"; filename=\"%@\"", name, fileName] forKey:@"Content-Disposition"]; + [mutableHeaders setValue:mimeType forKey:@"Content-Type"]; + + AFHTTPBodyPart *bodyPart = [[AFHTTPBodyPart alloc] init]; + bodyPart.stringEncoding = self.stringEncoding; + bodyPart.headers = mutableHeaders; + bodyPart.boundary = self.boundary; + bodyPart.body = fileURL; + bodyPart.bodyContentLength = [fileAttributes[NSFileSize] unsignedLongLongValue]; + [self.bodyStream appendHTTPBodyPart:bodyPart]; + + return YES; +} + +- (void)appendPartWithInputStream:(NSInputStream *)inputStream + name:(NSString *)name + fileName:(NSString *)fileName + length:(int64_t)length + mimeType:(NSString *)mimeType +{ + NSParameterAssert(name); + NSParameterAssert(fileName); + NSParameterAssert(mimeType); + + NSMutableDictionary *mutableHeaders = [NSMutableDictionary dictionary]; + [mutableHeaders setValue:[NSString stringWithFormat:@"form-data; name=\"%@\"; filename=\"%@\"", name, fileName] forKey:@"Content-Disposition"]; + [mutableHeaders setValue:mimeType forKey:@"Content-Type"]; + + AFHTTPBodyPart *bodyPart = [[AFHTTPBodyPart alloc] init]; + bodyPart.stringEncoding = self.stringEncoding; + bodyPart.headers = mutableHeaders; + bodyPart.boundary = self.boundary; + bodyPart.body = inputStream; + + bodyPart.bodyContentLength = (unsigned long long)length; + + [self.bodyStream appendHTTPBodyPart:bodyPart]; +} + +- (void)appendPartWithFileData:(NSData *)data + name:(NSString *)name + fileName:(NSString *)fileName + mimeType:(NSString *)mimeType +{ + NSParameterAssert(name); + NSParameterAssert(fileName); + NSParameterAssert(mimeType); + + NSMutableDictionary *mutableHeaders = [NSMutableDictionary dictionary]; + [mutableHeaders setValue:[NSString stringWithFormat:@"form-data; name=\"%@\"; filename=\"%@\"", name, fileName] forKey:@"Content-Disposition"]; + [mutableHeaders setValue:mimeType forKey:@"Content-Type"]; + + [self appendPartWithHeaders:mutableHeaders body:data]; +} + +- (void)appendPartWithFormData:(NSData *)data + name:(NSString *)name +{ + NSParameterAssert(name); + + NSMutableDictionary *mutableHeaders = [NSMutableDictionary dictionary]; + [mutableHeaders setValue:[NSString stringWithFormat:@"form-data; name=\"%@\"", name] forKey:@"Content-Disposition"]; + + [self appendPartWithHeaders:mutableHeaders body:data]; +} + +- (void)appendPartWithHeaders:(NSDictionary *)headers + body:(NSData *)body +{ + NSParameterAssert(body); + + AFHTTPBodyPart *bodyPart = [[AFHTTPBodyPart alloc] init]; + bodyPart.stringEncoding = self.stringEncoding; + bodyPart.headers = headers; + bodyPart.boundary = self.boundary; + bodyPart.bodyContentLength = [body length]; + bodyPart.body = body; + + [self.bodyStream appendHTTPBodyPart:bodyPart]; +} + +- (void)throttleBandwidthWithPacketSize:(NSUInteger)numberOfBytes + delay:(NSTimeInterval)delay +{ + self.bodyStream.numberOfBytesInPacket = numberOfBytes; + self.bodyStream.delay = delay; +} + +- (NSMutableURLRequest *)requestByFinalizingMultipartFormData { + if ([self.bodyStream isEmpty]) { + return self.request; + } + + // Reset the initial and final boundaries to ensure correct Content-Length + [self.bodyStream setInitialAndFinalBoundaries]; + [self.request setHTTPBodyStream:self.bodyStream]; + + [self.request setValue:[NSString stringWithFormat:@"multipart/form-data; boundary=%@", self.boundary] forHTTPHeaderField:@"Content-Type"]; + [self.request setValue:[NSString stringWithFormat:@"%llu", [self.bodyStream contentLength]] forHTTPHeaderField:@"Content-Length"]; + + return self.request; +} + +@end + +#pragma mark - + +@interface NSStream () +@property (readwrite) NSStreamStatus streamStatus; +@property (readwrite, copy) NSError *streamError; +@end + +@interface AFMultipartBodyStream () +@property (readwrite, nonatomic, assign) NSStringEncoding stringEncoding; +@property (readwrite, nonatomic, strong) NSMutableArray *HTTPBodyParts; +@property (readwrite, nonatomic, strong) NSEnumerator *HTTPBodyPartEnumerator; +@property (readwrite, nonatomic, strong) AFHTTPBodyPart *currentHTTPBodyPart; +@property (readwrite, nonatomic, strong) NSOutputStream *outputStream; +@property (readwrite, nonatomic, strong) NSMutableData *buffer; +@end + +@implementation AFMultipartBodyStream +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wimplicit-atomic-properties" +#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 80000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1100) +@synthesize delegate; +#endif +@synthesize streamStatus; +@synthesize streamError; +#pragma clang diagnostic pop + +- (id)initWithStringEncoding:(NSStringEncoding)encoding { + self = [super init]; + if (!self) { + return nil; + } + + self.stringEncoding = encoding; + self.HTTPBodyParts = [NSMutableArray array]; + self.numberOfBytesInPacket = NSIntegerMax; + + return self; +} + +- (void)setInitialAndFinalBoundaries { + if ([self.HTTPBodyParts count] > 0) { + for (AFHTTPBodyPart *bodyPart in self.HTTPBodyParts) { + bodyPart.hasInitialBoundary = NO; + bodyPart.hasFinalBoundary = NO; + } + + [[self.HTTPBodyParts firstObject] setHasInitialBoundary:YES]; + [[self.HTTPBodyParts lastObject] setHasFinalBoundary:YES]; + } +} + +- (void)appendHTTPBodyPart:(AFHTTPBodyPart *)bodyPart { + [self.HTTPBodyParts addObject:bodyPart]; +} + +- (BOOL)isEmpty { + return [self.HTTPBodyParts count] == 0; +} + +#pragma mark - NSInputStream + +- (NSInteger)read:(uint8_t *)buffer + maxLength:(NSUInteger)length +{ + if ([self streamStatus] == NSStreamStatusClosed) { + return 0; + } + + NSInteger totalNumberOfBytesRead = 0; + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + while ((NSUInteger)totalNumberOfBytesRead < MIN(length, self.numberOfBytesInPacket)) { + if (!self.currentHTTPBodyPart || ![self.currentHTTPBodyPart hasBytesAvailable]) { + if (!(self.currentHTTPBodyPart = [self.HTTPBodyPartEnumerator nextObject])) { + break; + } + } else { + NSUInteger maxLength = length - (NSUInteger)totalNumberOfBytesRead; + NSInteger numberOfBytesRead = [self.currentHTTPBodyPart read:&buffer[totalNumberOfBytesRead] maxLength:maxLength]; + if (numberOfBytesRead == -1) { + self.streamError = self.currentHTTPBodyPart.inputStream.streamError; + break; + } else { + totalNumberOfBytesRead += numberOfBytesRead; + + if (self.delay > 0.0f) { + [NSThread sleepForTimeInterval:self.delay]; + } + } + } + } +#pragma clang diagnostic pop + + return totalNumberOfBytesRead; +} + +- (BOOL)getBuffer:(__unused uint8_t **)buffer + length:(__unused NSUInteger *)len +{ + return NO; +} + +- (BOOL)hasBytesAvailable { + return [self streamStatus] == NSStreamStatusOpen; +} + +#pragma mark - NSStream + +- (void)open { + if (self.streamStatus == NSStreamStatusOpen) { + return; + } + + self.streamStatus = NSStreamStatusOpen; + + [self setInitialAndFinalBoundaries]; + self.HTTPBodyPartEnumerator = [self.HTTPBodyParts objectEnumerator]; +} + +- (void)close { + self.streamStatus = NSStreamStatusClosed; +} + +- (id)propertyForKey:(__unused NSString *)key { + return nil; +} + +- (BOOL)setProperty:(__unused id)property + forKey:(__unused NSString *)key +{ + return NO; +} + +- (void)scheduleInRunLoop:(__unused NSRunLoop *)aRunLoop + forMode:(__unused NSString *)mode +{} + +- (void)removeFromRunLoop:(__unused NSRunLoop *)aRunLoop + forMode:(__unused NSString *)mode +{} + +- (unsigned long long)contentLength { + unsigned long long length = 0; + for (AFHTTPBodyPart *bodyPart in self.HTTPBodyParts) { + length += [bodyPart contentLength]; + } + + return length; +} + +#pragma mark - Undocumented CFReadStream Bridged Methods + +- (void)_scheduleInCFRunLoop:(__unused CFRunLoopRef)aRunLoop + forMode:(__unused CFStringRef)aMode +{} + +- (void)_unscheduleFromCFRunLoop:(__unused CFRunLoopRef)aRunLoop + forMode:(__unused CFStringRef)aMode +{} + +- (BOOL)_setCFClientFlags:(__unused CFOptionFlags)inFlags + callback:(__unused CFReadStreamClientCallBack)inCallback + context:(__unused CFStreamClientContext *)inContext { + return NO; +} + +#pragma mark - NSCopying + +-(id)copyWithZone:(NSZone *)zone { + AFMultipartBodyStream *bodyStreamCopy = [[[self class] allocWithZone:zone] initWithStringEncoding:self.stringEncoding]; + + for (AFHTTPBodyPart *bodyPart in self.HTTPBodyParts) { + [bodyStreamCopy appendHTTPBodyPart:[bodyPart copy]]; + } + + [bodyStreamCopy setInitialAndFinalBoundaries]; + + return bodyStreamCopy; +} + +@end + +#pragma mark - + +typedef enum { + AFEncapsulationBoundaryPhase = 1, + AFHeaderPhase = 2, + AFBodyPhase = 3, + AFFinalBoundaryPhase = 4, +} AFHTTPBodyPartReadPhase; + +@interface AFHTTPBodyPart () { + AFHTTPBodyPartReadPhase _phase; + NSInputStream *_inputStream; + unsigned long long _phaseReadOffset; +} + +- (BOOL)transitionToNextPhase; +- (NSInteger)readData:(NSData *)data + intoBuffer:(uint8_t *)buffer + maxLength:(NSUInteger)length; +@end + +@implementation AFHTTPBodyPart + +- (id)init { + self = [super init]; + if (!self) { + return nil; + } + + [self transitionToNextPhase]; + + return self; +} + +- (void)dealloc { + if (_inputStream) { + [_inputStream close]; + _inputStream = nil; + } +} + +- (NSInputStream *)inputStream { + if (!_inputStream) { + if ([self.body isKindOfClass:[NSData class]]) { + _inputStream = [NSInputStream inputStreamWithData:self.body]; + } else if ([self.body isKindOfClass:[NSURL class]]) { + _inputStream = [NSInputStream inputStreamWithURL:self.body]; + } else if ([self.body isKindOfClass:[NSInputStream class]]) { + _inputStream = self.body; + } else { + _inputStream = [NSInputStream inputStreamWithData:[NSData data]]; + } + } + + return _inputStream; +} + +- (NSString *)stringForHeaders { + NSMutableString *headerString = [NSMutableString string]; + for (NSString *field in [self.headers allKeys]) { + [headerString appendString:[NSString stringWithFormat:@"%@: %@%@", field, [self.headers valueForKey:field], kAFMultipartFormCRLF]]; + } + [headerString appendString:kAFMultipartFormCRLF]; + + return [NSString stringWithString:headerString]; +} + +- (unsigned long long)contentLength { + unsigned long long length = 0; + + NSData *encapsulationBoundaryData = [([self hasInitialBoundary] ? AFMultipartFormInitialBoundary(self.boundary) : AFMultipartFormEncapsulationBoundary(self.boundary)) dataUsingEncoding:self.stringEncoding]; + length += [encapsulationBoundaryData length]; + + NSData *headersData = [[self stringForHeaders] dataUsingEncoding:self.stringEncoding]; + length += [headersData length]; + + length += _bodyContentLength; + + NSData *closingBoundaryData = ([self hasFinalBoundary] ? [AFMultipartFormFinalBoundary(self.boundary) dataUsingEncoding:self.stringEncoding] : [NSData data]); + length += [closingBoundaryData length]; + + return length; +} + +- (BOOL)hasBytesAvailable { + // Allows `read:maxLength:` to be called again if `AFMultipartFormFinalBoundary` doesn't fit into the available buffer + if (_phase == AFFinalBoundaryPhase) { + return YES; + } + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wcovered-switch-default" + switch (self.inputStream.streamStatus) { + case NSStreamStatusNotOpen: + case NSStreamStatusOpening: + case NSStreamStatusOpen: + case NSStreamStatusReading: + case NSStreamStatusWriting: + return YES; + case NSStreamStatusAtEnd: + case NSStreamStatusClosed: + case NSStreamStatusError: + default: + return NO; + } +#pragma clang diagnostic pop +} + +- (NSInteger)read:(uint8_t *)buffer + maxLength:(NSUInteger)length +{ + NSInteger totalNumberOfBytesRead = 0; + + if (_phase == AFEncapsulationBoundaryPhase) { + NSData *encapsulationBoundaryData = [([self hasInitialBoundary] ? AFMultipartFormInitialBoundary(self.boundary) : AFMultipartFormEncapsulationBoundary(self.boundary)) dataUsingEncoding:self.stringEncoding]; + totalNumberOfBytesRead += [self readData:encapsulationBoundaryData intoBuffer:&buffer[totalNumberOfBytesRead] maxLength:(length - (NSUInteger)totalNumberOfBytesRead)]; + } + + if (_phase == AFHeaderPhase) { + NSData *headersData = [[self stringForHeaders] dataUsingEncoding:self.stringEncoding]; + totalNumberOfBytesRead += [self readData:headersData intoBuffer:&buffer[totalNumberOfBytesRead] maxLength:(length - (NSUInteger)totalNumberOfBytesRead)]; + } + + if (_phase == AFBodyPhase) { + NSInteger numberOfBytesRead = 0; + + numberOfBytesRead = [self.inputStream read:&buffer[totalNumberOfBytesRead] maxLength:(length - (NSUInteger)totalNumberOfBytesRead)]; + if (numberOfBytesRead == -1) { + return -1; + } else { + totalNumberOfBytesRead += numberOfBytesRead; + + if ([self.inputStream streamStatus] >= NSStreamStatusAtEnd) { + [self transitionToNextPhase]; + } + } + } + + if (_phase == AFFinalBoundaryPhase) { + NSData *closingBoundaryData = ([self hasFinalBoundary] ? [AFMultipartFormFinalBoundary(self.boundary) dataUsingEncoding:self.stringEncoding] : [NSData data]); + totalNumberOfBytesRead += [self readData:closingBoundaryData intoBuffer:&buffer[totalNumberOfBytesRead] maxLength:(length - (NSUInteger)totalNumberOfBytesRead)]; + } + + return totalNumberOfBytesRead; +} + +- (NSInteger)readData:(NSData *)data + intoBuffer:(uint8_t *)buffer + maxLength:(NSUInteger)length +{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + NSRange range = NSMakeRange((NSUInteger)_phaseReadOffset, MIN([data length] - ((NSUInteger)_phaseReadOffset), length)); + [data getBytes:buffer range:range]; +#pragma clang diagnostic pop + + _phaseReadOffset += range.length; + + if (((NSUInteger)_phaseReadOffset) >= [data length]) { + [self transitionToNextPhase]; + } + + return (NSInteger)range.length; +} + +- (BOOL)transitionToNextPhase { + if (![[NSThread currentThread] isMainThread]) { + dispatch_sync(dispatch_get_main_queue(), ^{ + [self transitionToNextPhase]; + }); + return YES; + } + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wcovered-switch-default" + switch (_phase) { + case AFEncapsulationBoundaryPhase: + _phase = AFHeaderPhase; + break; + case AFHeaderPhase: + [self.inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes]; + [self.inputStream open]; + _phase = AFBodyPhase; + break; + case AFBodyPhase: + [self.inputStream close]; + _phase = AFFinalBoundaryPhase; + break; + case AFFinalBoundaryPhase: + default: + _phase = AFEncapsulationBoundaryPhase; + break; + } + _phaseReadOffset = 0; +#pragma clang diagnostic pop + + return YES; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPBodyPart *bodyPart = [[[self class] allocWithZone:zone] init]; + + bodyPart.stringEncoding = self.stringEncoding; + bodyPart.headers = self.headers; + bodyPart.bodyContentLength = self.bodyContentLength; + bodyPart.body = self.body; + bodyPart.boundary = self.boundary; + + return bodyPart; +} + +@end + +#pragma mark - + +@implementation AFJSONRequestSerializer + ++ (instancetype)serializer { + return [self serializerWithWritingOptions:(NSJSONWritingOptions)0]; +} + ++ (instancetype)serializerWithWritingOptions:(NSJSONWritingOptions)writingOptions +{ + AFJSONRequestSerializer *serializer = [[self alloc] init]; + serializer.writingOptions = writingOptions; + + return serializer; +} + +#pragma mark - AFURLRequestSerialization + +- (NSURLRequest *)requestBySerializingRequest:(NSURLRequest *)request + withParameters:(id)parameters + error:(NSError *__autoreleasing *)error +{ + NSParameterAssert(request); + + if ([self.HTTPMethodsEncodingParametersInURI containsObject:[[request HTTPMethod] uppercaseString]]) { + return [super requestBySerializingRequest:request withParameters:parameters error:error]; + } + + NSMutableURLRequest *mutableRequest = [request mutableCopy]; + + [self.HTTPRequestHeaders enumerateKeysAndObjectsUsingBlock:^(id field, id value, BOOL * __unused stop) { + if (![request valueForHTTPHeaderField:field]) { + [mutableRequest setValue:value forHTTPHeaderField:field]; + } + }]; + + if (parameters) { + if (![mutableRequest valueForHTTPHeaderField:@"Content-Type"]) { + [mutableRequest setValue:@"application/json" forHTTPHeaderField:@"Content-Type"]; + } + + [mutableRequest setHTTPBody:[NSJSONSerialization dataWithJSONObject:parameters options:self.writingOptions error:error]]; + } + + return mutableRequest; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.writingOptions = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(writingOptions))] unsignedIntegerValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeInteger:self.writingOptions forKey:NSStringFromSelector(@selector(writingOptions))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFJSONRequestSerializer *serializer = [super copyWithZone:zone]; + serializer.writingOptions = self.writingOptions; + + return serializer; +} + +@end + +#pragma mark - + +@implementation AFPropertyListRequestSerializer + ++ (instancetype)serializer { + return [self serializerWithFormat:NSPropertyListXMLFormat_v1_0 writeOptions:0]; +} + ++ (instancetype)serializerWithFormat:(NSPropertyListFormat)format + writeOptions:(NSPropertyListWriteOptions)writeOptions +{ + AFPropertyListRequestSerializer *serializer = [[self alloc] init]; + serializer.format = format; + serializer.writeOptions = writeOptions; + + return serializer; +} + +#pragma mark - AFURLRequestSerializer + +- (NSURLRequest *)requestBySerializingRequest:(NSURLRequest *)request + withParameters:(id)parameters + error:(NSError *__autoreleasing *)error +{ + NSParameterAssert(request); + + if ([self.HTTPMethodsEncodingParametersInURI containsObject:[[request HTTPMethod] uppercaseString]]) { + return [super requestBySerializingRequest:request withParameters:parameters error:error]; + } + + NSMutableURLRequest *mutableRequest = [request mutableCopy]; + + [self.HTTPRequestHeaders enumerateKeysAndObjectsUsingBlock:^(id field, id value, BOOL * __unused stop) { + if (![request valueForHTTPHeaderField:field]) { + [mutableRequest setValue:value forHTTPHeaderField:field]; + } + }]; + + if (parameters) { + if (![mutableRequest valueForHTTPHeaderField:@"Content-Type"]) { + [mutableRequest setValue:@"application/x-plist" forHTTPHeaderField:@"Content-Type"]; + } + + [mutableRequest setHTTPBody:[NSPropertyListSerialization dataWithPropertyList:parameters format:self.format options:self.writeOptions error:error]]; + } + + return mutableRequest; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.format = (NSPropertyListFormat)[[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(format))] unsignedIntegerValue]; + self.writeOptions = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(writeOptions))] unsignedIntegerValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeInteger:self.format forKey:NSStringFromSelector(@selector(format))]; + [coder encodeObject:@(self.writeOptions) forKey:NSStringFromSelector(@selector(writeOptions))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFPropertyListRequestSerializer *serializer = [super copyWithZone:zone]; + serializer.format = self.format; + serializer.writeOptions = self.writeOptions; + + return serializer; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h b/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h new file mode 100644 index 0000000..1578b78 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h @@ -0,0 +1,315 @@ +// AFURLResponseSerialization.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + The `AFURLResponseSerialization` protocol is adopted by an object that decodes data into a more useful object representation, according to details in the server response. Response serializers may additionally perform validation on the incoming response and data. + + For example, a JSON response serializer may check for an acceptable status code (`2XX` range) and content type (`application/json`), decoding a valid JSON response into an object. + */ +@protocol AFURLResponseSerialization + +/** + The response object decoded from the data associated with a specified response. + + @param response The response to be processed. + @param data The response data to be decoded. + @param error The error that occurred while attempting to decode the response data. + + @return The object decoded from the specified response data. + */ +- (nullable id)responseObjectForResponse:(nullable NSURLResponse *)response + data:(nullable NSData *)data + error:(NSError * __nullable __autoreleasing *)error +#ifdef NS_SWIFT_NOTHROW +NS_SWIFT_NOTHROW +#endif +; + +@end + +#pragma mark - + +/** + `AFHTTPResponseSerializer` conforms to the `AFURLRequestSerialization` & `AFURLResponseSerialization` protocols, offering a concrete base implementation of query string / URL form-encoded parameter serialization and default request headers, as well as response status code and content type validation. + + Any request or response serializer dealing with HTTP is encouraged to subclass `AFHTTPResponseSerializer` in order to ensure consistent default behavior. + */ +@interface AFHTTPResponseSerializer : NSObject + +- (instancetype)init; + +/** + The string encoding used to serialize data received from the server, when no string encoding is specified by the response. `NSUTF8StringEncoding` by default. + */ +@property (nonatomic, assign) NSStringEncoding stringEncoding; + +/** + Creates and returns a serializer with default configuration. + */ ++ (instancetype)serializer; + +///----------------------------------------- +/// @name Configuring Response Serialization +///----------------------------------------- + +/** + The acceptable HTTP status codes for responses. When non-`nil`, responses with status codes not contained by the set will result in an error during validation. + + See http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html + */ +@property (nonatomic, copy, nullable) NSIndexSet *acceptableStatusCodes; + +/** + The acceptable MIME types for responses. When non-`nil`, responses with a `Content-Type` with MIME types that do not intersect with the set will result in an error during validation. + */ +@property (nonatomic, copy, nullable) NSSet *acceptableContentTypes; + +/** + Validates the specified response and data. + + In its base implementation, this method checks for an acceptable status code and content type. Subclasses may wish to add other domain-specific checks. + + @param response The response to be validated. + @param data The data associated with the response. + @param error The error that occurred while attempting to validate the response. + + @return `YES` if the response is valid, otherwise `NO`. + */ +- (BOOL)validateResponse:(nullable NSHTTPURLResponse *)response + data:(nullable NSData *)data + error:(NSError * __nullable __autoreleasing *)error; + +@end + +#pragma mark - + + +/** + `AFJSONResponseSerializer` is a subclass of `AFHTTPResponseSerializer` that validates and decodes JSON responses. + + By default, `AFJSONResponseSerializer` accepts the following MIME types, which includes the official standard, `application/json`, as well as other commonly-used types: + + - `application/json` + - `text/json` + - `text/javascript` + */ +@interface AFJSONResponseSerializer : AFHTTPResponseSerializer + +- (instancetype)init; + +/** + Options for reading the response JSON data and creating the Foundation objects. For possible values, see the `NSJSONSerialization` documentation section "NSJSONReadingOptions". `0` by default. + */ +@property (nonatomic, assign) NSJSONReadingOptions readingOptions; + +/** + Whether to remove keys with `NSNull` values from response JSON. Defaults to `NO`. + */ +@property (nonatomic, assign) BOOL removesKeysWithNullValues; + +/** + Creates and returns a JSON serializer with specified reading and writing options. + + @param readingOptions The specified JSON reading options. + */ ++ (instancetype)serializerWithReadingOptions:(NSJSONReadingOptions)readingOptions; + +@end + +#pragma mark - + +/** + `AFXMLParserResponseSerializer` is a subclass of `AFHTTPResponseSerializer` that validates and decodes XML responses as an `NSXMLParser` objects. + + By default, `AFXMLParserResponseSerializer` accepts the following MIME types, which includes the official standard, `application/xml`, as well as other commonly-used types: + + - `application/xml` + - `text/xml` + */ +@interface AFXMLParserResponseSerializer : AFHTTPResponseSerializer + +@end + +#pragma mark - + +#ifdef __MAC_OS_X_VERSION_MIN_REQUIRED + +/** + `AFXMLDocumentResponseSerializer` is a subclass of `AFHTTPResponseSerializer` that validates and decodes XML responses as an `NSXMLDocument` objects. + + By default, `AFXMLDocumentResponseSerializer` accepts the following MIME types, which includes the official standard, `application/xml`, as well as other commonly-used types: + + - `application/xml` + - `text/xml` + */ +@interface AFXMLDocumentResponseSerializer : AFHTTPResponseSerializer + +- (instancetype)init; + +/** + Input and output options specifically intended for `NSXMLDocument` objects. For possible values, see the `NSJSONSerialization` documentation section "NSJSONReadingOptions". `0` by default. + */ +@property (nonatomic, assign) NSUInteger options; + +/** + Creates and returns an XML document serializer with the specified options. + + @param mask The XML document options. + */ ++ (instancetype)serializerWithXMLDocumentOptions:(NSUInteger)mask; + +@end + +#endif + +#pragma mark - + +/** + `AFPropertyListResponseSerializer` is a subclass of `AFHTTPResponseSerializer` that validates and decodes XML responses as an `NSXMLDocument` objects. + + By default, `AFPropertyListResponseSerializer` accepts the following MIME types: + + - `application/x-plist` + */ +@interface AFPropertyListResponseSerializer : AFHTTPResponseSerializer + +- (instancetype)init; + +/** + The property list format. Possible values are described in "NSPropertyListFormat". + */ +@property (nonatomic, assign) NSPropertyListFormat format; + +/** + The property list reading options. Possible values are described in "NSPropertyListMutabilityOptions." + */ +@property (nonatomic, assign) NSPropertyListReadOptions readOptions; + +/** + Creates and returns a property list serializer with a specified format, read options, and write options. + + @param format The property list format. + @param readOptions The property list reading options. + */ ++ (instancetype)serializerWithFormat:(NSPropertyListFormat)format + readOptions:(NSPropertyListReadOptions)readOptions; + +@end + +#pragma mark - + +/** + `AFImageResponseSerializer` is a subclass of `AFHTTPResponseSerializer` that validates and decodes image responses. + + By default, `AFImageResponseSerializer` accepts the following MIME types, which correspond to the image formats supported by UIImage or NSImage: + + - `image/tiff` + - `image/jpeg` + - `image/gif` + - `image/png` + - `image/ico` + - `image/x-icon` + - `image/bmp` + - `image/x-bmp` + - `image/x-xbitmap` + - `image/x-win-bitmap` + */ +@interface AFImageResponseSerializer : AFHTTPResponseSerializer + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +/** + The scale factor used when interpreting the image data to construct `responseImage`. Specifying a scale factor of 1.0 results in an image whose size matches the pixel-based dimensions of the image. Applying a different scale factor changes the size of the image as reported by the size property. This is set to the value of scale of the main screen by default, which automatically scales images for retina displays, for instance. + */ +@property (nonatomic, assign) CGFloat imageScale; + +/** + Whether to automatically inflate response image data for compressed formats (such as PNG or JPEG). Enabling this can significantly improve drawing performance on iOS when used with `setCompletionBlockWithSuccess:failure:`, as it allows a bitmap representation to be constructed in the background rather than on the main thread. `YES` by default. + */ +@property (nonatomic, assign) BOOL automaticallyInflatesResponseImage; +#endif + +@end + +#pragma mark - + +/** + `AFCompoundSerializer` is a subclass of `AFHTTPResponseSerializer` that delegates the response serialization to the first `AFHTTPResponseSerializer` object that returns an object for `responseObjectForResponse:data:error:`, falling back on the default behavior of `AFHTTPResponseSerializer`. This is useful for supporting multiple potential types and structures of server responses with a single serializer. + */ +@interface AFCompoundResponseSerializer : AFHTTPResponseSerializer + +/** + The component response serializers. + */ +@property (readonly, nonatomic, copy) NSArray *responseSerializers; + +/** + Creates and returns a compound serializer comprised of the specified response serializers. + + @warning Each response serializer specified must be a subclass of `AFHTTPResponseSerializer`, and response to `-validateResponse:data:error:`. + */ ++ (instancetype)compoundSerializerWithResponseSerializers:(NSArray *)responseSerializers; + +@end + +///---------------- +/// @name Constants +///---------------- + +/** + ## Error Domains + + The following error domain is predefined. + + - `NSString * const AFURLResponseSerializationErrorDomain` + + ### Constants + + `AFURLResponseSerializationErrorDomain` + AFURLResponseSerializer errors. Error codes for `AFURLResponseSerializationErrorDomain` correspond to codes in `NSURLErrorDomain`. + */ +FOUNDATION_EXPORT NSString * const AFURLResponseSerializationErrorDomain; + +/** + ## User info dictionary keys + + These keys may exist in the user info dictionary, in addition to those defined for NSError. + + - `NSString * const AFNetworkingOperationFailingURLResponseErrorKey` + - `NSString * const AFNetworkingOperationFailingURLResponseDataErrorKey` + + ### Constants + + `AFNetworkingOperationFailingURLResponseErrorKey` + The corresponding value is an `NSURLResponse` containing the response of the operation associated with an error. This key is only present in the `AFURLResponseSerializationErrorDomain`. + + `AFNetworkingOperationFailingURLResponseDataErrorKey` + The corresponding value is an `NSData` containing the original data of the operation associated with an error. This key is only present in the `AFURLResponseSerializationErrorDomain`. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingOperationFailingURLResponseErrorKey; + +FOUNDATION_EXPORT NSString * const AFNetworkingOperationFailingURLResponseDataErrorKey; + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m b/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m new file mode 100644 index 0000000..cfa8287 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m @@ -0,0 +1,825 @@ +// AFURLResponseSerialization.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFURLResponseSerialization.h" + +#if TARGET_OS_IOS +#import +#elif TARGET_OS_WATCH +#import +#elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED) +#import +#endif + +NSString * const AFURLResponseSerializationErrorDomain = @"com.alamofire.error.serialization.response"; +NSString * const AFNetworkingOperationFailingURLResponseErrorKey = @"com.alamofire.serialization.response.error.response"; +NSString * const AFNetworkingOperationFailingURLResponseDataErrorKey = @"com.alamofire.serialization.response.error.data"; + +static NSError * AFErrorWithUnderlyingError(NSError *error, NSError *underlyingError) { + if (!error) { + return underlyingError; + } + + if (!underlyingError || error.userInfo[NSUnderlyingErrorKey]) { + return error; + } + + NSMutableDictionary *mutableUserInfo = [error.userInfo mutableCopy]; + mutableUserInfo[NSUnderlyingErrorKey] = underlyingError; + + return [[NSError alloc] initWithDomain:error.domain code:error.code userInfo:mutableUserInfo]; +} + +static BOOL AFErrorOrUnderlyingErrorHasCodeInDomain(NSError *error, NSInteger code, NSString *domain) { + if ([error.domain isEqualToString:domain] && error.code == code) { + return YES; + } else if (error.userInfo[NSUnderlyingErrorKey]) { + return AFErrorOrUnderlyingErrorHasCodeInDomain(error.userInfo[NSUnderlyingErrorKey], code, domain); + } + + return NO; +} + +static id AFJSONObjectByRemovingKeysWithNullValues(id JSONObject, NSJSONReadingOptions readingOptions) { + if ([JSONObject isKindOfClass:[NSArray class]]) { + NSMutableArray *mutableArray = [NSMutableArray arrayWithCapacity:[(NSArray *)JSONObject count]]; + for (id value in (NSArray *)JSONObject) { + [mutableArray addObject:AFJSONObjectByRemovingKeysWithNullValues(value, readingOptions)]; + } + + return (readingOptions & NSJSONReadingMutableContainers) ? mutableArray : [NSArray arrayWithArray:mutableArray]; + } else if ([JSONObject isKindOfClass:[NSDictionary class]]) { + NSMutableDictionary *mutableDictionary = [NSMutableDictionary dictionaryWithDictionary:JSONObject]; + for (id key in [(NSDictionary *)JSONObject allKeys]) { + id value = (NSDictionary *)JSONObject[key]; + if (!value || [value isEqual:[NSNull null]]) { + [mutableDictionary removeObjectForKey:key]; + } else if ([value isKindOfClass:[NSArray class]] || [value isKindOfClass:[NSDictionary class]]) { + mutableDictionary[key] = AFJSONObjectByRemovingKeysWithNullValues(value, readingOptions); + } + } + + return (readingOptions & NSJSONReadingMutableContainers) ? mutableDictionary : [NSDictionary dictionaryWithDictionary:mutableDictionary]; + } + + return JSONObject; +} + +@implementation AFHTTPResponseSerializer + ++ (instancetype)serializer { + return [[self alloc] init]; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.stringEncoding = NSUTF8StringEncoding; + + self.acceptableStatusCodes = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(200, 100)]; + self.acceptableContentTypes = nil; + + return self; +} + +#pragma mark - + +- (BOOL)validateResponse:(NSHTTPURLResponse *)response + data:(NSData *)data + error:(NSError * __autoreleasing *)error +{ + BOOL responseIsValid = YES; + NSError *validationError = nil; + + if (response && [response isKindOfClass:[NSHTTPURLResponse class]]) { + if (self.acceptableContentTypes && ![self.acceptableContentTypes containsObject:[response MIMEType]]) { + if ([data length] > 0 && [response URL]) { + NSMutableDictionary *mutableUserInfo = [@{ + NSLocalizedDescriptionKey: [NSString stringWithFormat:NSLocalizedStringFromTable(@"Request failed: unacceptable content-type: %@", @"AFNetworking", nil), [response MIMEType]], + NSURLErrorFailingURLErrorKey:[response URL], + AFNetworkingOperationFailingURLResponseErrorKey: response, + } mutableCopy]; + if (data) { + mutableUserInfo[AFNetworkingOperationFailingURLResponseDataErrorKey] = data; + } + + validationError = AFErrorWithUnderlyingError([NSError errorWithDomain:AFURLResponseSerializationErrorDomain code:NSURLErrorCannotDecodeContentData userInfo:mutableUserInfo], validationError); + } + + responseIsValid = NO; + } + + if (self.acceptableStatusCodes && ![self.acceptableStatusCodes containsIndex:(NSUInteger)response.statusCode] && [response URL]) { + NSMutableDictionary *mutableUserInfo = [@{ + NSLocalizedDescriptionKey: [NSString stringWithFormat:NSLocalizedStringFromTable(@"Request failed: %@ (%ld)", @"AFNetworking", nil), [NSHTTPURLResponse localizedStringForStatusCode:response.statusCode], (long)response.statusCode], + NSURLErrorFailingURLErrorKey:[response URL], + AFNetworkingOperationFailingURLResponseErrorKey: response, + } mutableCopy]; + + if (data) { + mutableUserInfo[AFNetworkingOperationFailingURLResponseDataErrorKey] = data; + } + + validationError = AFErrorWithUnderlyingError([NSError errorWithDomain:AFURLResponseSerializationErrorDomain code:NSURLErrorBadServerResponse userInfo:mutableUserInfo], validationError); + + responseIsValid = NO; + } + } + + if (error && !responseIsValid) { + *error = validationError; + } + + return responseIsValid; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + [self validateResponse:(NSHTTPURLResponse *)response data:data error:error]; + + return data; +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + self = [self init]; + if (!self) { + return nil; + } + + self.acceptableStatusCodes = [decoder decodeObjectOfClass:[NSIndexSet class] forKey:NSStringFromSelector(@selector(acceptableStatusCodes))]; + self.acceptableContentTypes = [decoder decodeObjectOfClass:[NSIndexSet class] forKey:NSStringFromSelector(@selector(acceptableContentTypes))]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [coder encodeObject:self.acceptableStatusCodes forKey:NSStringFromSelector(@selector(acceptableStatusCodes))]; + [coder encodeObject:self.acceptableContentTypes forKey:NSStringFromSelector(@selector(acceptableContentTypes))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFHTTPResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.acceptableStatusCodes = [self.acceptableStatusCodes copyWithZone:zone]; + serializer.acceptableContentTypes = [self.acceptableContentTypes copyWithZone:zone]; + + return serializer; +} + +@end + +#pragma mark - + +@implementation AFJSONResponseSerializer + ++ (instancetype)serializer { + return [self serializerWithReadingOptions:(NSJSONReadingOptions)0]; +} + ++ (instancetype)serializerWithReadingOptions:(NSJSONReadingOptions)readingOptions { + AFJSONResponseSerializer *serializer = [[self alloc] init]; + serializer.readingOptions = readingOptions; + + return serializer; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.acceptableContentTypes = [NSSet setWithObjects:@"application/json", @"text/json", @"text/javascript", nil]; + + return self; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + if (![self validateResponse:(NSHTTPURLResponse *)response data:data error:error]) { + if (!error || AFErrorOrUnderlyingErrorHasCodeInDomain(*error, NSURLErrorCannotDecodeContentData, AFURLResponseSerializationErrorDomain)) { + return nil; + } + } + + // Workaround for behavior of Rails to return a single space for `head :ok` (a workaround for a bug in Safari), which is not interpreted as valid input by NSJSONSerialization. + // See https://github.com/rails/rails/issues/1742 + NSStringEncoding stringEncoding = self.stringEncoding; + if (response.textEncodingName) { + CFStringEncoding encoding = CFStringConvertIANACharSetNameToEncoding((CFStringRef)response.textEncodingName); + if (encoding != kCFStringEncodingInvalidId) { + stringEncoding = CFStringConvertEncodingToNSStringEncoding(encoding); + } + } + + id responseObject = nil; + NSError *serializationError = nil; + @autoreleasepool { + NSString *responseString = [[NSString alloc] initWithData:data encoding:stringEncoding]; + if (responseString && ![responseString isEqualToString:@" "]) { + // Workaround for a bug in NSJSONSerialization when Unicode character escape codes are used instead of the actual character + // See http://stackoverflow.com/a/12843465/157142 + data = [responseString dataUsingEncoding:NSUTF8StringEncoding]; + + if (data) { + if ([data length] > 0) { + responseObject = [NSJSONSerialization JSONObjectWithData:data options:self.readingOptions error:&serializationError]; + } else { + return nil; + } + } else { + NSDictionary *userInfo = @{ + NSLocalizedDescriptionKey: NSLocalizedStringFromTable(@"Data failed decoding as a UTF-8 string", @"AFNetworking", nil), + NSLocalizedFailureReasonErrorKey: [NSString stringWithFormat:NSLocalizedStringFromTable(@"Could not decode string: %@", @"AFNetworking", nil), responseString] + }; + + serializationError = [NSError errorWithDomain:AFURLResponseSerializationErrorDomain code:NSURLErrorCannotDecodeContentData userInfo:userInfo]; + } + } + } + + if (self.removesKeysWithNullValues && responseObject) { + responseObject = AFJSONObjectByRemovingKeysWithNullValues(responseObject, self.readingOptions); + } + + if (error) { + *error = AFErrorWithUnderlyingError(serializationError, *error); + } + + return responseObject; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.readingOptions = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(readingOptions))] unsignedIntegerValue]; + self.removesKeysWithNullValues = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(removesKeysWithNullValues))] boolValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:@(self.readingOptions) forKey:NSStringFromSelector(@selector(readingOptions))]; + [coder encodeObject:@(self.removesKeysWithNullValues) forKey:NSStringFromSelector(@selector(removesKeysWithNullValues))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFJSONResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.readingOptions = self.readingOptions; + serializer.removesKeysWithNullValues = self.removesKeysWithNullValues; + + return serializer; +} + +@end + +#pragma mark - + +@implementation AFXMLParserResponseSerializer + ++ (instancetype)serializer { + AFXMLParserResponseSerializer *serializer = [[self alloc] init]; + + return serializer; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.acceptableContentTypes = [[NSSet alloc] initWithObjects:@"application/xml", @"text/xml", nil]; + + return self; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSHTTPURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + if (![self validateResponse:(NSHTTPURLResponse *)response data:data error:error]) { + if (!error || AFErrorOrUnderlyingErrorHasCodeInDomain(*error, NSURLErrorCannotDecodeContentData, AFURLResponseSerializationErrorDomain)) { + return nil; + } + } + + return [[NSXMLParser alloc] initWithData:data]; +} + +@end + +#pragma mark - + +#ifdef __MAC_OS_X_VERSION_MIN_REQUIRED + +@implementation AFXMLDocumentResponseSerializer + ++ (instancetype)serializer { + return [self serializerWithXMLDocumentOptions:0]; +} + ++ (instancetype)serializerWithXMLDocumentOptions:(NSUInteger)mask { + AFXMLDocumentResponseSerializer *serializer = [[self alloc] init]; + serializer.options = mask; + + return serializer; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.acceptableContentTypes = [[NSSet alloc] initWithObjects:@"application/xml", @"text/xml", nil]; + + return self; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + if (![self validateResponse:(NSHTTPURLResponse *)response data:data error:error]) { + if (!error || AFErrorOrUnderlyingErrorHasCodeInDomain(*error, NSURLErrorCannotDecodeContentData, AFURLResponseSerializationErrorDomain)) { + return nil; + } + } + + NSError *serializationError = nil; + NSXMLDocument *document = [[NSXMLDocument alloc] initWithData:data options:self.options error:&serializationError]; + + if (error) { + *error = AFErrorWithUnderlyingError(serializationError, *error); + } + + return document; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.options = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(options))] unsignedIntegerValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:@(self.options) forKey:NSStringFromSelector(@selector(options))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFXMLDocumentResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.options = self.options; + + return serializer; +} + +@end + +#endif + +#pragma mark - + +@implementation AFPropertyListResponseSerializer + ++ (instancetype)serializer { + return [self serializerWithFormat:NSPropertyListXMLFormat_v1_0 readOptions:0]; +} + ++ (instancetype)serializerWithFormat:(NSPropertyListFormat)format + readOptions:(NSPropertyListReadOptions)readOptions +{ + AFPropertyListResponseSerializer *serializer = [[self alloc] init]; + serializer.format = format; + serializer.readOptions = readOptions; + + return serializer; +} + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.acceptableContentTypes = [[NSSet alloc] initWithObjects:@"application/x-plist", nil]; + + return self; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + if (![self validateResponse:(NSHTTPURLResponse *)response data:data error:error]) { + if (!error || AFErrorOrUnderlyingErrorHasCodeInDomain(*error, NSURLErrorCannotDecodeContentData, AFURLResponseSerializationErrorDomain)) { + return nil; + } + } + + id responseObject; + NSError *serializationError = nil; + + if (data) { + responseObject = [NSPropertyListSerialization propertyListWithData:data options:self.readOptions format:NULL error:&serializationError]; + } + + if (error) { + *error = AFErrorWithUnderlyingError(serializationError, *error); + } + + return responseObject; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.format = (NSPropertyListFormat)[[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(format))] unsignedIntegerValue]; + self.readOptions = [[decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(readOptions))] unsignedIntegerValue]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:@(self.format) forKey:NSStringFromSelector(@selector(format))]; + [coder encodeObject:@(self.readOptions) forKey:NSStringFromSelector(@selector(readOptions))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFPropertyListResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.format = self.format; + serializer.readOptions = self.readOptions; + + return serializer; +} + +@end + +#pragma mark - + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +#import + +@interface UIImage (AFNetworkingSafeImageLoading) ++ (UIImage *)af_safeImageWithData:(NSData *)data; +@end + +static NSLock* imageLock = nil; + +@implementation UIImage (AFNetworkingSafeImageLoading) + ++ (UIImage *)af_safeImageWithData:(NSData *)data { + UIImage* image = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + imageLock = [[NSLock alloc] init]; + }); + + [imageLock lock]; + image = [UIImage imageWithData:data]; + [imageLock unlock]; + return image; +} + +@end + +static UIImage * AFImageWithDataAtScale(NSData *data, CGFloat scale) { + UIImage *image = [UIImage af_safeImageWithData:data]; + if (image.images) { + return image; + } + + return [[UIImage alloc] initWithCGImage:[image CGImage] scale:scale orientation:image.imageOrientation]; +} + +static UIImage * AFInflatedImageFromResponseWithDataAtScale(NSHTTPURLResponse *response, NSData *data, CGFloat scale) { + if (!data || [data length] == 0) { + return nil; + } + + CGImageRef imageRef = NULL; + CGDataProviderRef dataProvider = CGDataProviderCreateWithCFData((__bridge CFDataRef)data); + + if ([response.MIMEType isEqualToString:@"image/png"]) { + imageRef = CGImageCreateWithPNGDataProvider(dataProvider, NULL, true, kCGRenderingIntentDefault); + } else if ([response.MIMEType isEqualToString:@"image/jpeg"]) { + imageRef = CGImageCreateWithJPEGDataProvider(dataProvider, NULL, true, kCGRenderingIntentDefault); + + if (imageRef) { + CGColorSpaceRef imageColorSpace = CGImageGetColorSpace(imageRef); + CGColorSpaceModel imageColorSpaceModel = CGColorSpaceGetModel(imageColorSpace); + + // CGImageCreateWithJPEGDataProvider does not properly handle CMKY, so fall back to AFImageWithDataAtScale + if (imageColorSpaceModel == kCGColorSpaceModelCMYK) { + CGImageRelease(imageRef); + imageRef = NULL; + } + } + } + + CGDataProviderRelease(dataProvider); + + UIImage *image = AFImageWithDataAtScale(data, scale); + if (!imageRef) { + if (image.images || !image) { + return image; + } + + imageRef = CGImageCreateCopy([image CGImage]); + if (!imageRef) { + return nil; + } + } + + size_t width = CGImageGetWidth(imageRef); + size_t height = CGImageGetHeight(imageRef); + size_t bitsPerComponent = CGImageGetBitsPerComponent(imageRef); + + if (width * height > 1024 * 1024 || bitsPerComponent > 8) { + CGImageRelease(imageRef); + + return image; + } + + // CGImageGetBytesPerRow() calculates incorrectly in iOS 5.0, so defer to CGBitmapContextCreate + size_t bytesPerRow = 0; + CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); + CGColorSpaceModel colorSpaceModel = CGColorSpaceGetModel(colorSpace); + CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(imageRef); + + if (colorSpaceModel == kCGColorSpaceModelRGB) { + uint32_t alpha = (bitmapInfo & kCGBitmapAlphaInfoMask); +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wassign-enum" + if (alpha == kCGImageAlphaNone) { + bitmapInfo &= ~kCGBitmapAlphaInfoMask; + bitmapInfo |= kCGImageAlphaNoneSkipFirst; + } else if (!(alpha == kCGImageAlphaNoneSkipFirst || alpha == kCGImageAlphaNoneSkipLast)) { + bitmapInfo &= ~kCGBitmapAlphaInfoMask; + bitmapInfo |= kCGImageAlphaPremultipliedFirst; + } +#pragma clang diagnostic pop + } + + CGContextRef context = CGBitmapContextCreate(NULL, width, height, bitsPerComponent, bytesPerRow, colorSpace, bitmapInfo); + + CGColorSpaceRelease(colorSpace); + + if (!context) { + CGImageRelease(imageRef); + + return image; + } + + CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, width, height), imageRef); + CGImageRef inflatedImageRef = CGBitmapContextCreateImage(context); + + CGContextRelease(context); + + UIImage *inflatedImage = [[UIImage alloc] initWithCGImage:inflatedImageRef scale:scale orientation:image.imageOrientation]; + + CGImageRelease(inflatedImageRef); + CGImageRelease(imageRef); + + return inflatedImage; +} +#endif + + +@implementation AFImageResponseSerializer + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.acceptableContentTypes = [[NSSet alloc] initWithObjects:@"image/tiff", @"image/jpeg", @"image/gif", @"image/png", @"image/ico", @"image/x-icon", @"image/bmp", @"image/x-bmp", @"image/x-xbitmap", @"image/x-win-bitmap", nil]; + +#if TARGET_OS_IOS + self.imageScale = [[UIScreen mainScreen] scale]; + self.automaticallyInflatesResponseImage = YES; +#elif TARGET_OS_WATCH + self.imageScale = [[WKInterfaceDevice currentDevice] screenScale]; + self.automaticallyInflatesResponseImage = YES; +#endif + + return self; +} + +#pragma mark - AFURLResponseSerializer + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + if (![self validateResponse:(NSHTTPURLResponse *)response data:data error:error]) { + if (!error || AFErrorOrUnderlyingErrorHasCodeInDomain(*error, NSURLErrorCannotDecodeContentData, AFURLResponseSerializationErrorDomain)) { + return nil; + } + } + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + if (self.automaticallyInflatesResponseImage) { + return AFInflatedImageFromResponseWithDataAtScale((NSHTTPURLResponse *)response, data, self.imageScale); + } else { + return AFImageWithDataAtScale(data, self.imageScale); + } +#elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED) + // Ensure that the image is set to it's correct pixel width and height + NSBitmapImageRep *bitimage = [[NSBitmapImageRep alloc] initWithData:data]; + NSImage *image = [[NSImage alloc] initWithSize:NSMakeSize([bitimage pixelsWide], [bitimage pixelsHigh])]; + [image addRepresentation:bitimage]; + + return image; +#endif + + return nil; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + NSNumber *imageScale = [decoder decodeObjectOfClass:[NSNumber class] forKey:NSStringFromSelector(@selector(imageScale))]; +#if CGFLOAT_IS_DOUBLE + self.imageScale = [imageScale doubleValue]; +#else + self.imageScale = [imageScale floatValue]; +#endif + + self.automaticallyInflatesResponseImage = [decoder decodeBoolForKey:NSStringFromSelector(@selector(automaticallyInflatesResponseImage))]; +#endif + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + [coder encodeObject:@(self.imageScale) forKey:NSStringFromSelector(@selector(imageScale))]; + [coder encodeBool:self.automaticallyInflatesResponseImage forKey:NSStringFromSelector(@selector(automaticallyInflatesResponseImage))]; +#endif +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFImageResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + serializer.imageScale = self.imageScale; + serializer.automaticallyInflatesResponseImage = self.automaticallyInflatesResponseImage; +#endif + + return serializer; +} + +@end + +#pragma mark - + +@interface AFCompoundResponseSerializer () +@property (readwrite, nonatomic, copy) NSArray *responseSerializers; +@end + +@implementation AFCompoundResponseSerializer + ++ (instancetype)compoundSerializerWithResponseSerializers:(NSArray *)responseSerializers { + AFCompoundResponseSerializer *serializer = [[self alloc] init]; + serializer.responseSerializers = responseSerializers; + + return serializer; +} + +#pragma mark - AFURLResponseSerialization + +- (id)responseObjectForResponse:(NSURLResponse *)response + data:(NSData *)data + error:(NSError *__autoreleasing *)error +{ + for (id serializer in self.responseSerializers) { + if (![serializer isKindOfClass:[AFHTTPResponseSerializer class]]) { + continue; + } + + NSError *serializerError = nil; + id responseObject = [serializer responseObjectForResponse:response data:data error:&serializerError]; + if (responseObject) { + if (error) { + *error = AFErrorWithUnderlyingError(serializerError, *error); + } + + return responseObject; + } + } + + return [super responseObjectForResponse:response data:data error:error]; +} + +#pragma mark - NSSecureCoding + +- (id)initWithCoder:(NSCoder *)decoder { + self = [super initWithCoder:decoder]; + if (!self) { + return nil; + } + + self.responseSerializers = [decoder decodeObjectOfClass:[NSArray class] forKey:NSStringFromSelector(@selector(responseSerializers))]; + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [super encodeWithCoder:coder]; + + [coder encodeObject:self.responseSerializers forKey:NSStringFromSelector(@selector(responseSerializers))]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + AFCompoundResponseSerializer *serializer = [[[self class] allocWithZone:zone] init]; + serializer.responseSerializers = self.responseSerializers; + + return serializer; +} + +@end diff --git a/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h b/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h new file mode 100644 index 0000000..4498c89 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h @@ -0,0 +1,554 @@ +// AFURLSessionManager.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import "AFURLResponseSerialization.h" +#import "AFURLRequestSerialization.h" +#import "AFSecurityPolicy.h" +#if !TARGET_OS_WATCH +#import "AFNetworkReachabilityManager.h" +#endif + +#ifndef NS_DESIGNATED_INITIALIZER +#if __has_attribute(objc_designated_initializer) +#define NS_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +#else +#define NS_DESIGNATED_INITIALIZER +#endif +#endif + +/** + `AFURLSessionManager` creates and manages an `NSURLSession` object based on a specified `NSURLSessionConfiguration` object, which conforms to ``, ``, ``, and ``. + + ## Subclassing Notes + + This is the base class for `AFHTTPSessionManager`, which adds functionality specific to making HTTP requests. If you are looking to extend `AFURLSessionManager` specifically for HTTP, consider subclassing `AFHTTPSessionManager` instead. + + ## NSURLSession & NSURLSessionTask Delegate Methods + + `AFURLSessionManager` implements the following delegate methods: + + ### `NSURLSessionDelegate` + + - `URLSession:didBecomeInvalidWithError:` + - `URLSession:didReceiveChallenge:completionHandler:` + - `URLSessionDidFinishEventsForBackgroundURLSession:` + + ### `NSURLSessionTaskDelegate` + + - `URLSession:willPerformHTTPRedirection:newRequest:completionHandler:` + - `URLSession:task:didReceiveChallenge:completionHandler:` + - `URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:` + - `URLSession:task:didCompleteWithError:` + + ### `NSURLSessionDataDelegate` + + - `URLSession:dataTask:didReceiveResponse:completionHandler:` + - `URLSession:dataTask:didBecomeDownloadTask:` + - `URLSession:dataTask:didReceiveData:` + - `URLSession:dataTask:willCacheResponse:completionHandler:` + + ### `NSURLSessionDownloadDelegate` + + - `URLSession:downloadTask:didFinishDownloadingToURL:` + - `URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesWritten:totalBytesExpectedToWrite:` + - `URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:` + + If any of these methods are overridden in a subclass, they _must_ call the `super` implementation first. + + ## Network Reachability Monitoring + + Network reachability status and change monitoring is available through the `reachabilityManager` property. Applications may choose to monitor network reachability conditions in order to prevent or suspend any outbound requests. See `AFNetworkReachabilityManager` for more details. + + ## NSCoding Caveats + + - Encoded managers do not include any block properties. Be sure to set delegate callback blocks when using `-initWithCoder:` or `NSKeyedUnarchiver`. + + ## NSCopying Caveats + + - `-copy` and `-copyWithZone:` return a new manager with a new `NSURLSession` created from the configuration of the original. + - Operation copies do not include any delegate callback blocks, as they often strongly captures a reference to `self`, which would otherwise have the unintuitive side-effect of pointing to the _original_ session manager when copied. + + @warning Managers for background sessions must be owned for the duration of their use. This can be accomplished by creating an application-wide or shared singleton instance. + */ + +NS_ASSUME_NONNULL_BEGIN + +#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) || TARGET_OS_WATCH + +@interface AFURLSessionManager : NSObject + +/** + The managed session. + */ +@property (readonly, nonatomic, strong) NSURLSession *session; + +/** + The operation queue on which delegate callbacks are run. + */ +@property (readonly, nonatomic, strong) NSOperationQueue *operationQueue; + +/** + Responses sent from the server in data tasks created with `dataTaskWithRequest:success:failure:` and run using the `GET` / `POST` / et al. convenience methods are automatically validated and serialized by the response serializer. By default, this property is set to an instance of `AFJSONResponseSerializer`. + + @warning `responseSerializer` must not be `nil`. + */ +@property (nonatomic, strong) id responseSerializer; + +///------------------------------- +/// @name Managing Security Policy +///------------------------------- + +/** + The security policy used by created request operations to evaluate server trust for secure connections. `AFURLSessionManager` uses the `defaultPolicy` unless otherwise specified. + */ +@property (nonatomic, strong) AFSecurityPolicy *securityPolicy; + +#if !TARGET_OS_WATCH +///-------------------------------------- +/// @name Monitoring Network Reachability +///-------------------------------------- + +/** + The network reachability manager. `AFURLSessionManager` uses the `sharedManager` by default. + */ +@property (readwrite, nonatomic, strong) AFNetworkReachabilityManager *reachabilityManager; +#endif + +///---------------------------- +/// @name Getting Session Tasks +///---------------------------- + +/** + The data, upload, and download tasks currently run by the managed session. + */ +@property (readonly, nonatomic, strong) NSArray *tasks; + +/** + The data tasks currently run by the managed session. + */ +@property (readonly, nonatomic, strong) NSArray *dataTasks; + +/** + The upload tasks currently run by the managed session. + */ +@property (readonly, nonatomic, strong) NSArray *uploadTasks; + +/** + The download tasks currently run by the managed session. + */ +@property (readonly, nonatomic, strong) NSArray *downloadTasks; + +///------------------------------- +/// @name Managing Callback Queues +///------------------------------- + +/** + The dispatch queue for `completionBlock`. If `NULL` (default), the main queue is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_queue_t completionQueue; +#else +@property (nonatomic, assign, nullable) dispatch_queue_t completionQueue; +#endif + +/** + The dispatch group for `completionBlock`. If `NULL` (default), a private dispatch group is used. + */ +#if OS_OBJECT_USE_OBJC +@property (nonatomic, strong, nullable) dispatch_group_t completionGroup; +#else +@property (nonatomic, assign, nullable) dispatch_group_t completionGroup; +#endif + +///--------------------------------- +/// @name Working Around System Bugs +///--------------------------------- + +/** + Whether to attempt to retry creation of upload tasks for background sessions when initial call returns `nil`. `NO` by default. + + @bug As of iOS 7.0, there is a bug where upload tasks created for background tasks are sometimes `nil`. As a workaround, if this property is `YES`, AFNetworking will follow Apple's recommendation to try creating the task again. + + @see https://github.com/AFNetworking/AFNetworking/issues/1675 + */ +@property (nonatomic, assign) BOOL attemptsToRecreateUploadTasksForBackgroundSessions; + +///--------------------- +/// @name Initialization +///--------------------- + +/** + Creates and returns a manager for a session created with the specified configuration. This is the designated initializer. + + @param configuration The configuration used to create the managed session. + + @return A manager for a newly-created session. + */ +- (instancetype)initWithSessionConfiguration:(nullable NSURLSessionConfiguration *)configuration NS_DESIGNATED_INITIALIZER; + +/** + Invalidates the managed session, optionally canceling pending tasks. + + @param cancelPendingTasks Whether or not to cancel pending tasks. + */ +- (void)invalidateSessionCancelingTasks:(BOOL)cancelPendingTasks; + +///------------------------- +/// @name Running Data Tasks +///------------------------- + +/** + Creates an `NSURLSessionDataTask` with the specified request. + + @param request The HTTP request for the request. + @param completionHandler A block object to be executed when the task finishes. This block has no return value and takes three arguments: the server response, the response object created by that serializer, and the error that occurred, if any. + */ +- (NSURLSessionDataTask *)dataTaskWithRequest:(NSURLRequest *)request + completionHandler:(nullable void (^)(NSURLResponse *response, id __nullable responseObject, NSError * __nullable error))completionHandler; + +///--------------------------- +/// @name Running Upload Tasks +///--------------------------- + +/** + Creates an `NSURLSessionUploadTask` with the specified request for a local file. + + @param request The HTTP request for the request. + @param fileURL A URL to the local file to be uploaded. + @param progress A progress object monitoring the current upload progress. + @param completionHandler A block object to be executed when the task finishes. This block has no return value and takes three arguments: the server response, the response object created by that serializer, and the error that occurred, if any. + + @see `attemptsToRecreateUploadTasksForBackgroundSessions` + */ +- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request + fromFile:(NSURL *)fileURL + progress:(NSProgress * __nullable __autoreleasing * __nullable)progress + completionHandler:(nullable void (^)(NSURLResponse *response, id __nullable responseObject, NSError * __nullable error))completionHandler; + +/** + Creates an `NSURLSessionUploadTask` with the specified request for an HTTP body. + + @param request The HTTP request for the request. + @param bodyData A data object containing the HTTP body to be uploaded. + @param progress A progress object monitoring the current upload progress. + @param completionHandler A block object to be executed when the task finishes. This block has no return value and takes three arguments: the server response, the response object created by that serializer, and the error that occurred, if any. + */ +- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request + fromData:(nullable NSData *)bodyData + progress:(NSProgress * __nullable __autoreleasing * __nullable)progress + completionHandler:(nullable void (^)(NSURLResponse *response, id __nullable responseObject, NSError * __nullable error))completionHandler; + +/** + Creates an `NSURLSessionUploadTask` with the specified streaming request. + + @param request The HTTP request for the request. + @param progress A progress object monitoring the current upload progress. + @param completionHandler A block object to be executed when the task finishes. This block has no return value and takes three arguments: the server response, the response object created by that serializer, and the error that occurred, if any. + */ +- (NSURLSessionUploadTask *)uploadTaskWithStreamedRequest:(NSURLRequest *)request + progress:(NSProgress * __nullable __autoreleasing * __nullable)progress + completionHandler:(nullable void (^)(NSURLResponse *response, id __nullable responseObject, NSError * __nullable error))completionHandler; + +///----------------------------- +/// @name Running Download Tasks +///----------------------------- + +/** + Creates an `NSURLSessionDownloadTask` with the specified request. + + @param request The HTTP request for the request. + @param progress A progress object monitoring the current download progress. + @param destination A block object to be executed in order to determine the destination of the downloaded file. This block takes two arguments, the target path & the server response, and returns the desired file URL of the resulting download. The temporary file used during the download will be automatically deleted after being moved to the returned URL. + @param completionHandler A block to be executed when a task finishes. This block has no return value and takes three arguments: the server response, the path of the downloaded file, and the error describing the network or parsing error that occurred, if any. + + @warning If using a background `NSURLSessionConfiguration` on iOS, these blocks will be lost when the app is terminated. Background sessions may prefer to use `-setDownloadTaskDidFinishDownloadingBlock:` to specify the URL for saving the downloaded file, rather than the destination block of this method. + */ +- (NSURLSessionDownloadTask *)downloadTaskWithRequest:(NSURLRequest *)request + progress:(NSProgress * __nullable __autoreleasing * __nullable)progress + destination:(nullable NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination + completionHandler:(nullable void (^)(NSURLResponse *response, NSURL * __nullable filePath, NSError * __nullable error))completionHandler; + +/** + Creates an `NSURLSessionDownloadTask` with the specified resume data. + + @param resumeData The data used to resume downloading. + @param progress A progress object monitoring the current download progress. + @param destination A block object to be executed in order to determine the destination of the downloaded file. This block takes two arguments, the target path & the server response, and returns the desired file URL of the resulting download. The temporary file used during the download will be automatically deleted after being moved to the returned URL. + @param completionHandler A block to be executed when a task finishes. This block has no return value and takes three arguments: the server response, the path of the downloaded file, and the error describing the network or parsing error that occurred, if any. + */ +- (NSURLSessionDownloadTask *)downloadTaskWithResumeData:(NSData *)resumeData + progress:(NSProgress * __nullable __autoreleasing * __nullable)progress + destination:(nullable NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination + completionHandler:(nullable void (^)(NSURLResponse *response, NSURL * __nullable filePath, NSError * __nullable error))completionHandler; + +///--------------------------------- +/// @name Getting Progress for Tasks +///--------------------------------- + +/** + Returns the upload progress of the specified task. + + @param uploadTask The session upload task. Must not be `nil`. + + @return An `NSProgress` object reporting the upload progress of a task, or `nil` if the progress is unavailable. + */ +- (nullable NSProgress *)uploadProgressForTask:(NSURLSessionUploadTask *)uploadTask; + +/** + Returns the download progress of the specified task. + + @param downloadTask The session download task. Must not be `nil`. + + @return An `NSProgress` object reporting the download progress of a task, or `nil` if the progress is unavailable. + */ +- (nullable NSProgress *)downloadProgressForTask:(NSURLSessionDownloadTask *)downloadTask; + +///----------------------------------------- +/// @name Setting Session Delegate Callbacks +///----------------------------------------- + +/** + Sets a block to be executed when the managed session becomes invalid, as handled by the `NSURLSessionDelegate` method `URLSession:didBecomeInvalidWithError:`. + + @param block A block object to be executed when the managed session becomes invalid. The block has no return value, and takes two arguments: the session, and the error related to the cause of invalidation. + */ +- (void)setSessionDidBecomeInvalidBlock:(nullable void (^)(NSURLSession *session, NSError *error))block; + +/** + Sets a block to be executed when a connection level authentication challenge has occurred, as handled by the `NSURLSessionDelegate` method `URLSession:didReceiveChallenge:completionHandler:`. + + @param block A block object to be executed when a connection level authentication challenge has occurred. The block returns the disposition of the authentication challenge, and takes three arguments: the session, the authentication challenge, and a pointer to the credential that should be used to resolve the challenge. + */ +- (void)setSessionDidReceiveAuthenticationChallengeBlock:(nullable NSURLSessionAuthChallengeDisposition (^)(NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __nullable __autoreleasing * __nullable credential))block; + +///-------------------------------------- +/// @name Setting Task Delegate Callbacks +///-------------------------------------- + +/** + Sets a block to be executed when a task requires a new request body stream to send to the remote server, as handled by the `NSURLSessionTaskDelegate` method `URLSession:task:needNewBodyStream:`. + + @param block A block object to be executed when a task requires a new request body stream. + */ +- (void)setTaskNeedNewBodyStreamBlock:(nullable NSInputStream * (^)(NSURLSession *session, NSURLSessionTask *task))block; + +/** + Sets a block to be executed when an HTTP request is attempting to perform a redirection to a different URL, as handled by the `NSURLSessionTaskDelegate` method `URLSession:willPerformHTTPRedirection:newRequest:completionHandler:`. + + @param block A block object to be executed when an HTTP request is attempting to perform a redirection to a different URL. The block returns the request to be made for the redirection, and takes four arguments: the session, the task, the redirection response, and the request corresponding to the redirection response. + */ +- (void)setTaskWillPerformHTTPRedirectionBlock:(nullable NSURLRequest * (^)(NSURLSession *session, NSURLSessionTask *task, NSURLResponse *response, NSURLRequest *request))block; + +/** + Sets a block to be executed when a session task has received a request specific authentication challenge, as handled by the `NSURLSessionTaskDelegate` method `URLSession:task:didReceiveChallenge:completionHandler:`. + + @param block A block object to be executed when a session task has received a request specific authentication challenge. The block returns the disposition of the authentication challenge, and takes four arguments: the session, the task, the authentication challenge, and a pointer to the credential that should be used to resolve the challenge. + */ +- (void)setTaskDidReceiveAuthenticationChallengeBlock:(nullable NSURLSessionAuthChallengeDisposition (^)(NSURLSession *session, NSURLSessionTask *task, NSURLAuthenticationChallenge *challenge, NSURLCredential * __nullable __autoreleasing * __nullable credential))block; + +/** + Sets a block to be executed periodically to track upload progress, as handled by the `NSURLSessionTaskDelegate` method `URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:`. + + @param block A block object to be called when an undetermined number of bytes have been uploaded to the server. This block has no return value and takes five arguments: the session, the task, the number of bytes written since the last time the upload progress block was called, the total bytes written, and the total bytes expected to be written during the request, as initially determined by the length of the HTTP body. This block may be called multiple times, and will execute on the main thread. + */ +- (void)setTaskDidSendBodyDataBlock:(nullable void (^)(NSURLSession *session, NSURLSessionTask *task, int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend))block; + +/** + Sets a block to be executed as the last message related to a specific task, as handled by the `NSURLSessionTaskDelegate` method `URLSession:task:didCompleteWithError:`. + + @param block A block object to be executed when a session task is completed. The block has no return value, and takes three arguments: the session, the task, and any error that occurred in the process of executing the task. + */ +- (void)setTaskDidCompleteBlock:(nullable void (^)(NSURLSession *session, NSURLSessionTask *task, NSError * __nullable error))block; + +///------------------------------------------- +/// @name Setting Data Task Delegate Callbacks +///------------------------------------------- + +/** + Sets a block to be executed when a data task has received a response, as handled by the `NSURLSessionDataDelegate` method `URLSession:dataTask:didReceiveResponse:completionHandler:`. + + @param block A block object to be executed when a data task has received a response. The block returns the disposition of the session response, and takes three arguments: the session, the data task, and the received response. + */ +- (void)setDataTaskDidReceiveResponseBlock:(nullable NSURLSessionResponseDisposition (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLResponse *response))block; + +/** + Sets a block to be executed when a data task has become a download task, as handled by the `NSURLSessionDataDelegate` method `URLSession:dataTask:didBecomeDownloadTask:`. + + @param block A block object to be executed when a data task has become a download task. The block has no return value, and takes three arguments: the session, the data task, and the download task it has become. + */ +- (void)setDataTaskDidBecomeDownloadTaskBlock:(nullable void (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLSessionDownloadTask *downloadTask))block; + +/** + Sets a block to be executed when a data task receives data, as handled by the `NSURLSessionDataDelegate` method `URLSession:dataTask:didReceiveData:`. + + @param block A block object to be called when an undetermined number of bytes have been downloaded from the server. This block has no return value and takes three arguments: the session, the data task, and the data received. This block may be called multiple times, and will execute on the session manager operation queue. + */ +- (void)setDataTaskDidReceiveDataBlock:(nullable void (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSData *data))block; + +/** + Sets a block to be executed to determine the caching behavior of a data task, as handled by the `NSURLSessionDataDelegate` method `URLSession:dataTask:willCacheResponse:completionHandler:`. + + @param block A block object to be executed to determine the caching behavior of a data task. The block returns the response to cache, and takes three arguments: the session, the data task, and the proposed cached URL response. + */ +- (void)setDataTaskWillCacheResponseBlock:(nullable NSCachedURLResponse * (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSCachedURLResponse *proposedResponse))block; + +/** + Sets a block to be executed once all messages enqueued for a session have been delivered, as handled by the `NSURLSessionDataDelegate` method `URLSessionDidFinishEventsForBackgroundURLSession:`. + + @param block A block object to be executed once all messages enqueued for a session have been delivered. The block has no return value and takes a single argument: the session. + */ +- (void)setDidFinishEventsForBackgroundURLSessionBlock:(nullable void (^)(NSURLSession *session))block; + +///----------------------------------------------- +/// @name Setting Download Task Delegate Callbacks +///----------------------------------------------- + +/** + Sets a block to be executed when a download task has completed a download, as handled by the `NSURLSessionDownloadDelegate` method `URLSession:downloadTask:didFinishDownloadingToURL:`. + + @param block A block object to be executed when a download task has completed. The block returns the URL the download should be moved to, and takes three arguments: the session, the download task, and the temporary location of the downloaded file. If the file manager encounters an error while attempting to move the temporary file to the destination, an `AFURLSessionDownloadTaskDidFailToMoveFileNotification` will be posted, with the download task as its object, and the user info of the error. + */ +- (void)setDownloadTaskDidFinishDownloadingBlock:(nullable NSURL * __nullable (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, NSURL *location))block; + +/** + Sets a block to be executed periodically to track download progress, as handled by the `NSURLSessionDownloadDelegate` method `URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesWritten:totalBytesExpectedToWrite:`. + + @param block A block object to be called when an undetermined number of bytes have been downloaded from the server. This block has no return value and takes five arguments: the session, the download task, the number of bytes read since the last time the download progress block was called, the total bytes read, and the total bytes expected to be read during the request, as initially determined by the expected content size of the `NSHTTPURLResponse` object. This block may be called multiple times, and will execute on the session manager operation queue. + */ +- (void)setDownloadTaskDidWriteDataBlock:(nullable void (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite))block; + +/** + Sets a block to be executed when a download task has been resumed, as handled by the `NSURLSessionDownloadDelegate` method `URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:`. + + @param block A block object to be executed when a download task has been resumed. The block has no return value and takes four arguments: the session, the download task, the file offset of the resumed download, and the total number of bytes expected to be downloaded. + */ +- (void)setDownloadTaskDidResumeBlock:(nullable void (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t fileOffset, int64_t expectedTotalBytes))block; + +@end + +#endif + +///-------------------- +/// @name Notifications +///-------------------- + +/** + Posted when a task begins executing. + + @deprecated Use `AFNetworkingTaskDidResumeNotification` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidStartNotification DEPRECATED_ATTRIBUTE; + +/** + Posted when a task resumes. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidResumeNotification; + +/** + Posted when a task finishes executing. Includes a userInfo dictionary with additional information about the task. + + @deprecated Use `AFNetworkingTaskDidCompleteNotification` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishNotification DEPRECATED_ATTRIBUTE; + +/** + Posted when a task finishes executing. Includes a userInfo dictionary with additional information about the task. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteNotification; + +/** + Posted when a task suspends its execution. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidSuspendNotification; + +/** + Posted when a session is invalidated. + */ +FOUNDATION_EXPORT NSString * const AFURLSessionDidInvalidateNotification; + +/** + Posted when a session download task encountered an error when moving the temporary download file to a specified destination. + */ +FOUNDATION_EXPORT NSString * const AFURLSessionDownloadTaskDidFailToMoveFileNotification; + +/** + The raw response data of the task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if response data exists for the task. + + @deprecated Use `AFNetworkingTaskDidCompleteResponseDataKey` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishResponseDataKey DEPRECATED_ATTRIBUTE; + +/** + The raw response data of the task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if response data exists for the task. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteResponseDataKey; + +/** + The serialized response object of the task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if the response was serialized. + + @deprecated Use `AFNetworkingTaskDidCompleteSerializedResponseKey` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishSerializedResponseKey DEPRECATED_ATTRIBUTE; + +/** + The serialized response object of the task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if the response was serialized. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteSerializedResponseKey; + +/** + The response serializer used to serialize the response. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if the task has an associated response serializer. + + @deprecated Use `AFNetworkingTaskDidCompleteResponseSerializerKey` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishResponseSerializerKey DEPRECATED_ATTRIBUTE; + +/** + The response serializer used to serialize the response. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if the task has an associated response serializer. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteResponseSerializerKey; + +/** + The file path associated with the download task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if an the response data has been stored directly to disk. + + @deprecated Use `AFNetworkingTaskDidCompleteAssetPathKey` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishAssetPathKey DEPRECATED_ATTRIBUTE; + +/** + The file path associated with the download task. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if an the response data has been stored directly to disk. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteAssetPathKey; + +/** + Any error associated with the task, or the serialization of the response. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if an error exists. + + @deprecated Use `AFNetworkingTaskDidCompleteErrorKey` instead. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidFinishErrorKey DEPRECATED_ATTRIBUTE; + +/** + Any error associated with the task, or the serialization of the response. Included in the userInfo dictionary of the `AFNetworkingTaskDidFinishNotification` if an error exists. + */ +FOUNDATION_EXPORT NSString * const AFNetworkingTaskDidCompleteErrorKey; + +NS_ASSUME_NONNULL_END diff --git a/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m b/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m new file mode 100644 index 0000000..8ec0f08 --- /dev/null +++ b/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m @@ -0,0 +1,1174 @@ +// AFURLSessionManager.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFURLSessionManager.h" +#import + +#if (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000) || (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 1090) + +static dispatch_queue_t url_session_manager_creation_queue() { + static dispatch_queue_t af_url_session_manager_creation_queue; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_url_session_manager_creation_queue = dispatch_queue_create("com.alamofire.networking.session.manager.creation", DISPATCH_QUEUE_SERIAL); + }); + + return af_url_session_manager_creation_queue; +} + +static dispatch_queue_t url_session_manager_processing_queue() { + static dispatch_queue_t af_url_session_manager_processing_queue; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_url_session_manager_processing_queue = dispatch_queue_create("com.alamofire.networking.session.manager.processing", DISPATCH_QUEUE_CONCURRENT); + }); + + return af_url_session_manager_processing_queue; +} + +static dispatch_group_t url_session_manager_completion_group() { + static dispatch_group_t af_url_session_manager_completion_group; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + af_url_session_manager_completion_group = dispatch_group_create(); + }); + + return af_url_session_manager_completion_group; +} + +NSString * const AFNetworkingTaskDidResumeNotification = @"com.alamofire.networking.task.resume"; +NSString * const AFNetworkingTaskDidCompleteNotification = @"com.alamofire.networking.task.complete"; +NSString * const AFNetworkingTaskDidSuspendNotification = @"com.alamofire.networking.task.suspend"; +NSString * const AFURLSessionDidInvalidateNotification = @"com.alamofire.networking.session.invalidate"; +NSString * const AFURLSessionDownloadTaskDidFailToMoveFileNotification = @"com.alamofire.networking.session.download.file-manager-error"; + +NSString * const AFNetworkingTaskDidStartNotification = @"com.alamofire.networking.task.resume"; // Deprecated +NSString * const AFNetworkingTaskDidFinishNotification = @"com.alamofire.networking.task.complete"; // Deprecated + +NSString * const AFNetworkingTaskDidCompleteSerializedResponseKey = @"com.alamofire.networking.task.complete.serializedresponse"; +NSString * const AFNetworkingTaskDidCompleteResponseSerializerKey = @"com.alamofire.networking.task.complete.responseserializer"; +NSString * const AFNetworkingTaskDidCompleteResponseDataKey = @"com.alamofire.networking.complete.finish.responsedata"; +NSString * const AFNetworkingTaskDidCompleteErrorKey = @"com.alamofire.networking.task.complete.error"; +NSString * const AFNetworkingTaskDidCompleteAssetPathKey = @"com.alamofire.networking.task.complete.assetpath"; + +NSString * const AFNetworkingTaskDidFinishSerializedResponseKey = @"com.alamofire.networking.task.complete.serializedresponse"; // Deprecated +NSString * const AFNetworkingTaskDidFinishResponseSerializerKey = @"com.alamofire.networking.task.complete.responseserializer"; // Deprecated +NSString * const AFNetworkingTaskDidFinishResponseDataKey = @"com.alamofire.networking.complete.finish.responsedata"; // Deprecated +NSString * const AFNetworkingTaskDidFinishErrorKey = @"com.alamofire.networking.task.complete.error"; // Deprecated +NSString * const AFNetworkingTaskDidFinishAssetPathKey = @"com.alamofire.networking.task.complete.assetpath"; // Deprecated + +static NSString * const AFURLSessionManagerLockName = @"com.alamofire.networking.session.manager.lock"; + +static NSUInteger const AFMaximumNumberOfAttemptsToRecreateBackgroundSessionUploadTask = 3; + +static void * AFTaskStateChangedContext = &AFTaskStateChangedContext; + +typedef void (^AFURLSessionDidBecomeInvalidBlock)(NSURLSession *session, NSError *error); +typedef NSURLSessionAuthChallengeDisposition (^AFURLSessionDidReceiveAuthenticationChallengeBlock)(NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential); + +typedef NSURLRequest * (^AFURLSessionTaskWillPerformHTTPRedirectionBlock)(NSURLSession *session, NSURLSessionTask *task, NSURLResponse *response, NSURLRequest *request); +typedef NSURLSessionAuthChallengeDisposition (^AFURLSessionTaskDidReceiveAuthenticationChallengeBlock)(NSURLSession *session, NSURLSessionTask *task, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential); +typedef void (^AFURLSessionDidFinishEventsForBackgroundURLSessionBlock)(NSURLSession *session); + +typedef NSInputStream * (^AFURLSessionTaskNeedNewBodyStreamBlock)(NSURLSession *session, NSURLSessionTask *task); +typedef void (^AFURLSessionTaskDidSendBodyDataBlock)(NSURLSession *session, NSURLSessionTask *task, int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend); +typedef void (^AFURLSessionTaskDidCompleteBlock)(NSURLSession *session, NSURLSessionTask *task, NSError *error); + +typedef NSURLSessionResponseDisposition (^AFURLSessionDataTaskDidReceiveResponseBlock)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLResponse *response); +typedef void (^AFURLSessionDataTaskDidBecomeDownloadTaskBlock)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLSessionDownloadTask *downloadTask); +typedef void (^AFURLSessionDataTaskDidReceiveDataBlock)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSData *data); +typedef NSCachedURLResponse * (^AFURLSessionDataTaskWillCacheResponseBlock)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSCachedURLResponse *proposedResponse); + +typedef NSURL * (^AFURLSessionDownloadTaskDidFinishDownloadingBlock)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, NSURL *location); +typedef void (^AFURLSessionDownloadTaskDidWriteDataBlock)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite); +typedef void (^AFURLSessionDownloadTaskDidResumeBlock)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t fileOffset, int64_t expectedTotalBytes); + +typedef void (^AFURLSessionTaskCompletionHandler)(NSURLResponse *response, id responseObject, NSError *error); + +#pragma mark - + +@interface AFURLSessionManagerTaskDelegate : NSObject +@property (nonatomic, weak) AFURLSessionManager *manager; +@property (nonatomic, strong) NSMutableData *mutableData; +@property (nonatomic, strong) NSProgress *progress; +@property (nonatomic, copy) NSURL *downloadFileURL; +@property (nonatomic, copy) AFURLSessionDownloadTaskDidFinishDownloadingBlock downloadTaskDidFinishDownloading; +@property (nonatomic, copy) AFURLSessionTaskCompletionHandler completionHandler; +@end + +@implementation AFURLSessionManagerTaskDelegate + +- (instancetype)init { + self = [super init]; + if (!self) { + return nil; + } + + self.mutableData = [NSMutableData data]; + + self.progress = [NSProgress progressWithTotalUnitCount:0]; + + return self; +} + +#pragma mark - NSURLSessionTaskDelegate + +- (void)URLSession:(__unused NSURLSession *)session + task:(__unused NSURLSessionTask *)task + didSendBodyData:(__unused int64_t)bytesSent + totalBytesSent:(int64_t)totalBytesSent +totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend +{ + self.progress.totalUnitCount = totalBytesExpectedToSend; + self.progress.completedUnitCount = totalBytesSent; +} + +- (void)URLSession:(__unused NSURLSession *)session + task:(NSURLSessionTask *)task +didCompleteWithError:(NSError *)error +{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + __strong AFURLSessionManager *manager = self.manager; + + __block id responseObject = nil; + + __block NSMutableDictionary *userInfo = [NSMutableDictionary dictionary]; + userInfo[AFNetworkingTaskDidCompleteResponseSerializerKey] = manager.responseSerializer; + + //Performance Improvement from #2672 + NSData *data = nil; + if (self.mutableData) { + data = [self.mutableData copy]; + //We no longer need the reference, so nil it out to gain back some memory. + self.mutableData = nil; + } + + if (self.downloadFileURL) { + userInfo[AFNetworkingTaskDidCompleteAssetPathKey] = self.downloadFileURL; + } else if (data) { + userInfo[AFNetworkingTaskDidCompleteResponseDataKey] = data; + } + + if (error) { + userInfo[AFNetworkingTaskDidCompleteErrorKey] = error; + + dispatch_group_async(manager.completionGroup ?: url_session_manager_completion_group(), manager.completionQueue ?: dispatch_get_main_queue(), ^{ + if (self.completionHandler) { + self.completionHandler(task.response, responseObject, error); + } + + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingTaskDidCompleteNotification object:task userInfo:userInfo]; + }); + }); + } else { + dispatch_async(url_session_manager_processing_queue(), ^{ + NSError *serializationError = nil; + responseObject = [manager.responseSerializer responseObjectForResponse:task.response data:data error:&serializationError]; + + if (self.downloadFileURL) { + responseObject = self.downloadFileURL; + } + + if (responseObject) { + userInfo[AFNetworkingTaskDidCompleteSerializedResponseKey] = responseObject; + } + + if (serializationError) { + userInfo[AFNetworkingTaskDidCompleteErrorKey] = serializationError; + } + + dispatch_group_async(manager.completionGroup ?: url_session_manager_completion_group(), manager.completionQueue ?: dispatch_get_main_queue(), ^{ + if (self.completionHandler) { + self.completionHandler(task.response, responseObject, serializationError); + } + + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingTaskDidCompleteNotification object:task userInfo:userInfo]; + }); + }); + }); + } +#pragma clang diagnostic pop +} + +#pragma mark - NSURLSessionDataTaskDelegate + +- (void)URLSession:(__unused NSURLSession *)session + dataTask:(__unused NSURLSessionDataTask *)dataTask + didReceiveData:(NSData *)data +{ + [self.mutableData appendData:data]; +} + +#pragma mark - NSURLSessionDownloadTaskDelegate + +- (void)URLSession:(NSURLSession *)session + downloadTask:(NSURLSessionDownloadTask *)downloadTask +didFinishDownloadingToURL:(NSURL *)location +{ + NSError *fileManagerError = nil; + self.downloadFileURL = nil; + + if (self.downloadTaskDidFinishDownloading) { + self.downloadFileURL = self.downloadTaskDidFinishDownloading(session, downloadTask, location); + if (self.downloadFileURL) { + [[NSFileManager defaultManager] moveItemAtURL:location toURL:self.downloadFileURL error:&fileManagerError]; + + if (fileManagerError) { + [[NSNotificationCenter defaultCenter] postNotificationName:AFURLSessionDownloadTaskDidFailToMoveFileNotification object:downloadTask userInfo:fileManagerError.userInfo]; + } + } + } +} + +- (void)URLSession:(__unused NSURLSession *)session + downloadTask:(__unused NSURLSessionDownloadTask *)downloadTask + didWriteData:(__unused int64_t)bytesWritten + totalBytesWritten:(int64_t)totalBytesWritten +totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite +{ + self.progress.totalUnitCount = totalBytesExpectedToWrite; + self.progress.completedUnitCount = totalBytesWritten; +} + +- (void)URLSession:(__unused NSURLSession *)session + downloadTask:(__unused NSURLSessionDownloadTask *)downloadTask + didResumeAtOffset:(int64_t)fileOffset +expectedTotalBytes:(int64_t)expectedTotalBytes { + self.progress.totalUnitCount = expectedTotalBytes; + self.progress.completedUnitCount = fileOffset; +} + +@end + +#pragma mark - + +/** + * A workaround for issues related to key-value observing the `state` of an `NSURLSessionTask`. + * + * See: + * - https://github.com/AFNetworking/AFNetworking/issues/1477 + * - https://github.com/AFNetworking/AFNetworking/issues/2638 + * - https://github.com/AFNetworking/AFNetworking/pull/2702 + */ + +static inline void af_swizzleSelector(Class theClass, SEL originalSelector, SEL swizzledSelector) { + Method originalMethod = class_getInstanceMethod(theClass, originalSelector); + Method swizzledMethod = class_getInstanceMethod(theClass, swizzledSelector); + method_exchangeImplementations(originalMethod, swizzledMethod); +} + +static inline BOOL af_addMethod(Class theClass, SEL selector, Method method) { + return class_addMethod(theClass, selector, method_getImplementation(method), method_getTypeEncoding(method)); +} + +static NSString * const AFNSURLSessionTaskDidResumeNotification = @"com.alamofire.networking.nsurlsessiontask.resume"; +static NSString * const AFNSURLSessionTaskDidSuspendNotification = @"com.alamofire.networking.nsurlsessiontask.suspend"; + +@interface _AFURLSessionTaskSwizzling : NSObject + +@end + +@implementation _AFURLSessionTaskSwizzling + ++ (void)load { + /** + WARNING: Trouble Ahead + https://github.com/AFNetworking/AFNetworking/pull/2702 + */ + + if (NSClassFromString(@"NSURLSessionTask")) { + /** + iOS 7 and iOS 8 differ in NSURLSessionTask implementation, which makes the next bit of code a bit tricky. + Many Unit Tests have been built to validate as much of this behavior has possible. + Here is what we know: + - NSURLSessionTasks are implemented with class clusters, meaning the class you request from the API isn't actually the type of class you will get back. + - Simply referencing `[NSURLSessionTask class]` will not work. You need to ask an `NSURLSession` to actually create an object, and grab the class from there. + - On iOS 7, `localDataTask` is a `__NSCFLocalDataTask`, which inherits from `__NSCFLocalSessionTask`, which inherits from `__NSCFURLSessionTask`. + - On iOS 8, `localDataTask` is a `__NSCFLocalDataTask`, which inherits from `__NSCFLocalSessionTask`, which inherits from `NSURLSessionTask`. + - On iOS 7, `__NSCFLocalSessionTask` and `__NSCFURLSessionTask` are the only two classes that have their own implementations of `resume` and `suspend`, and `__NSCFLocalSessionTask` DOES NOT CALL SUPER. This means both classes need to be swizzled. + - On iOS 8, `NSURLSessionTask` is the only class that implements `resume` and `suspend`. This means this is the only class that needs to be swizzled. + - Because `NSURLSessionTask` is not involved in the class hierarchy for every version of iOS, its easier to add the swizzled methods to a dummy class and manage them there. + + Some Assumptions: + - No implementations of `resume` or `suspend` call super. If this were to change in a future version of iOS, we'd need to handle it. + - No background task classes override `resume` or `suspend` + + The current solution: + 1) Grab an instance of `__NSCFLocalDataTask` by asking an instance of `NSURLSession` for a data task. + 2) Grab a pointer to the original implementation of `af_resume` + 3) Check to see if the current class has an implementation of resume. If so, continue to step 4. + 4) Grab the super class of the current class. + 5) Grab a pointer for the current class to the current implementation of `resume`. + 6) Grab a pointer for the super class to the current implementation of `resume`. + 7) If the current class implementation of `resume` is not equal to the super class implementation of `resume` AND the current implementation of `resume` is not equal to the original implementation of `af_resume`, THEN swizzle the methods + 8) Set the current class to the super class, and repeat steps 3-8 + */ + NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration ephemeralSessionConfiguration]; + NSURLSession * session = [NSURLSession sessionWithConfiguration:configuration]; +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wnonnull" + NSURLSessionDataTask *localDataTask = [session dataTaskWithURL:nil]; +#pragma clang diagnostic pop + IMP originalAFResumeIMP = method_getImplementation(class_getInstanceMethod([self class], @selector(af_resume))); + Class currentClass = [localDataTask class]; + + while (class_getInstanceMethod(currentClass, @selector(resume))) { + Class superClass = [currentClass superclass]; + IMP classResumeIMP = method_getImplementation(class_getInstanceMethod(currentClass, @selector(resume))); + IMP superclassResumeIMP = method_getImplementation(class_getInstanceMethod(superClass, @selector(resume))); + if (classResumeIMP != superclassResumeIMP && + originalAFResumeIMP != classResumeIMP) { + [self swizzleResumeAndSuspendMethodForClass:currentClass]; + } + currentClass = [currentClass superclass]; + } + + [localDataTask cancel]; + [session finishTasksAndInvalidate]; + } +} + ++ (void)swizzleResumeAndSuspendMethodForClass:(Class)theClass { + Method afResumeMethod = class_getInstanceMethod(self, @selector(af_resume)); + Method afSuspendMethod = class_getInstanceMethod(self, @selector(af_suspend)); + + if (af_addMethod(theClass, @selector(af_resume), afResumeMethod)) { + af_swizzleSelector(theClass, @selector(resume), @selector(af_resume)); + } + + if (af_addMethod(theClass, @selector(af_suspend), afSuspendMethod)) { + af_swizzleSelector(theClass, @selector(suspend), @selector(af_suspend)); + } +} + +- (NSURLSessionTaskState)state { + NSAssert(NO, @"State method should never be called in the actual dummy class"); + return NSURLSessionTaskStateCanceling; +} + +- (void)af_resume { + NSAssert([self respondsToSelector:@selector(state)], @"Does not respond to state"); + NSURLSessionTaskState state = [self state]; + [self af_resume]; + + if (state != NSURLSessionTaskStateRunning) { + [[NSNotificationCenter defaultCenter] postNotificationName:AFNSURLSessionTaskDidResumeNotification object:self]; + } +} + +- (void)af_suspend { + NSAssert([self respondsToSelector:@selector(state)], @"Does not respond to state"); + NSURLSessionTaskState state = [self state]; + [self af_suspend]; + + if (state != NSURLSessionTaskStateSuspended) { + [[NSNotificationCenter defaultCenter] postNotificationName:AFNSURLSessionTaskDidSuspendNotification object:self]; + } +} +@end + +#pragma mark - + +@interface AFURLSessionManager () +@property (readwrite, nonatomic, strong) NSURLSessionConfiguration *sessionConfiguration; +@property (readwrite, nonatomic, strong) NSOperationQueue *operationQueue; +@property (readwrite, nonatomic, strong) NSURLSession *session; +@property (readwrite, nonatomic, strong) NSMutableDictionary *mutableTaskDelegatesKeyedByTaskIdentifier; +@property (readonly, nonatomic, copy) NSString *taskDescriptionForSessionTasks; +@property (readwrite, nonatomic, strong) NSLock *lock; +@property (readwrite, nonatomic, copy) AFURLSessionDidBecomeInvalidBlock sessionDidBecomeInvalid; +@property (readwrite, nonatomic, copy) AFURLSessionDidReceiveAuthenticationChallengeBlock sessionDidReceiveAuthenticationChallenge; +@property (readwrite, nonatomic, copy) AFURLSessionDidFinishEventsForBackgroundURLSessionBlock didFinishEventsForBackgroundURLSession; +@property (readwrite, nonatomic, copy) AFURLSessionTaskWillPerformHTTPRedirectionBlock taskWillPerformHTTPRedirection; +@property (readwrite, nonatomic, copy) AFURLSessionTaskDidReceiveAuthenticationChallengeBlock taskDidReceiveAuthenticationChallenge; +@property (readwrite, nonatomic, copy) AFURLSessionTaskNeedNewBodyStreamBlock taskNeedNewBodyStream; +@property (readwrite, nonatomic, copy) AFURLSessionTaskDidSendBodyDataBlock taskDidSendBodyData; +@property (readwrite, nonatomic, copy) AFURLSessionTaskDidCompleteBlock taskDidComplete; +@property (readwrite, nonatomic, copy) AFURLSessionDataTaskDidReceiveResponseBlock dataTaskDidReceiveResponse; +@property (readwrite, nonatomic, copy) AFURLSessionDataTaskDidBecomeDownloadTaskBlock dataTaskDidBecomeDownloadTask; +@property (readwrite, nonatomic, copy) AFURLSessionDataTaskDidReceiveDataBlock dataTaskDidReceiveData; +@property (readwrite, nonatomic, copy) AFURLSessionDataTaskWillCacheResponseBlock dataTaskWillCacheResponse; +@property (readwrite, nonatomic, copy) AFURLSessionDownloadTaskDidFinishDownloadingBlock downloadTaskDidFinishDownloading; +@property (readwrite, nonatomic, copy) AFURLSessionDownloadTaskDidWriteDataBlock downloadTaskDidWriteData; +@property (readwrite, nonatomic, copy) AFURLSessionDownloadTaskDidResumeBlock downloadTaskDidResume; +@end + +@implementation AFURLSessionManager + +- (instancetype)init { + return [self initWithSessionConfiguration:nil]; +} + +- (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration { + self = [super init]; + if (!self) { + return nil; + } + + if (!configuration) { + configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; + } + + self.sessionConfiguration = configuration; + + self.operationQueue = [[NSOperationQueue alloc] init]; + self.operationQueue.maxConcurrentOperationCount = 1; + + self.session = [NSURLSession sessionWithConfiguration:self.sessionConfiguration delegate:self delegateQueue:self.operationQueue]; + + self.responseSerializer = [AFJSONResponseSerializer serializer]; + + self.securityPolicy = [AFSecurityPolicy defaultPolicy]; + +#if !TARGET_OS_WATCH + self.reachabilityManager = [AFNetworkReachabilityManager sharedManager]; +#endif + + self.mutableTaskDelegatesKeyedByTaskIdentifier = [[NSMutableDictionary alloc] init]; + + self.lock = [[NSLock alloc] init]; + self.lock.name = AFURLSessionManagerLockName; + + [self.session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) { + for (NSURLSessionDataTask *task in dataTasks) { + [self addDelegateForDataTask:task completionHandler:nil]; + } + + for (NSURLSessionUploadTask *uploadTask in uploadTasks) { + [self addDelegateForUploadTask:uploadTask progress:nil completionHandler:nil]; + } + + for (NSURLSessionDownloadTask *downloadTask in downloadTasks) { + [self addDelegateForDownloadTask:downloadTask progress:nil destination:nil completionHandler:nil]; + } + }]; + + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(taskDidResume:) name:AFNSURLSessionTaskDidResumeNotification object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(taskDidSuspend:) name:AFNSURLSessionTaskDidSuspendNotification object:nil]; + + return self; +} + +- (void)dealloc { + [[NSNotificationCenter defaultCenter] removeObserver:self]; +} + +#pragma mark - + +- (NSString *)taskDescriptionForSessionTasks { + return [NSString stringWithFormat:@"%p", self]; +} + +- (void)taskDidResume:(NSNotification *)notification { + NSURLSessionTask *task = notification.object; + if ([task respondsToSelector:@selector(taskDescription)]) { + if ([task.taskDescription isEqualToString:self.taskDescriptionForSessionTasks]) { + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingTaskDidResumeNotification object:task]; + }); + } + } +} + +- (void)taskDidSuspend:(NSNotification *)notification { + NSURLSessionTask *task = notification.object; + if ([task respondsToSelector:@selector(taskDescription)]) { + if ([task.taskDescription isEqualToString:self.taskDescriptionForSessionTasks]) { + dispatch_async(dispatch_get_main_queue(), ^{ + [[NSNotificationCenter defaultCenter] postNotificationName:AFNetworkingTaskDidSuspendNotification object:task]; + }); + } + } +} + +#pragma mark - + +- (AFURLSessionManagerTaskDelegate *)delegateForTask:(NSURLSessionTask *)task { + NSParameterAssert(task); + + AFURLSessionManagerTaskDelegate *delegate = nil; + [self.lock lock]; + delegate = self.mutableTaskDelegatesKeyedByTaskIdentifier[@(task.taskIdentifier)]; + [self.lock unlock]; + + return delegate; +} + +- (void)setDelegate:(AFURLSessionManagerTaskDelegate *)delegate + forTask:(NSURLSessionTask *)task +{ + NSParameterAssert(task); + NSParameterAssert(delegate); + + [self.lock lock]; + self.mutableTaskDelegatesKeyedByTaskIdentifier[@(task.taskIdentifier)] = delegate; + [self.lock unlock]; +} + +- (void)addDelegateForDataTask:(NSURLSessionDataTask *)dataTask + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + AFURLSessionManagerTaskDelegate *delegate = [[AFURLSessionManagerTaskDelegate alloc] init]; + delegate.manager = self; + delegate.completionHandler = completionHandler; + + dataTask.taskDescription = self.taskDescriptionForSessionTasks; + [self setDelegate:delegate forTask:dataTask]; +} + +- (void)addDelegateForUploadTask:(NSURLSessionUploadTask *)uploadTask + progress:(NSProgress * __autoreleasing *)progress + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + AFURLSessionManagerTaskDelegate *delegate = [[AFURLSessionManagerTaskDelegate alloc] init]; + delegate.manager = self; + delegate.completionHandler = completionHandler; + + int64_t totalUnitCount = uploadTask.countOfBytesExpectedToSend; + if(totalUnitCount == NSURLSessionTransferSizeUnknown) { + NSString *contentLength = [uploadTask.originalRequest valueForHTTPHeaderField:@"Content-Length"]; + if(contentLength) { + totalUnitCount = (int64_t)[contentLength longLongValue]; + } + } + + if (delegate.progress) { + delegate.progress.totalUnitCount = totalUnitCount; + } else { + delegate.progress = [NSProgress progressWithTotalUnitCount:totalUnitCount]; + } + + delegate.progress.pausingHandler = ^{ + [uploadTask suspend]; + }; + delegate.progress.cancellationHandler = ^{ + [uploadTask cancel]; + }; + + if (progress) { + *progress = delegate.progress; + } + + uploadTask.taskDescription = self.taskDescriptionForSessionTasks; + + [self setDelegate:delegate forTask:uploadTask]; +} + +- (void)addDelegateForDownloadTask:(NSURLSessionDownloadTask *)downloadTask + progress:(NSProgress * __autoreleasing *)progress + destination:(NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination + completionHandler:(void (^)(NSURLResponse *response, NSURL *filePath, NSError *error))completionHandler +{ + AFURLSessionManagerTaskDelegate *delegate = [[AFURLSessionManagerTaskDelegate alloc] init]; + delegate.manager = self; + delegate.completionHandler = completionHandler; + + if (destination) { + delegate.downloadTaskDidFinishDownloading = ^NSURL * (NSURLSession * __unused session, NSURLSessionDownloadTask *task, NSURL *location) { + return destination(location, task.response); + }; + } + + if (progress) { + *progress = delegate.progress; + } + + downloadTask.taskDescription = self.taskDescriptionForSessionTasks; + + [self setDelegate:delegate forTask:downloadTask]; +} + +- (void)removeDelegateForTask:(NSURLSessionTask *)task { + NSParameterAssert(task); + + [self.lock lock]; + [self.mutableTaskDelegatesKeyedByTaskIdentifier removeObjectForKey:@(task.taskIdentifier)]; + [self.lock unlock]; +} + +- (void)removeAllDelegates { + [self.lock lock]; + [self.mutableTaskDelegatesKeyedByTaskIdentifier removeAllObjects]; + [self.lock unlock]; +} + +#pragma mark - + +- (NSArray *)tasksForKeyPath:(NSString *)keyPath { + __block NSArray *tasks = nil; + dispatch_semaphore_t semaphore = dispatch_semaphore_create(0); + [self.session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) { + if ([keyPath isEqualToString:NSStringFromSelector(@selector(dataTasks))]) { + tasks = dataTasks; + } else if ([keyPath isEqualToString:NSStringFromSelector(@selector(uploadTasks))]) { + tasks = uploadTasks; + } else if ([keyPath isEqualToString:NSStringFromSelector(@selector(downloadTasks))]) { + tasks = downloadTasks; + } else if ([keyPath isEqualToString:NSStringFromSelector(@selector(tasks))]) { + tasks = [@[dataTasks, uploadTasks, downloadTasks] valueForKeyPath:@"@unionOfArrays.self"]; + } + + dispatch_semaphore_signal(semaphore); + }]; + + dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER); + + return tasks; +} + +- (NSArray *)tasks { + return [self tasksForKeyPath:NSStringFromSelector(_cmd)]; +} + +- (NSArray *)dataTasks { + return [self tasksForKeyPath:NSStringFromSelector(_cmd)]; +} + +- (NSArray *)uploadTasks { + return [self tasksForKeyPath:NSStringFromSelector(_cmd)]; +} + +- (NSArray *)downloadTasks { + return [self tasksForKeyPath:NSStringFromSelector(_cmd)]; +} + +#pragma mark - + +- (void)invalidateSessionCancelingTasks:(BOOL)cancelPendingTasks { + dispatch_async(dispatch_get_main_queue(), ^{ + if (cancelPendingTasks) { + [self.session invalidateAndCancel]; + } else { + [self.session finishTasksAndInvalidate]; + } + }); +} + +#pragma mark - + +- (void)setResponseSerializer:(id )responseSerializer { + NSParameterAssert(responseSerializer); + + _responseSerializer = responseSerializer; +} + +#pragma mark - + +- (NSURLSessionDataTask *)dataTaskWithRequest:(NSURLRequest *)request + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + __block NSURLSessionDataTask *dataTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + dataTask = [self.session dataTaskWithRequest:request]; + }); + + [self addDelegateForDataTask:dataTask completionHandler:completionHandler]; + + return dataTask; +} + +#pragma mark - + +- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request + fromFile:(NSURL *)fileURL + progress:(NSProgress * __autoreleasing *)progress + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + __block NSURLSessionUploadTask *uploadTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + uploadTask = [self.session uploadTaskWithRequest:request fromFile:fileURL]; + }); + + if (!uploadTask && self.attemptsToRecreateUploadTasksForBackgroundSessions && self.session.configuration.identifier) { + for (NSUInteger attempts = 0; !uploadTask && attempts < AFMaximumNumberOfAttemptsToRecreateBackgroundSessionUploadTask; attempts++) { + uploadTask = [self.session uploadTaskWithRequest:request fromFile:fileURL]; + } + } + + [self addDelegateForUploadTask:uploadTask progress:progress completionHandler:completionHandler]; + + return uploadTask; +} + +- (NSURLSessionUploadTask *)uploadTaskWithRequest:(NSURLRequest *)request + fromData:(NSData *)bodyData + progress:(NSProgress * __autoreleasing *)progress + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + __block NSURLSessionUploadTask *uploadTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + uploadTask = [self.session uploadTaskWithRequest:request fromData:bodyData]; + }); + + [self addDelegateForUploadTask:uploadTask progress:progress completionHandler:completionHandler]; + + return uploadTask; +} + +- (NSURLSessionUploadTask *)uploadTaskWithStreamedRequest:(NSURLRequest *)request + progress:(NSProgress * __autoreleasing *)progress + completionHandler:(void (^)(NSURLResponse *response, id responseObject, NSError *error))completionHandler +{ + __block NSURLSessionUploadTask *uploadTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + uploadTask = [self.session uploadTaskWithStreamedRequest:request]; + }); + + [self addDelegateForUploadTask:uploadTask progress:progress completionHandler:completionHandler]; + + return uploadTask; +} + +#pragma mark - + +- (NSURLSessionDownloadTask *)downloadTaskWithRequest:(NSURLRequest *)request + progress:(NSProgress * __autoreleasing *)progress + destination:(NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination + completionHandler:(void (^)(NSURLResponse *response, NSURL *filePath, NSError *error))completionHandler +{ + __block NSURLSessionDownloadTask *downloadTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + downloadTask = [self.session downloadTaskWithRequest:request]; + }); + + [self addDelegateForDownloadTask:downloadTask progress:progress destination:destination completionHandler:completionHandler]; + + return downloadTask; +} + +- (NSURLSessionDownloadTask *)downloadTaskWithResumeData:(NSData *)resumeData + progress:(NSProgress * __autoreleasing *)progress + destination:(NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination + completionHandler:(void (^)(NSURLResponse *response, NSURL *filePath, NSError *error))completionHandler +{ + __block NSURLSessionDownloadTask *downloadTask = nil; + dispatch_sync(url_session_manager_creation_queue(), ^{ + downloadTask = [self.session downloadTaskWithResumeData:resumeData]; + }); + + [self addDelegateForDownloadTask:downloadTask progress:progress destination:destination completionHandler:completionHandler]; + + return downloadTask; +} + +#pragma mark - + +- (NSProgress *)uploadProgressForTask:(NSURLSessionUploadTask *)uploadTask { + return [[self delegateForTask:uploadTask] progress]; +} + +- (NSProgress *)downloadProgressForTask:(NSURLSessionDownloadTask *)downloadTask { + return [[self delegateForTask:downloadTask] progress]; +} + +#pragma mark - + +- (void)setSessionDidBecomeInvalidBlock:(void (^)(NSURLSession *session, NSError *error))block { + self.sessionDidBecomeInvalid = block; +} + +- (void)setSessionDidReceiveAuthenticationChallengeBlock:(NSURLSessionAuthChallengeDisposition (^)(NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential))block { + self.sessionDidReceiveAuthenticationChallenge = block; +} + +- (void)setDidFinishEventsForBackgroundURLSessionBlock:(void (^)(NSURLSession *session))block { + self.didFinishEventsForBackgroundURLSession = block; +} + +#pragma mark - + +- (void)setTaskNeedNewBodyStreamBlock:(NSInputStream * (^)(NSURLSession *session, NSURLSessionTask *task))block { + self.taskNeedNewBodyStream = block; +} + +- (void)setTaskWillPerformHTTPRedirectionBlock:(NSURLRequest * (^)(NSURLSession *session, NSURLSessionTask *task, NSURLResponse *response, NSURLRequest *request))block { + self.taskWillPerformHTTPRedirection = block; +} + +- (void)setTaskDidReceiveAuthenticationChallengeBlock:(NSURLSessionAuthChallengeDisposition (^)(NSURLSession *session, NSURLSessionTask *task, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential))block { + self.taskDidReceiveAuthenticationChallenge = block; +} + +- (void)setTaskDidSendBodyDataBlock:(void (^)(NSURLSession *session, NSURLSessionTask *task, int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend))block { + self.taskDidSendBodyData = block; +} + +- (void)setTaskDidCompleteBlock:(void (^)(NSURLSession *session, NSURLSessionTask *task, NSError *error))block { + self.taskDidComplete = block; +} + +#pragma mark - + +- (void)setDataTaskDidReceiveResponseBlock:(NSURLSessionResponseDisposition (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLResponse *response))block { + self.dataTaskDidReceiveResponse = block; +} + +- (void)setDataTaskDidBecomeDownloadTaskBlock:(void (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSURLSessionDownloadTask *downloadTask))block { + self.dataTaskDidBecomeDownloadTask = block; +} + +- (void)setDataTaskDidReceiveDataBlock:(void (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSData *data))block { + self.dataTaskDidReceiveData = block; +} + +- (void)setDataTaskWillCacheResponseBlock:(NSCachedURLResponse * (^)(NSURLSession *session, NSURLSessionDataTask *dataTask, NSCachedURLResponse *proposedResponse))block { + self.dataTaskWillCacheResponse = block; +} + +#pragma mark - + +- (void)setDownloadTaskDidFinishDownloadingBlock:(NSURL * (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, NSURL *location))block { + self.downloadTaskDidFinishDownloading = block; +} + +- (void)setDownloadTaskDidWriteDataBlock:(void (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite))block { + self.downloadTaskDidWriteData = block; +} + +- (void)setDownloadTaskDidResumeBlock:(void (^)(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t fileOffset, int64_t expectedTotalBytes))block { + self.downloadTaskDidResume = block; +} + +#pragma mark - NSObject + +- (NSString *)description { + return [NSString stringWithFormat:@"<%@: %p, session: %@, operationQueue: %@>", NSStringFromClass([self class]), self, self.session, self.operationQueue]; +} + +- (BOOL)respondsToSelector:(SEL)selector { + if (selector == @selector(URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:)) { + return self.taskWillPerformHTTPRedirection != nil; + } else if (selector == @selector(URLSession:dataTask:didReceiveResponse:completionHandler:)) { + return self.dataTaskDidReceiveResponse != nil; + } else if (selector == @selector(URLSession:dataTask:willCacheResponse:completionHandler:)) { + return self.dataTaskWillCacheResponse != nil; + } else if (selector == @selector(URLSessionDidFinishEventsForBackgroundURLSession:)) { + return self.didFinishEventsForBackgroundURLSession != nil; + } + + return [[self class] instancesRespondToSelector:selector]; +} + +#pragma mark - NSURLSessionDelegate + +- (void)URLSession:(NSURLSession *)session +didBecomeInvalidWithError:(NSError *)error +{ + if (self.sessionDidBecomeInvalid) { + self.sessionDidBecomeInvalid(session, error); + } + + [self removeAllDelegates]; + [[NSNotificationCenter defaultCenter] postNotificationName:AFURLSessionDidInvalidateNotification object:session]; +} + +- (void)URLSession:(NSURLSession *)session +didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge + completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler +{ + NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling; + __block NSURLCredential *credential = nil; + + if (self.sessionDidReceiveAuthenticationChallenge) { + disposition = self.sessionDidReceiveAuthenticationChallenge(session, challenge, &credential); + } else { + if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) { + if ([self.securityPolicy evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:challenge.protectionSpace.host]) { + credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; + if (credential) { + disposition = NSURLSessionAuthChallengeUseCredential; + } else { + disposition = NSURLSessionAuthChallengePerformDefaultHandling; + } + } else { + disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge; + } + } else { + disposition = NSURLSessionAuthChallengePerformDefaultHandling; + } + } + + if (completionHandler) { + completionHandler(disposition, credential); + } +} + +#pragma mark - NSURLSessionTaskDelegate + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task +willPerformHTTPRedirection:(NSHTTPURLResponse *)response + newRequest:(NSURLRequest *)request + completionHandler:(void (^)(NSURLRequest *))completionHandler +{ + NSURLRequest *redirectRequest = request; + + if (self.taskWillPerformHTTPRedirection) { + redirectRequest = self.taskWillPerformHTTPRedirection(session, task, response, request); + } + + if (completionHandler) { + completionHandler(redirectRequest); + } +} + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task +didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge + completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler +{ + NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling; + __block NSURLCredential *credential = nil; + + if (self.taskDidReceiveAuthenticationChallenge) { + disposition = self.taskDidReceiveAuthenticationChallenge(session, task, challenge, &credential); + } else { + if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) { + if ([self.securityPolicy evaluateServerTrust:challenge.protectionSpace.serverTrust forDomain:challenge.protectionSpace.host]) { + disposition = NSURLSessionAuthChallengeUseCredential; + credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; + } else { + disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge; + } + } else { + disposition = NSURLSessionAuthChallengePerformDefaultHandling; + } + } + + if (completionHandler) { + completionHandler(disposition, credential); + } +} + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task + needNewBodyStream:(void (^)(NSInputStream *bodyStream))completionHandler +{ + NSInputStream *inputStream = nil; + + if (self.taskNeedNewBodyStream) { + inputStream = self.taskNeedNewBodyStream(session, task); + } else if (task.originalRequest.HTTPBodyStream && [task.originalRequest.HTTPBodyStream conformsToProtocol:@protocol(NSCopying)]) { + inputStream = [task.originalRequest.HTTPBodyStream copy]; + } + + if (completionHandler) { + completionHandler(inputStream); + } +} + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task + didSendBodyData:(int64_t)bytesSent + totalBytesSent:(int64_t)totalBytesSent +totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend +{ + + int64_t totalUnitCount = totalBytesExpectedToSend; + if(totalUnitCount == NSURLSessionTransferSizeUnknown) { + NSString *contentLength = [task.originalRequest valueForHTTPHeaderField:@"Content-Length"]; + if(contentLength) { + totalUnitCount = (int64_t) [contentLength longLongValue]; + } + } + + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:task]; + [delegate URLSession:session task:task didSendBodyData:bytesSent totalBytesSent:totalBytesSent totalBytesExpectedToSend:totalUnitCount]; + + if (self.taskDidSendBodyData) { + self.taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalUnitCount); + } +} + +- (void)URLSession:(NSURLSession *)session + task:(NSURLSessionTask *)task +didCompleteWithError:(NSError *)error +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:task]; + + // delegate may be nil when completing a task in the background + if (delegate) { + [delegate URLSession:session task:task didCompleteWithError:error]; + + [self removeDelegateForTask:task]; + } + + if (self.taskDidComplete) { + self.taskDidComplete(session, task, error); + } + +} + +#pragma mark - NSURLSessionDataDelegate + +- (void)URLSession:(NSURLSession *)session + dataTask:(NSURLSessionDataTask *)dataTask +didReceiveResponse:(NSURLResponse *)response + completionHandler:(void (^)(NSURLSessionResponseDisposition disposition))completionHandler +{ + NSURLSessionResponseDisposition disposition = NSURLSessionResponseAllow; + + if (self.dataTaskDidReceiveResponse) { + disposition = self.dataTaskDidReceiveResponse(session, dataTask, response); + } + + if (completionHandler) { + completionHandler(disposition); + } +} + +- (void)URLSession:(NSURLSession *)session + dataTask:(NSURLSessionDataTask *)dataTask +didBecomeDownloadTask:(NSURLSessionDownloadTask *)downloadTask +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:dataTask]; + if (delegate) { + [self removeDelegateForTask:dataTask]; + [self setDelegate:delegate forTask:downloadTask]; + } + + if (self.dataTaskDidBecomeDownloadTask) { + self.dataTaskDidBecomeDownloadTask(session, dataTask, downloadTask); + } +} + +- (void)URLSession:(NSURLSession *)session + dataTask:(NSURLSessionDataTask *)dataTask + didReceiveData:(NSData *)data +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:dataTask]; + [delegate URLSession:session dataTask:dataTask didReceiveData:data]; + + if (self.dataTaskDidReceiveData) { + self.dataTaskDidReceiveData(session, dataTask, data); + } +} + +- (void)URLSession:(NSURLSession *)session + dataTask:(NSURLSessionDataTask *)dataTask + willCacheResponse:(NSCachedURLResponse *)proposedResponse + completionHandler:(void (^)(NSCachedURLResponse *cachedResponse))completionHandler +{ + NSCachedURLResponse *cachedResponse = proposedResponse; + + if (self.dataTaskWillCacheResponse) { + cachedResponse = self.dataTaskWillCacheResponse(session, dataTask, proposedResponse); + } + + if (completionHandler) { + completionHandler(cachedResponse); + } +} + +- (void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session { + if (self.didFinishEventsForBackgroundURLSession) { + dispatch_async(dispatch_get_main_queue(), ^{ + self.didFinishEventsForBackgroundURLSession(session); + }); + } +} + +#pragma mark - NSURLSessionDownloadDelegate + +- (void)URLSession:(NSURLSession *)session + downloadTask:(NSURLSessionDownloadTask *)downloadTask +didFinishDownloadingToURL:(NSURL *)location +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:downloadTask]; + if (self.downloadTaskDidFinishDownloading) { + NSURL *fileURL = self.downloadTaskDidFinishDownloading(session, downloadTask, location); + if (fileURL) { + delegate.downloadFileURL = fileURL; + NSError *error = nil; + [[NSFileManager defaultManager] moveItemAtURL:location toURL:fileURL error:&error]; + if (error) { + [[NSNotificationCenter defaultCenter] postNotificationName:AFURLSessionDownloadTaskDidFailToMoveFileNotification object:downloadTask userInfo:error.userInfo]; + } + + return; + } + } + + if (delegate) { + [delegate URLSession:session downloadTask:downloadTask didFinishDownloadingToURL:location]; + } +} + +- (void)URLSession:(NSURLSession *)session + downloadTask:(NSURLSessionDownloadTask *)downloadTask + didWriteData:(int64_t)bytesWritten + totalBytesWritten:(int64_t)totalBytesWritten +totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:downloadTask]; + [delegate URLSession:session downloadTask:downloadTask didWriteData:bytesWritten totalBytesWritten:totalBytesWritten totalBytesExpectedToWrite:totalBytesExpectedToWrite]; + + if (self.downloadTaskDidWriteData) { + self.downloadTaskDidWriteData(session, downloadTask, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite); + } +} + +- (void)URLSession:(NSURLSession *)session + downloadTask:(NSURLSessionDownloadTask *)downloadTask + didResumeAtOffset:(int64_t)fileOffset +expectedTotalBytes:(int64_t)expectedTotalBytes +{ + AFURLSessionManagerTaskDelegate *delegate = [self delegateForTask:downloadTask]; + [delegate URLSession:session downloadTask:downloadTask didResumeAtOffset:fileOffset expectedTotalBytes:expectedTotalBytes]; + + if (self.downloadTaskDidResume) { + self.downloadTaskDidResume(session, downloadTask, fileOffset, expectedTotalBytes); + } +} + +#pragma mark - NSSecureCoding + ++ (BOOL)supportsSecureCoding { + return YES; +} + +- (id)initWithCoder:(NSCoder *)decoder { + NSURLSessionConfiguration *configuration = [decoder decodeObjectOfClass:[NSURLSessionConfiguration class] forKey:@"sessionConfiguration"]; + + self = [self initWithSessionConfiguration:configuration]; + if (!self) { + return nil; + } + + return self; +} + +- (void)encodeWithCoder:(NSCoder *)coder { + [coder encodeObject:self.session.configuration forKey:@"sessionConfiguration"]; +} + +#pragma mark - NSCopying + +- (id)copyWithZone:(NSZone *)zone { + return [[[self class] allocWithZone:zone] initWithSessionConfiguration:self.session.configuration]; +} + +@end + +#endif diff --git a/Pods/AFNetworking/LICENSE b/Pods/AFNetworking/LICENSE new file mode 100644 index 0000000..91f125b --- /dev/null +++ b/Pods/AFNetworking/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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/Pods/AFNetworking/README.md b/Pods/AFNetworking/README.md new file mode 100644 index 0000000..87ec4b2 --- /dev/null +++ b/Pods/AFNetworking/README.md @@ -0,0 +1,394 @@ +

+ AFNetworking +

+ +[![Build Status](https://travis-ci.org/AFNetworking/AFNetworking.svg)](https://travis-ci.org/AFNetworking/AFNetworking) + +AFNetworking is a delightful networking library for iOS and Mac OS X. It's built on top of the [Foundation URL Loading System](http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html), extending the powerful high-level networking abstractions built into Cocoa. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. + +Perhaps the most important feature of all, however, is the amazing community of developers who use and contribute to AFNetworking every day. AFNetworking powers some of the most popular and critically-acclaimed apps on the iPhone, iPad, and Mac. + +Choose AFNetworking for your next project, or migrate over your existing projects—you'll be happy you did! + +## How To Get Started + +- [Download AFNetworking](https://github.com/AFNetworking/AFNetworking/archive/master.zip) and try out the included Mac and iPhone example apps +- Read the ["Getting Started" guide](https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking), [FAQ](https://github.com/AFNetworking/AFNetworking/wiki/AFNetworking-FAQ), or [other articles on the Wiki](https://github.com/AFNetworking/AFNetworking/wiki) +- Check out the [documentation](http://cocoadocs.org/docsets/AFNetworking/) for a comprehensive look at all of the APIs available in AFNetworking +- Read the [AFNetworking 2.0 Migration Guide](https://github.com/AFNetworking/AFNetworking/wiki/AFNetworking-2.0-Migration-Guide) for an overview of the architectural changes from 1.0. + +## Communication + +- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/afnetworking). (Tag 'afnetworking') +- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/afnetworking). +- If you **found a bug**, _and can provide steps to reliably reproduce it_, open an issue. +- If you **have a feature request**, open an issue. +- If you **want to contribute**, submit a pull request. + +### Installation with CocoaPods + +[CocoaPods](https://cocoapods.org/) is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like AFNetworking in your projects. See the ["Getting Started" guide for more information](https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking). + +#### Podfile + +```ruby +platform :ios, '7.0' +pod "AFNetworking", "~> 2.0" +``` + +## Requirements + +| AFNetworking Version | Minimum iOS Target | Minimum OS X Target | Notes | +|:--------------------:|:---------------------------:|:----------------------------:|:-------------------------------------------------------------------------:| +| 2.x | iOS 6 | OS X 10.8 | Xcode 5 is required. `NSURLSession` subspec requires iOS 7 or OS X 10.9. | +| [1.x](https://github.com/AFNetworking/AFNetworking/tree/1.x) | iOS 5 | Mac OS X 10.7 | | +| [0.10.x](https://github.com/AFNetworking/AFNetworking/tree/0.10.x) | iOS 4 | Mac OS X 10.6 | | + +(OS X projects must support [64-bit with modern Cocoa runtime](https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtVersionsPlatforms.html)). + +> Programming in Swift? Try [Alamofire](https://github.com/Alamofire/Alamofire) for a more conventional set of APIs. + +## Architecture + +### NSURLConnection + +- `AFURLConnectionOperation` +- `AFHTTPRequestOperation` +- `AFHTTPRequestOperationManager` + +### NSURLSession _(iOS 7 / Mac OS X 10.9)_ + +- `AFURLSessionManager` +- `AFHTTPSessionManager` + +### Serialization + +* `` + - `AFHTTPRequestSerializer` + - `AFJSONRequestSerializer` + - `AFPropertyListRequestSerializer` +* `` + - `AFHTTPResponseSerializer` + - `AFJSONResponseSerializer` + - `AFXMLParserResponseSerializer` + - `AFXMLDocumentResponseSerializer` _(Mac OS X)_ + - `AFPropertyListResponseSerializer` + - `AFImageResponseSerializer` + - `AFCompoundResponseSerializer` + +### Additional Functionality + +- `AFSecurityPolicy` +- `AFNetworkReachabilityManager` + +## Usage + +### HTTP Request Operation Manager + +`AFHTTPRequestOperationManager` encapsulates the common patterns of communicating with a web application over HTTP, including request creation, response serialization, network reachability monitoring, and security, as well as request operation management. + +#### `GET` Request + +```objective-c +AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; +[manager GET:@"http://example.com/resources.json" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) { + NSLog(@"JSON: %@", responseObject); +} failure:^(AFHTTPRequestOperation *operation, NSError *error) { + NSLog(@"Error: %@", error); +}]; +``` + +#### `POST` URL-Form-Encoded Request + +```objective-c +AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; +NSDictionary *parameters = @{@"foo": @"bar"}; +[manager POST:@"http://example.com/resources.json" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) { + NSLog(@"JSON: %@", responseObject); +} failure:^(AFHTTPRequestOperation *operation, NSError *error) { + NSLog(@"Error: %@", error); +}]; +``` + +#### `POST` Multi-Part Request + +```objective-c +AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; +NSDictionary *parameters = @{@"foo": @"bar"}; +NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"]; +[manager POST:@"http://example.com/resources.json" parameters:parameters constructingBodyWithBlock:^(id formData) { + [formData appendPartWithFileURL:filePath name:@"image" error:nil]; +} success:^(AFHTTPRequestOperation *operation, id responseObject) { + NSLog(@"Success: %@", responseObject); +} failure:^(AFHTTPRequestOperation *operation, NSError *error) { + NSLog(@"Error: %@", error); +}]; +``` + +--- + +### AFURLSessionManager + +`AFURLSessionManager` creates and manages an `NSURLSession` object based on a specified `NSURLSessionConfiguration` object, which conforms to ``, ``, ``, and ``. + +#### Creating a Download Task + +```objective-c +NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; +AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration]; + +NSURL *URL = [NSURL URLWithString:@"http://example.com/download.zip"]; +NSURLRequest *request = [NSURLRequest requestWithURL:URL]; + +NSURLSessionDownloadTask *downloadTask = [manager downloadTaskWithRequest:request progress:nil destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) { + NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil]; + return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]]; +} completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) { + NSLog(@"File downloaded to: %@", filePath); +}]; +[downloadTask resume]; +``` + +#### Creating an Upload Task + +```objective-c +NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; +AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration]; + +NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"]; +NSURLRequest *request = [NSURLRequest requestWithURL:URL]; + +NSURL *filePath = [NSURL fileURLWithPath:@"file://path/to/image.png"]; +NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithRequest:request fromFile:filePath progress:nil completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) { + if (error) { + NSLog(@"Error: %@", error); + } else { + NSLog(@"Success: %@ %@", response, responseObject); + } +}]; +[uploadTask resume]; +``` + +#### Creating an Upload Task for a Multi-Part Request, with Progress + +```objective-c +NSMutableURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://example.com/upload" parameters:nil constructingBodyWithBlock:^(id formData) { + [formData appendPartWithFileURL:[NSURL fileURLWithPath:@"file://path/to/image.jpg"] name:@"file" fileName:@"filename.jpg" mimeType:@"image/jpeg" error:nil]; + } error:nil]; + +AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]]; +NSProgress *progress = nil; + +NSURLSessionUploadTask *uploadTask = [manager uploadTaskWithStreamedRequest:request progress:&progress completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) { + if (error) { + NSLog(@"Error: %@", error); + } else { + NSLog(@"%@ %@", response, responseObject); + } +}]; + +[uploadTask resume]; +``` + +#### Creating a Data Task + +```objective-c +NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; +AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration]; + +NSURL *URL = [NSURL URLWithString:@"http://example.com/upload"]; +NSURLRequest *request = [NSURLRequest requestWithURL:URL]; + +NSURLSessionDataTask *dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) { + if (error) { + NSLog(@"Error: %@", error); + } else { + NSLog(@"%@ %@", response, responseObject); + } +}]; +[dataTask resume]; +``` + +--- + +### Request Serialization + +Request serializers create requests from URL strings, encoding parameters as either a query string or HTTP body. + +```objective-c +NSString *URLString = @"http://example.com"; +NSDictionary *parameters = @{@"foo": @"bar", @"baz": @[@1, @2, @3]}; +``` + +#### Query String Parameter Encoding + +```objective-c +[[AFHTTPRequestSerializer serializer] requestWithMethod:@"GET" URLString:URLString parameters:parameters error:nil]; +``` + + GET http://example.com?foo=bar&baz[]=1&baz[]=2&baz[]=3 + +#### URL Form Parameter Encoding + +```objective-c +[[AFHTTPRequestSerializer serializer] requestWithMethod:@"POST" URLString:URLString parameters:parameters]; +``` + + POST http://example.com/ + Content-Type: application/x-www-form-urlencoded + + foo=bar&baz[]=1&baz[]=2&baz[]=3 + +#### JSON Parameter Encoding + +```objective-c +[[AFJSONRequestSerializer serializer] requestWithMethod:@"POST" URLString:URLString parameters:parameters]; +``` + + POST http://example.com/ + Content-Type: application/json + + {"foo": "bar", "baz": [1,2,3]} + +--- + +### Network Reachability Manager + +`AFNetworkReachabilityManager` monitors the reachability of domains, and addresses for both WWAN and WiFi network interfaces. + +* Do not use Reachability to determine if the original request should be sent. + * You should try to send it. +* You can use Reachability to determine when a request should be automatically retried. + * Although it may still fail, a Reachability notification that the connectivity is available is a good time to retry something. +* Network reachability is a useful tool for determining why a request might have failed. + * After a network request has failed, telling the user they're offline is better than giving them a more technical but accurate error, such as "request timed out." + +See also [WWDC 2012 session 706, "Networking Best Practices."](https://developer.apple.com/videos/play/wwdc2012-706/). + +#### Shared Network Reachability + +```objective-c +[[AFNetworkReachabilityManager sharedManager] setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) { + NSLog(@"Reachability: %@", AFStringFromNetworkReachabilityStatus(status)); +}]; + +[[AFNetworkReachabilityManager sharedManager] startMonitoring]; +``` + +#### HTTP Manager Reachability + +```objective-c +NSURL *baseURL = [NSURL URLWithString:@"http://example.com/"]; +AFHTTPRequestOperationManager *manager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:baseURL]; + +NSOperationQueue *operationQueue = manager.operationQueue; +[manager.reachabilityManager setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) { + switch (status) { + case AFNetworkReachabilityStatusReachableViaWWAN: + case AFNetworkReachabilityStatusReachableViaWiFi: + [operationQueue setSuspended:NO]; + break; + case AFNetworkReachabilityStatusNotReachable: + default: + [operationQueue setSuspended:YES]; + break; + } +}]; + +[manager.reachabilityManager startMonitoring]; +``` + +--- + +### Security Policy + +`AFSecurityPolicy` evaluates server trust against pinned X.509 certificates and public keys over secure connections. + +Adding pinned SSL certificates to your app helps prevent man-in-the-middle attacks and other vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged to route all communication over an HTTPS connection with SSL pinning configured and enabled. + +#### Allowing Invalid SSL Certificates + +```objective-c +AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; +manager.securityPolicy.allowInvalidCertificates = YES; // not recommended for production +``` + +--- + +### AFHTTPRequestOperation + +`AFHTTPRequestOperation` is a subclass of `AFURLConnectionOperation` for requests using the HTTP or HTTPS protocols. It encapsulates the concept of acceptable status codes and content types, which determine the success or failure of a request. + +Although `AFHTTPRequestOperationManager` is usually the best way to go about making requests, `AFHTTPRequestOperation` can be used by itself. + +#### `GET` with `AFHTTPRequestOperation` + +```objective-c +NSURL *URL = [NSURL URLWithString:@"http://example.com/resources/123.json"]; +NSURLRequest *request = [NSURLRequest requestWithURL:URL]; +AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:request]; +op.responseSerializer = [AFJSONResponseSerializer serializer]; +[op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + NSLog(@"JSON: %@", responseObject); +} failure:^(AFHTTPRequestOperation *operation, NSError *error) { + NSLog(@"Error: %@", error); +}]; +[[NSOperationQueue mainQueue] addOperation:op]; +``` + +#### Batch of Operations + +```objective-c +NSMutableArray *mutableOperations = [NSMutableArray array]; +for (NSURL *fileURL in filesToUpload) { + NSURLRequest *request = [[AFHTTPRequestSerializer serializer] multipartFormRequestWithMethod:@"POST" URLString:@"http://example.com/upload" parameters:nil constructingBodyWithBlock:^(id formData) { + [formData appendPartWithFileURL:fileURL name:@"images[]" error:nil]; + }]; + + AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; + + [mutableOperations addObject:operation]; +} + +NSArray *operations = [AFURLConnectionOperation batchOfRequestOperations:@[...] progressBlock:^(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations) { + NSLog(@"%lu of %lu complete", numberOfFinishedOperations, totalNumberOfOperations); +} completionBlock:^(NSArray *operations) { + NSLog(@"All operations in batch complete"); +}]; +[[NSOperationQueue mainQueue] addOperations:operations waitUntilFinished:NO]; +``` + +## Unit Tests + +AFNetworking includes a suite of unit tests within the Tests subdirectory. In order to run the unit tests, you must install the testing dependencies via [CocoaPods](https://cocoapods.org/): + + $ cd Tests + $ pod install + +Once testing dependencies are installed, you can execute the test suite via the 'iOS Tests' and 'OS X Tests' schemes within Xcode. + +### Running Tests from the Command Line + +Tests can also be run from the command line or within a continuous integration environment. The [`xcpretty`](https://github.com/supermarin/xcpretty) utility needs to be installed before running the tests from the command line: + + $ gem install xcpretty + +Once `xcpretty` is installed, you can execute the suite via `rake test`. + +## Credits + +AFNetworking is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). + +AFNetworking was originally created by [Scott Raymond](https://github.com/sco/) and [Mattt Thompson](https://github.com/mattt/) in the development of [Gowalla for iPhone](https://en.wikipedia.org/wiki/Gowalla). + +AFNetworking's logo was designed by [Alan Defibaugh](http://www.alandefibaugh.com/). + +And most of all, thanks to AFNetworking's [growing list of contributors](https://github.com/AFNetworking/AFNetworking/graphs/contributors). + +### Security Disclosure + +If you believe you have identified a security vulnerability with AFNetworking, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. + +## License + +AFNetworking is released under the MIT license. See LICENSE for details. diff --git a/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h b/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h new file mode 100644 index 0000000..3c7649b --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h @@ -0,0 +1,80 @@ +// AFNetworkActivityIndicatorManager.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +/** + `AFNetworkActivityIndicatorManager` manages the state of the network activity indicator in the status bar. When enabled, it will listen for notifications indicating that a network request operation has started or finished, and start or stop animating the indicator accordingly. The number of active requests is incremented and decremented much like a stack or a semaphore, and the activity indicator will animate so long as that number is greater than zero. + + You should enable the shared instance of `AFNetworkActivityIndicatorManager` when your application finishes launching. In `AppDelegate application:didFinishLaunchingWithOptions:` you can do so with the following code: + + [[AFNetworkActivityIndicatorManager sharedManager] setEnabled:YES]; + + By setting `enabled` to `YES` for `sharedManager`, the network activity indicator will show and hide automatically as requests start and finish. You should not ever need to call `incrementActivityCount` or `decrementActivityCount` yourself. + + See the Apple Human Interface Guidelines section about the Network Activity Indicator for more information: + http://developer.apple.com/library/iOS/#documentation/UserExperience/Conceptual/MobileHIG/UIElementGuidelines/UIElementGuidelines.html#//apple_ref/doc/uid/TP40006556-CH13-SW44 + */ +NS_EXTENSION_UNAVAILABLE_IOS("Use view controller based solutions where appropriate instead.") +@interface AFNetworkActivityIndicatorManager : NSObject + +/** + A Boolean value indicating whether the manager is enabled. + + If YES, the manager will change status bar network activity indicator according to network operation notifications it receives. The default value is NO. + */ +@property (nonatomic, assign, getter = isEnabled) BOOL enabled; + +/** + A Boolean value indicating whether the network activity indicator is currently displayed in the status bar. + */ +@property (readonly, nonatomic, assign) BOOL isNetworkActivityIndicatorVisible; + +/** + Returns the shared network activity indicator manager object for the system. + + @return The systemwide network activity indicator manager. + */ ++ (instancetype)sharedManager; + +/** + Increments the number of active network requests. If this number was zero before incrementing, this will start animating the status bar network activity indicator. + */ +- (void)incrementActivityCount; + +/** + Decrements the number of active network requests. If this number becomes zero after decrementing, this will stop animating the status bar network activity indicator. + */ +- (void)decrementActivityCount; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m b/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m new file mode 100644 index 0000000..cf13180 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m @@ -0,0 +1,170 @@ +// AFNetworkActivityIndicatorManager.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "AFNetworkActivityIndicatorManager.h" + +#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) + +#import "AFHTTPRequestOperation.h" + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 +#import "AFURLSessionManager.h" +#endif + +static NSTimeInterval const kAFNetworkActivityIndicatorInvisibilityDelay = 0.17; + +static NSURLRequest * AFNetworkRequestFromNotification(NSNotification *notification) { + if ([[notification object] isKindOfClass:[AFURLConnectionOperation class]]) { + return [(AFURLConnectionOperation *)[notification object] request]; + } + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 + if ([[notification object] respondsToSelector:@selector(originalRequest)]) { + return [(NSURLSessionTask *)[notification object] originalRequest]; + } +#endif + + return nil; +} + +@interface AFNetworkActivityIndicatorManager () +@property (readwrite, nonatomic, assign) NSInteger activityCount; +@property (readwrite, nonatomic, strong) NSTimer *activityIndicatorVisibilityTimer; +@property (readonly, nonatomic, getter = isNetworkActivityIndicatorVisible) BOOL networkActivityIndicatorVisible; + +- (void)updateNetworkActivityIndicatorVisibility; +- (void)updateNetworkActivityIndicatorVisibilityDelayed; +@end + +@implementation AFNetworkActivityIndicatorManager +@dynamic networkActivityIndicatorVisible; + ++ (instancetype)sharedManager { + static AFNetworkActivityIndicatorManager *_sharedManager = nil; + static dispatch_once_t oncePredicate; + dispatch_once(&oncePredicate, ^{ + _sharedManager = [[self alloc] init]; + }); + + return _sharedManager; +} + ++ (NSSet *)keyPathsForValuesAffectingIsNetworkActivityIndicatorVisible { + return [NSSet setWithObject:@"activityCount"]; +} + +- (id)init { + self = [super init]; + if (!self) { + return nil; + } + + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkRequestDidStart:) name:AFNetworkingOperationDidStartNotification object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkRequestDidFinish:) name:AFNetworkingOperationDidFinishNotification object:nil]; + +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkRequestDidStart:) name:AFNetworkingTaskDidResumeNotification object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkRequestDidFinish:) name:AFNetworkingTaskDidSuspendNotification object:nil]; + [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkRequestDidFinish:) name:AFNetworkingTaskDidCompleteNotification object:nil]; +#endif + + return self; +} + +- (void)dealloc { + [[NSNotificationCenter defaultCenter] removeObserver:self]; + + [_activityIndicatorVisibilityTimer invalidate]; +} + +- (void)updateNetworkActivityIndicatorVisibilityDelayed { + if (self.enabled) { + // Delay hiding of activity indicator for a short interval, to avoid flickering + if (![self isNetworkActivityIndicatorVisible]) { + [self.activityIndicatorVisibilityTimer invalidate]; + self.activityIndicatorVisibilityTimer = [NSTimer timerWithTimeInterval:kAFNetworkActivityIndicatorInvisibilityDelay target:self selector:@selector(updateNetworkActivityIndicatorVisibility) userInfo:nil repeats:NO]; + [[NSRunLoop mainRunLoop] addTimer:self.activityIndicatorVisibilityTimer forMode:NSRunLoopCommonModes]; + } else { + [self performSelectorOnMainThread:@selector(updateNetworkActivityIndicatorVisibility) withObject:nil waitUntilDone:NO modes:@[NSRunLoopCommonModes]]; + } + } +} + +- (BOOL)isNetworkActivityIndicatorVisible { + return self.activityCount > 0; +} + +- (void)updateNetworkActivityIndicatorVisibility { + [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:[self isNetworkActivityIndicatorVisible]]; +} + +- (void)setActivityCount:(NSInteger)activityCount { + @synchronized(self) { + _activityCount = activityCount; + } + + dispatch_async(dispatch_get_main_queue(), ^{ + [self updateNetworkActivityIndicatorVisibilityDelayed]; + }); +} + +- (void)incrementActivityCount { + [self willChangeValueForKey:@"activityCount"]; + @synchronized(self) { + _activityCount++; + } + [self didChangeValueForKey:@"activityCount"]; + + dispatch_async(dispatch_get_main_queue(), ^{ + [self updateNetworkActivityIndicatorVisibilityDelayed]; + }); +} + +- (void)decrementActivityCount { + [self willChangeValueForKey:@"activityCount"]; + @synchronized(self) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + _activityCount = MAX(_activityCount - 1, 0); +#pragma clang diagnostic pop + } + [self didChangeValueForKey:@"activityCount"]; + + dispatch_async(dispatch_get_main_queue(), ^{ + [self updateNetworkActivityIndicatorVisibilityDelayed]; + }); +} + +- (void)networkRequestDidStart:(NSNotification *)notification { + if ([AFNetworkRequestFromNotification(notification) URL]) { + [self incrementActivityCount]; + } +} + +- (void)networkRequestDidFinish:(NSNotification *)notification { + if ([AFNetworkRequestFromNotification(notification) URL]) { + [self decrementActivityCount]; + } +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h new file mode 100644 index 0000000..0c8f9b5 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h @@ -0,0 +1,63 @@ +// UIActivityIndicatorView+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +@class AFURLConnectionOperation; + +/** + This category adds methods to the UIKit framework's `UIActivityIndicatorView` class. The methods in this category provide support for automatically starting and stopping animation depending on the loading state of a request operation or session task. + */ +@interface UIActivityIndicatorView (AFNetworking) + +///---------------------------------- +/// @name Animating for Session Tasks +///---------------------------------- + +/** + Binds the animating state to the state of the specified task. + + @param task The task. If `nil`, automatic updating from any previously specified operation will be disabled. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setAnimatingWithStateOfTask:(nullable NSURLSessionTask *)task; +#endif + +///--------------------------------------- +/// @name Animating for Request Operations +///--------------------------------------- + +/** + Binds the animating state to the execution state of the specified operation. + + @param operation The operation. If `nil`, automatic updating from any previously specified operation will be disabled. + */ +- (void)setAnimatingWithStateOfOperation:(nullable AFURLConnectionOperation *)operation; + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m new file mode 100644 index 0000000..dd362b0 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m @@ -0,0 +1,171 @@ +// UIActivityIndicatorView+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIActivityIndicatorView+AFNetworking.h" +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFHTTPRequestOperation.h" + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +#import "AFURLSessionManager.h" +#endif + +@interface AFActivityIndicatorViewNotificationObserver : NSObject +@property (readonly, nonatomic, weak) UIActivityIndicatorView *activityIndicatorView; +- (instancetype)initWithActivityIndicatorView:(UIActivityIndicatorView *)activityIndicatorView; + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setAnimatingWithStateOfTask:(NSURLSessionTask *)task; +#endif +- (void)setAnimatingWithStateOfOperation:(AFURLConnectionOperation *)operation; + +@end + +@implementation UIActivityIndicatorView (AFNetworking) + +- (AFActivityIndicatorViewNotificationObserver *)af_notificationObserver { + AFActivityIndicatorViewNotificationObserver *notificationObserver = objc_getAssociatedObject(self, @selector(af_notificationObserver)); + if (notificationObserver == nil) { + notificationObserver = [[AFActivityIndicatorViewNotificationObserver alloc] initWithActivityIndicatorView:self]; + objc_setAssociatedObject(self, @selector(af_notificationObserver), notificationObserver, OBJC_ASSOCIATION_RETAIN_NONATOMIC); + } + return notificationObserver; +} + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setAnimatingWithStateOfTask:(NSURLSessionTask *)task { + [[self af_notificationObserver] setAnimatingWithStateOfTask:task]; +} +#endif + +- (void)setAnimatingWithStateOfOperation:(AFURLConnectionOperation *)operation { + [[self af_notificationObserver] setAnimatingWithStateOfOperation:operation]; +} + +@end + +@implementation AFActivityIndicatorViewNotificationObserver + +- (instancetype)initWithActivityIndicatorView:(UIActivityIndicatorView *)activityIndicatorView +{ + self = [super init]; + if (self) { + _activityIndicatorView = activityIndicatorView; + } + return self; +} + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setAnimatingWithStateOfTask:(NSURLSessionTask *)task { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + + [notificationCenter removeObserver:self name:AFNetworkingTaskDidResumeNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidSuspendNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidCompleteNotification object:nil]; + + if (task) { + if (task.state != NSURLSessionTaskStateCompleted) { + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" +#pragma clang diagnostic ignored "-Warc-repeated-use-of-weak" + if (task.state == NSURLSessionTaskStateRunning) { + [self.activityIndicatorView startAnimating]; + } else { + [self.activityIndicatorView stopAnimating]; + } +#pragma clang diagnostic pop + + [notificationCenter addObserver:self selector:@selector(af_startAnimating) name:AFNetworkingTaskDidResumeNotification object:task]; + [notificationCenter addObserver:self selector:@selector(af_stopAnimating) name:AFNetworkingTaskDidCompleteNotification object:task]; + [notificationCenter addObserver:self selector:@selector(af_stopAnimating) name:AFNetworkingTaskDidSuspendNotification object:task]; + } + } +} +#endif + +#pragma mark - + +- (void)setAnimatingWithStateOfOperation:(AFURLConnectionOperation *)operation { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + + [notificationCenter removeObserver:self name:AFNetworkingOperationDidStartNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingOperationDidFinishNotification object:nil]; + + if (operation) { + if (![operation isFinished]) { + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" +#pragma clang diagnostic ignored "-Warc-repeated-use-of-weak" + if ([operation isExecuting]) { + [self.activityIndicatorView startAnimating]; + } else { + [self.activityIndicatorView stopAnimating]; + } +#pragma clang diagnostic pop + + [notificationCenter addObserver:self selector:@selector(af_startAnimating) name:AFNetworkingOperationDidStartNotification object:operation]; + [notificationCenter addObserver:self selector:@selector(af_stopAnimating) name:AFNetworkingOperationDidFinishNotification object:operation]; + } + } +} + +#pragma mark - + +- (void)af_startAnimating { + dispatch_async(dispatch_get_main_queue(), ^{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" + [self.activityIndicatorView startAnimating]; +#pragma clang diagnostic pop + }); +} + +- (void)af_stopAnimating { + dispatch_async(dispatch_get_main_queue(), ^{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" + [self.activityIndicatorView stopAnimating]; +#pragma clang diagnostic pop + }); +} + +#pragma mark - + +- (void)dealloc { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 + [notificationCenter removeObserver:self name:AFNetworkingTaskDidCompleteNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidResumeNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidSuspendNotification object:nil]; +#endif + + [notificationCenter removeObserver:self name:AFNetworkingOperationDidStartNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingOperationDidFinishNotification object:nil]; +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h new file mode 100644 index 0000000..97f5622 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h @@ -0,0 +1,99 @@ +// UIAlertView+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class AFURLConnectionOperation; + +/** + This category adds methods to the UIKit framework's `UIAlertView` class. The methods in this category provide support for automatically showing an alert if a session task or request operation finishes with an error. Alert title and message are filled from the corresponding `localizedDescription` & `localizedRecoverySuggestion` or `localizedFailureReason` of the error. + */ +@interface UIAlertView (AFNetworking) + +///------------------------------------- +/// @name Showing Alert for Session Task +///------------------------------------- + +/** + Shows an alert view with the error of the specified session task, if any. + + @param task The session task. + @param delegate The alert view delegate. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 ++ (void)showAlertViewForTaskWithErrorOnCompletion:(NSURLSessionTask *)task + delegate:(nullable id)delegate NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extensions."); +#endif + +/** + Shows an alert view with the error of the specified session task, if any, with a custom cancel button title and other button titles. + + @param task The session task. + @param delegate The alert view delegate. + @param cancelButtonTitle The title of the cancel button or nil if there is no cancel button. Using this argument is equivalent to setting the cancel button index to the value returned by invoking addButtonWithTitle: specifying this title. + @param otherButtonTitles The title of another button. Using this argument is equivalent to invoking addButtonWithTitle: with this title to add more buttons. Too many buttons can cause the alert view to scroll. For guidelines on the best ways to use an alert in an app, see "Temporary Views". Titles of additional buttons to add to the receiver, terminated with `nil`. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 ++ (void)showAlertViewForTaskWithErrorOnCompletion:(NSURLSessionTask *)task + delegate:(nullable id)delegate + cancelButtonTitle:(nullable NSString *)cancelButtonTitle + otherButtonTitles:(nullable NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extensions."); +#endif + +///------------------------------------------ +/// @name Showing Alert for Request Operation +///------------------------------------------ + +/** + Shows an alert view with the error of the specified request operation, if any. + + @param operation The request operation. + @param delegate The alert view delegate. + */ ++ (void)showAlertViewForRequestOperationWithErrorOnCompletion:(AFURLConnectionOperation *)operation + delegate:(nullable id)delegate NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extensions."); + +/** + Shows an alert view with the error of the specified request operation, if any, with a custom cancel button title and other button titles. + + @param operation The request operation. + @param delegate The alert view delegate. + @param cancelButtonTitle The title of the cancel button or nil if there is no cancel button. Using this argument is equivalent to setting the cancel button index to the value returned by invoking addButtonWithTitle: specifying this title. + @param otherButtonTitles The title of another button. Using this argument is equivalent to invoking addButtonWithTitle: with this title to add more buttons. Too many buttons can cause the alert view to scroll. For guidelines on the best ways to use an alert in an app, see "Temporary Views". Titles of additional buttons to add to the receiver, terminated with `nil`. + */ ++ (void)showAlertViewForRequestOperationWithErrorOnCompletion:(AFURLConnectionOperation *)operation + delegate:(nullable id)delegate + cancelButtonTitle:(nullable NSString *)cancelButtonTitle + otherButtonTitles:(nullable NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extensions."); + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m new file mode 100644 index 0000000..0d1e9e7 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.m @@ -0,0 +1,141 @@ +// UIAlertView+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIAlertView+AFNetworking.h" + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFURLConnectionOperation.h" + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +#import "AFURLSessionManager.h" +#endif + +static void AFGetAlertViewTitleAndMessageFromError(NSError *error, NSString * __autoreleasing *title, NSString * __autoreleasing *message) { + if (error.localizedDescription && (error.localizedRecoverySuggestion || error.localizedFailureReason)) { + *title = error.localizedDescription; + + if (error.localizedRecoverySuggestion) { + *message = error.localizedRecoverySuggestion; + } else { + *message = error.localizedFailureReason; + } + } else if (error.localizedDescription) { + *title = NSLocalizedStringFromTable(@"Error", @"AFNetworking", @"Fallback Error Description"); + *message = error.localizedDescription; + } else { + *title = NSLocalizedStringFromTable(@"Error", @"AFNetworking", @"Fallback Error Description"); + *message = [NSString stringWithFormat:NSLocalizedStringFromTable(@"%@ Error: %ld", @"AFNetworking", @"Fallback Error Failure Reason Format"), error.domain, (long)error.code]; + } +} + +@implementation UIAlertView (AFNetworking) + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 ++ (void)showAlertViewForTaskWithErrorOnCompletion:(NSURLSessionTask *)task + delegate:(id)delegate +{ + [self showAlertViewForTaskWithErrorOnCompletion:task delegate:delegate cancelButtonTitle:NSLocalizedStringFromTable(@"Dismiss", @"AFNetworking", @"UIAlertView Cancel Button Title") otherButtonTitles:nil, nil]; +} + ++ (void)showAlertViewForTaskWithErrorOnCompletion:(NSURLSessionTask *)task + delegate:(id)delegate + cancelButtonTitle:(NSString *)cancelButtonTitle + otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION +{ + NSMutableArray *mutableOtherTitles = [NSMutableArray array]; + va_list otherButtonTitleList; + va_start(otherButtonTitleList, otherButtonTitles); + { + for (NSString *otherButtonTitle = otherButtonTitles; otherButtonTitle != nil; otherButtonTitle = va_arg(otherButtonTitleList, NSString *)) { + [mutableOtherTitles addObject:otherButtonTitle]; + } + } + va_end(otherButtonTitleList); + + __block __weak id observer = [[NSNotificationCenter defaultCenter] addObserverForName:AFNetworkingTaskDidCompleteNotification object:task queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *notification) { + NSError *error = notification.userInfo[AFNetworkingTaskDidCompleteErrorKey]; + if (error) { + NSString *title, *message; + AFGetAlertViewTitleAndMessageFromError(error, &title, &message); + + UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:nil delegate:delegate cancelButtonTitle:cancelButtonTitle otherButtonTitles:nil, nil]; + for (NSString *otherButtonTitle in mutableOtherTitles) { + [alertView addButtonWithTitle:otherButtonTitle]; + } + [alertView setTitle:title]; + [alertView setMessage:message]; + [alertView show]; + } + + [[NSNotificationCenter defaultCenter] removeObserver:observer]; + }]; +} +#endif + +#pragma mark - + ++ (void)showAlertViewForRequestOperationWithErrorOnCompletion:(AFURLConnectionOperation *)operation + delegate:(id)delegate +{ + [self showAlertViewForRequestOperationWithErrorOnCompletion:operation delegate:delegate cancelButtonTitle:NSLocalizedStringFromTable(@"Dismiss", @"AFNetworking", @"UIAlertView Cancel Button Title") otherButtonTitles:nil, nil]; +} + ++ (void)showAlertViewForRequestOperationWithErrorOnCompletion:(AFURLConnectionOperation *)operation + delegate:(id)delegate + cancelButtonTitle:(NSString *)cancelButtonTitle + otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION +{ + NSMutableArray *mutableOtherTitles = [NSMutableArray array]; + va_list otherButtonTitleList; + va_start(otherButtonTitleList, otherButtonTitles); + { + for (NSString *otherButtonTitle = otherButtonTitles; otherButtonTitle != nil; otherButtonTitle = va_arg(otherButtonTitleList, NSString *)) { + [mutableOtherTitles addObject:otherButtonTitle]; + } + } + va_end(otherButtonTitleList); + + __block __weak id observer = [[NSNotificationCenter defaultCenter] addObserverForName:AFNetworkingOperationDidFinishNotification object:operation queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *notification) { + + if (notification.object && [notification.object isKindOfClass:[AFURLConnectionOperation class]]) { + NSError *error = [(AFURLConnectionOperation *)notification.object error]; + if (error) { + NSString *title, *message; + AFGetAlertViewTitleAndMessageFromError(error, &title, &message); + + UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:nil delegate:delegate cancelButtonTitle:cancelButtonTitle otherButtonTitles:nil, nil]; + for (NSString *otherButtonTitle in mutableOtherTitles) { + [alertView addButtonWithTitle:otherButtonTitle]; + } + [alertView setTitle:title]; + [alertView setMessage:message]; + [alertView show]; + } + } + + [[NSNotificationCenter defaultCenter] removeObserver:observer]; + }]; +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h new file mode 100644 index 0000000..7289bdb --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h @@ -0,0 +1,186 @@ +// UIButton+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@protocol AFURLResponseSerialization, AFImageCache; + +/** + This category adds methods to the UIKit framework's `UIButton` class. The methods in this category provide support for loading remote images and background images asynchronously from a URL. + + @warning Compound values for control `state` (such as `UIControlStateHighlighted | UIControlStateDisabled`) are unsupported. + */ +@interface UIButton (AFNetworking) + +///---------------------------- +/// @name Accessing Image Cache +///---------------------------- + +/** + The image cache used to improve image loading performance on scroll views. By default, `UIButton` will use the `sharedImageCache` of `UIImageView`. + */ ++ (id )sharedImageCache; + +/** + Set the cache used for image loading. + + @param imageCache The image cache. + */ ++ (void)setSharedImageCache:(__nullable id )imageCache; + +///------------------------------------ +/// @name Accessing Response Serializer +///------------------------------------ + +/** + The response serializer used to create an image representation from the server response and response data. By default, this is an instance of `AFImageResponseSerializer`. + + @discussion Subclasses of `AFImageResponseSerializer` could be used to perform post-processing, such as color correction, face detection, or other effects. See https://github.com/AFNetworking/AFCoreImageSerializer + */ +@property (nonatomic, strong) id imageResponseSerializer; + +///-------------------- +/// @name Setting Image +///-------------------- + +/** + Asynchronously downloads an image from the specified URL, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + @param state The control state. + @param url The URL used for the image request. + */ +- (void)setImageForState:(UIControlState)state + withURL:(NSURL *)url; + +/** + Asynchronously downloads an image from the specified URL, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + @param state The control state. + @param url The URL used for the image request. + @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the button will not change its image until the image request finishes. + */ +- (void)setImageForState:(UIControlState)state + withURL:(NSURL *)url + placeholderImage:(nullable UIImage *)placeholderImage; + +/** + Asynchronously downloads an image from the specified URL request, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + If a success block is specified, it is the responsibility of the block to set the image of the button before returning. If no success block is specified, the default behavior of setting the image with `setImage:forState:` is applied. + + @param state The control state. + @param urlRequest The URL request used for the image request. + @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the button will not change its image until the image request finishes. + @param success A block to be executed when the image request operation finishes successfully. This block has no return value and takes two arguments: the server response and the image. If the image was returned from cache, the response parameter will be `nil`. + @param failure A block object to be executed when the image request operation finishes unsuccessfully, or that finishes successfully. This block has no return value and takes a single argument: the error that occurred. + */ +- (void)setImageForState:(UIControlState)state + withURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(nullable UIImage *)placeholderImage + success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(nullable void (^)(NSError *error))failure; + + +///------------------------------- +/// @name Setting Background Image +///------------------------------- + +/** + Asynchronously downloads an image from the specified URL, and sets it as the background image for the specified state once the request is finished. Any previous background image request for the receiver will be cancelled. + + If the background image is cached locally, the background image is set immediately, otherwise the specified placeholder background image will be set immediately, and then the remote background image will be set once the request is finished. + + @param state The control state. + @param url The URL used for the background image request. + */ +- (void)setBackgroundImageForState:(UIControlState)state + withURL:(NSURL *)url; + +/** + Asynchronously downloads an image from the specified URL, and sets it as the background image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + @param state The control state. + @param url The URL used for the background image request. + @param placeholderImage The background image to be set initially, until the background image request finishes. If `nil`, the button will not change its background image until the background image request finishes. + */ +- (void)setBackgroundImageForState:(UIControlState)state + withURL:(NSURL *)url + placeholderImage:(nullable UIImage *)placeholderImage; + +/** + Asynchronously downloads an image from the specified URL request, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + If a success block is specified, it is the responsibility of the block to set the image of the button before returning. If no success block is specified, the default behavior of setting the image with `setBackgroundImage:forState:` is applied. + + @param state The control state. + @param urlRequest The URL request used for the image request. + @param placeholderImage The background image to be set initially, until the background image request finishes. If `nil`, the button will not change its background image until the background image request finishes. + @param success A block to be executed when the image request operation finishes successfully. This block has no return value and takes two arguments: the server response and the image. If the image was returned from cache, the response parameter will be `nil`. + @param failure A block object to be executed when the image request operation finishes unsuccessfully, or that finishes successfully. This block has no return value and takes a single argument: the error that occurred. + */ +- (void)setBackgroundImageForState:(UIControlState)state + withURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(nullable UIImage *)placeholderImage + success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(nullable void (^)(NSError *error))failure; + + +///------------------------------ +/// @name Canceling Image Loading +///------------------------------ + +/** + Cancels any executing image operation for the specified control state of the receiver, if one exists. + + @param state The control state. + */ +- (void)cancelImageRequestOperationForState:(UIControlState)state; + +/** + Cancels any executing background image operation for the specified control state of the receiver, if one exists. + + @param state The control state. + */ +- (void)cancelBackgroundImageRequestOperationForState:(UIControlState)state; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m new file mode 100644 index 0000000..e5c36a5 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m @@ -0,0 +1,293 @@ +// UIButton+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIButton+AFNetworking.h" + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFURLResponseSerialization.h" +#import "AFHTTPRequestOperation.h" + +#import "UIImageView+AFNetworking.h" + +@interface UIButton (_AFNetworking) +@end + +@implementation UIButton (_AFNetworking) + ++ (NSOperationQueue *)af_sharedImageRequestOperationQueue { + static NSOperationQueue *_af_sharedImageRequestOperationQueue = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_sharedImageRequestOperationQueue = [[NSOperationQueue alloc] init]; + _af_sharedImageRequestOperationQueue.maxConcurrentOperationCount = NSOperationQueueDefaultMaxConcurrentOperationCount; + }); + + return _af_sharedImageRequestOperationQueue; +} + +#pragma mark - + +static char AFImageRequestOperationNormal; +static char AFImageRequestOperationHighlighted; +static char AFImageRequestOperationSelected; +static char AFImageRequestOperationDisabled; + +static const char * af_imageRequestOperationKeyForState(UIControlState state) { + switch (state) { + case UIControlStateHighlighted: + return &AFImageRequestOperationHighlighted; + case UIControlStateSelected: + return &AFImageRequestOperationSelected; + case UIControlStateDisabled: + return &AFImageRequestOperationDisabled; + case UIControlStateNormal: + default: + return &AFImageRequestOperationNormal; + } +} + +- (AFHTTPRequestOperation *)af_imageRequestOperationForState:(UIControlState)state { + return (AFHTTPRequestOperation *)objc_getAssociatedObject(self, af_imageRequestOperationKeyForState(state)); +} + +- (void)af_setImageRequestOperation:(AFHTTPRequestOperation *)imageRequestOperation + forState:(UIControlState)state +{ + objc_setAssociatedObject(self, af_imageRequestOperationKeyForState(state), imageRequestOperation, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +static char AFBackgroundImageRequestOperationNormal; +static char AFBackgroundImageRequestOperationHighlighted; +static char AFBackgroundImageRequestOperationSelected; +static char AFBackgroundImageRequestOperationDisabled; + +static const char * af_backgroundImageRequestOperationKeyForState(UIControlState state) { + switch (state) { + case UIControlStateHighlighted: + return &AFBackgroundImageRequestOperationHighlighted; + case UIControlStateSelected: + return &AFBackgroundImageRequestOperationSelected; + case UIControlStateDisabled: + return &AFBackgroundImageRequestOperationDisabled; + case UIControlStateNormal: + default: + return &AFBackgroundImageRequestOperationNormal; + } +} + +- (AFHTTPRequestOperation *)af_backgroundImageRequestOperationForState:(UIControlState)state { + return (AFHTTPRequestOperation *)objc_getAssociatedObject(self, af_backgroundImageRequestOperationKeyForState(state)); +} + +- (void)af_setBackgroundImageRequestOperation:(AFHTTPRequestOperation *)imageRequestOperation + forState:(UIControlState)state +{ + objc_setAssociatedObject(self, af_backgroundImageRequestOperationKeyForState(state), imageRequestOperation, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +@end + +#pragma mark - + +@implementation UIButton (AFNetworking) + ++ (id )sharedImageCache { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(sharedImageCache)) ?: [UIImageView sharedImageCache]; +#pragma clang diagnostic pop +} + ++ (void)setSharedImageCache:(__nullable id )imageCache { + objc_setAssociatedObject(self, @selector(sharedImageCache), imageCache, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +- (id )imageResponseSerializer { + static id _af_defaultImageResponseSerializer = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_defaultImageResponseSerializer = [AFImageResponseSerializer serializer]; + }); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(imageResponseSerializer)) ?: _af_defaultImageResponseSerializer; +#pragma clang diagnostic pop +} + +- (void)setImageResponseSerializer:(id )serializer { + objc_setAssociatedObject(self, @selector(imageResponseSerializer), serializer, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +- (void)setImageForState:(UIControlState)state + withURL:(NSURL *)url +{ + [self setImageForState:state withURL:url placeholderImage:nil]; +} + +- (void)setImageForState:(UIControlState)state + withURL:(NSURL *)url + placeholderImage:(UIImage *)placeholderImage +{ + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request addValue:@"image/*" forHTTPHeaderField:@"Accept"]; + + [self setImageForState:state withURLRequest:request placeholderImage:placeholderImage success:nil failure:nil]; +} + +- (void)setImageForState:(UIControlState)state + withURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(UIImage *)placeholderImage + success:(void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(void (^)(NSError *error))failure +{ + [self cancelImageRequestOperationForState:state]; + + UIImage *cachedImage = [[[self class] sharedImageCache] cachedImageForRequest:urlRequest]; + if (cachedImage) { + if (success) { + success(urlRequest, nil, cachedImage); + } else { + [self setImage:cachedImage forState:state]; + } + + [self af_setImageRequestOperation:nil forState:state]; + } else { + if (placeholderImage) { + [self setImage:placeholderImage forState:state]; + } + + __weak __typeof(self)weakSelf = self; + AFHTTPRequestOperation *imageRequestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest]; + imageRequestOperation.responseSerializer = self.imageResponseSerializer; + [imageRequestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + if ([[urlRequest URL] isEqual:[operation.request URL]]) { + if (success) { + success(operation.request, operation.response, responseObject); + } else if (responseObject) { + [strongSelf setImage:responseObject forState:state]; + } + } + [[[strongSelf class] sharedImageCache] cacheImage:responseObject forRequest:urlRequest]; + } failure:^(AFHTTPRequestOperation *operation, NSError *error) { + if ([[urlRequest URL] isEqual:[operation.request URL]]) { + if (failure) { + failure(error); + } + } + }]; + + [self af_setImageRequestOperation:imageRequestOperation forState:state]; + [[[self class] af_sharedImageRequestOperationQueue] addOperation:imageRequestOperation]; + } +} + +#pragma mark - + +- (void)setBackgroundImageForState:(UIControlState)state + withURL:(NSURL *)url +{ + [self setBackgroundImageForState:state withURL:url placeholderImage:nil]; +} + +- (void)setBackgroundImageForState:(UIControlState)state + withURL:(NSURL *)url + placeholderImage:(UIImage *)placeholderImage +{ + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request addValue:@"image/*" forHTTPHeaderField:@"Accept"]; + + [self setBackgroundImageForState:state withURLRequest:request placeholderImage:placeholderImage success:nil failure:nil]; +} + +- (void)setBackgroundImageForState:(UIControlState)state + withURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(UIImage *)placeholderImage + success:(void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(void (^)(NSError *error))failure +{ + [self cancelBackgroundImageRequestOperationForState:state]; + + UIImage *cachedImage = [[[self class] sharedImageCache] cachedImageForRequest:urlRequest]; + if (cachedImage) { + if (success) { + success(urlRequest, nil, cachedImage); + } else { + [self setBackgroundImage:cachedImage forState:state]; + } + + [self af_setBackgroundImageRequestOperation:nil forState:state]; + } else { + if (placeholderImage) { + [self setBackgroundImage:placeholderImage forState:state]; + } + + __weak __typeof(self)weakSelf = self; + AFHTTPRequestOperation *backgroundImageRequestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest]; + backgroundImageRequestOperation.responseSerializer = self.imageResponseSerializer; + [backgroundImageRequestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + if ([[urlRequest URL] isEqual:[operation.request URL]]) { + if (success) { + success(operation.request, operation.response, responseObject); + } else if (responseObject) { + [strongSelf setBackgroundImage:responseObject forState:state]; + } + } + [[[strongSelf class] sharedImageCache] cacheImage:responseObject forRequest:urlRequest]; + } failure:^(AFHTTPRequestOperation *operation, NSError *error) { + if ([[urlRequest URL] isEqual:[operation.request URL]]) { + if (failure) { + failure(error); + } + } + }]; + + [self af_setBackgroundImageRequestOperation:backgroundImageRequestOperation forState:state]; + [[[self class] af_sharedImageRequestOperationQueue] addOperation:backgroundImageRequestOperation]; + } +} + +#pragma mark - + +- (void)cancelImageRequestOperationForState:(UIControlState)state { + [[self af_imageRequestOperationForState:state] cancel]; + [self af_setImageRequestOperation:nil forState:state]; +} + +- (void)cancelBackgroundImageRequestOperationForState:(UIControlState)state { + [[self af_backgroundImageRequestOperationForState:state] cancel]; + [self af_setBackgroundImageRequestOperation:nil forState:state]; +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h new file mode 100644 index 0000000..3292920 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h @@ -0,0 +1,35 @@ +// +// UIImage+AFNetworking.h +// +// +// Created by Paulo Ferreira on 08/07/15. +// +// 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. + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +@interface UIImage (AFNetworking) + ++ (UIImage*) safeImageWithData:(NSData*)data; + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h new file mode 100644 index 0000000..bf61915 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h @@ -0,0 +1,146 @@ +// UIImageView+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@protocol AFURLResponseSerialization, AFImageCache; + +/** + This category adds methods to the UIKit framework's `UIImageView` class. The methods in this category provide support for loading remote images asynchronously from a URL. + */ +@interface UIImageView (AFNetworking) + +///---------------------------- +/// @name Accessing Image Cache +///---------------------------- + +/** + The image cache used to improve image loading performance on scroll views. By default, this is an `NSCache` subclass conforming to the `AFImageCache` protocol, which listens for notification warnings and evicts objects accordingly. +*/ ++ (id )sharedImageCache; + +/** + Set the cache used for image loading. + + @param imageCache The image cache. + */ ++ (void)setSharedImageCache:(__nullable id )imageCache; + +///------------------------------------ +/// @name Accessing Response Serializer +///------------------------------------ + +/** + The response serializer used to create an image representation from the server response and response data. By default, this is an instance of `AFImageResponseSerializer`. + + @discussion Subclasses of `AFImageResponseSerializer` could be used to perform post-processing, such as color correction, face detection, or other effects. See https://github.com/AFNetworking/AFCoreImageSerializer + */ +@property (nonatomic, strong) id imageResponseSerializer; + +///-------------------- +/// @name Setting Image +///-------------------- + +/** + Asynchronously downloads an image from the specified URL, and sets it once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + By default, URL requests have a `Accept` header field value of "image / *", a cache policy of `NSURLCacheStorageAllowed` and a timeout interval of 30 seconds, and are set not handle cookies. To configure URL requests differently, use `setImageWithURLRequest:placeholderImage:success:failure:` + + @param url The URL used for the image request. + */ +- (void)setImageWithURL:(NSURL *)url; + +/** + Asynchronously downloads an image from the specified URL, and sets it once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + By default, URL requests have a `Accept` header field value of "image / *", a cache policy of `NSURLCacheStorageAllowed` and a timeout interval of 30 seconds, and are set not handle cookies. To configure URL requests differently, use `setImageWithURLRequest:placeholderImage:success:failure:` + + @param url The URL used for the image request. + @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the image view will not change its image until the image request finishes. + */ +- (void)setImageWithURL:(NSURL *)url + placeholderImage:(nullable UIImage *)placeholderImage; + +/** + Asynchronously downloads an image from the specified URL request, and sets it once the request is finished. Any previous image request for the receiver will be cancelled. + + If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished. + + If a success block is specified, it is the responsibility of the block to set the image of the image view before returning. If no success block is specified, the default behavior of setting the image with `self.image = image` is applied. + + @param urlRequest The URL request used for the image request. + @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the image view will not change its image until the image request finishes. + @param success A block to be executed when the image request operation finishes successfully. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the image created from the response data of request. If the image was returned from cache, the response parameter will be `nil`. + @param failure A block object to be executed when the image request operation finishes unsuccessfully, or that finishes successfully. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the error object describing the network or parsing error that occurred. + */ +- (void)setImageWithURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(nullable UIImage *)placeholderImage + success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, NSError *error))failure; + +/** + Cancels any executing image operation for the receiver, if one exists. + */ +- (void)cancelImageRequestOperation; + +@end + +#pragma mark - + +/** + The `AFImageCache` protocol is adopted by an object used to cache images loaded by the AFNetworking category on `UIImageView`. + */ +@protocol AFImageCache + +/** + Returns a cached image for the specified request, if available. + + @param request The image request. + + @return The cached image. + */ +- (nullable UIImage *)cachedImageForRequest:(NSURLRequest *)request; + +/** + Caches a particular image for the specified request. + + @param image The image to cache. + @param request The request to be used as a cache key. + */ +- (void)cacheImage:(UIImage *)image + forRequest:(NSURLRequest *)request; +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m new file mode 100644 index 0000000..2efc160 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m @@ -0,0 +1,215 @@ +// UIImageView+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIImageView+AFNetworking.h" + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFHTTPRequestOperation.h" + +@interface AFImageCache : NSCache +@end + +#pragma mark - + +@interface UIImageView (_AFNetworking) +@property (readwrite, nonatomic, strong, setter = af_setImageRequestOperation:) AFHTTPRequestOperation *af_imageRequestOperation; +@end + +@implementation UIImageView (_AFNetworking) + ++ (NSOperationQueue *)af_sharedImageRequestOperationQueue { + static NSOperationQueue *_af_sharedImageRequestOperationQueue = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_sharedImageRequestOperationQueue = [[NSOperationQueue alloc] init]; + _af_sharedImageRequestOperationQueue.maxConcurrentOperationCount = NSOperationQueueDefaultMaxConcurrentOperationCount; + }); + + return _af_sharedImageRequestOperationQueue; +} + +- (AFHTTPRequestOperation *)af_imageRequestOperation { + return (AFHTTPRequestOperation *)objc_getAssociatedObject(self, @selector(af_imageRequestOperation)); +} + +- (void)af_setImageRequestOperation:(AFHTTPRequestOperation *)imageRequestOperation { + objc_setAssociatedObject(self, @selector(af_imageRequestOperation), imageRequestOperation, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +@end + +#pragma mark - + +@implementation UIImageView (AFNetworking) +@dynamic imageResponseSerializer; + ++ (id )sharedImageCache { + static AFImageCache *_af_defaultImageCache = nil; + static dispatch_once_t oncePredicate; + dispatch_once(&oncePredicate, ^{ + _af_defaultImageCache = [[AFImageCache alloc] init]; + + [[NSNotificationCenter defaultCenter] addObserverForName:UIApplicationDidReceiveMemoryWarningNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * __unused notification) { + [_af_defaultImageCache removeAllObjects]; + }]; + }); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(sharedImageCache)) ?: _af_defaultImageCache; +#pragma clang diagnostic pop +} + ++ (void)setSharedImageCache:(__nullable id )imageCache { + objc_setAssociatedObject(self, @selector(sharedImageCache), imageCache, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +- (id )imageResponseSerializer { + static id _af_defaultImageResponseSerializer = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_defaultImageResponseSerializer = [AFImageResponseSerializer serializer]; + }); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(imageResponseSerializer)) ?: _af_defaultImageResponseSerializer; +#pragma clang diagnostic pop +} + +- (void)setImageResponseSerializer:(id )serializer { + objc_setAssociatedObject(self, @selector(imageResponseSerializer), serializer, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +- (void)setImageWithURL:(NSURL *)url { + [self setImageWithURL:url placeholderImage:nil]; +} + +- (void)setImageWithURL:(NSURL *)url + placeholderImage:(UIImage *)placeholderImage +{ + NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; + [request addValue:@"image/*" forHTTPHeaderField:@"Accept"]; + + [self setImageWithURLRequest:request placeholderImage:placeholderImage success:nil failure:nil]; +} + +- (void)setImageWithURLRequest:(NSURLRequest *)urlRequest + placeholderImage:(UIImage *)placeholderImage + success:(void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success + failure:(void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, NSError *error))failure +{ + [self cancelImageRequestOperation]; + + UIImage *cachedImage = [[[self class] sharedImageCache] cachedImageForRequest:urlRequest]; + if (cachedImage) { + if (success) { + success(urlRequest, nil, cachedImage); + } else { + self.image = cachedImage; + } + + self.af_imageRequestOperation = nil; + } else { + if (placeholderImage) { + self.image = placeholderImage; + } + + __weak __typeof(self)weakSelf = self; + self.af_imageRequestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:urlRequest]; + self.af_imageRequestOperation.responseSerializer = self.imageResponseSerializer; + [self.af_imageRequestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + if ([[urlRequest URL] isEqual:[strongSelf.af_imageRequestOperation.request URL]]) { + if (success) { + success(urlRequest, operation.response, responseObject); + } else if (responseObject) { + strongSelf.image = responseObject; + } + + if (operation == strongSelf.af_imageRequestOperation){ + strongSelf.af_imageRequestOperation = nil; + } + } + + [[[strongSelf class] sharedImageCache] cacheImage:responseObject forRequest:urlRequest]; + } failure:^(AFHTTPRequestOperation *operation, NSError *error) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + if ([[urlRequest URL] isEqual:[strongSelf.af_imageRequestOperation.request URL]]) { + if (failure) { + failure(urlRequest, operation.response, error); + } + + if (operation == strongSelf.af_imageRequestOperation){ + strongSelf.af_imageRequestOperation = nil; + } + } + }]; + + [[[self class] af_sharedImageRequestOperationQueue] addOperation:self.af_imageRequestOperation]; + } +} + +- (void)cancelImageRequestOperation { + [self.af_imageRequestOperation cancel]; + self.af_imageRequestOperation = nil; +} + +@end + +#pragma mark - + +static inline NSString * AFImageCacheKeyFromURLRequest(NSURLRequest *request) { + return [[request URL] absoluteString]; +} + +@implementation AFImageCache + +- (UIImage *)cachedImageForRequest:(NSURLRequest *)request { + switch ([request cachePolicy]) { + case NSURLRequestReloadIgnoringCacheData: + case NSURLRequestReloadIgnoringLocalAndRemoteCacheData: + return nil; + default: + break; + } + + return [self objectForKey:AFImageCacheKeyFromURLRequest(request)]; +} + +- (void)cacheImage:(UIImage *)image + forRequest:(NSURLRequest *)request +{ + if (image && request) { + [self setObject:image forKey:AFImageCacheKeyFromURLRequest(request)]; + } +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h new file mode 100644 index 0000000..49850ed --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h @@ -0,0 +1,39 @@ +// UIKit+AFNetworking.h +// +// Copyright (c) 2013 AFNetworking (http://afnetworking.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. + +#if TARGET_OS_IOS +#import + +#ifndef _UIKIT_AFNETWORKING_ + #define _UIKIT_AFNETWORKING_ + + #import "AFNetworkActivityIndicatorManager.h" + + #import "UIActivityIndicatorView+AFNetworking.h" + #import "UIAlertView+AFNetworking.h" + #import "UIButton+AFNetworking.h" + #import "UIImageView+AFNetworking.h" + #import "UIProgressView+AFNetworking.h" + #import "UIRefreshControl+AFNetworking.h" + #import "UIWebView+AFNetworking.h" +#endif /* _UIKIT_AFNETWORKING_ */ +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h new file mode 100644 index 0000000..5c00d6d --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h @@ -0,0 +1,91 @@ +// UIProgressView+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class AFURLConnectionOperation; + +/** + This category adds methods to the UIKit framework's `UIProgressView` class. The methods in this category provide support for binding the progress to the upload and download progress of a session task or request operation. + */ +@interface UIProgressView (AFNetworking) + +///------------------------------------ +/// @name Setting Session Task Progress +///------------------------------------ + +/** + Binds the progress to the upload progress of the specified session task. + + @param task The session task. + @param animated `YES` if the change should be animated, `NO` if the change should happen immediately. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setProgressWithUploadProgressOfTask:(NSURLSessionUploadTask *)task + animated:(BOOL)animated; +#endif + +/** + Binds the progress to the download progress of the specified session task. + + @param task The session task. + @param animated `YES` if the change should be animated, `NO` if the change should happen immediately. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setProgressWithDownloadProgressOfTask:(NSURLSessionDownloadTask *)task + animated:(BOOL)animated; +#endif + +///------------------------------------ +/// @name Setting Session Task Progress +///------------------------------------ + +/** + Binds the progress to the upload progress of the specified request operation. + + @param operation The request operation. + @param animated `YES` if the change should be animated, `NO` if the change should happen immediately. + */ +- (void)setProgressWithUploadProgressOfOperation:(AFURLConnectionOperation *)operation + animated:(BOOL)animated; + +/** + Binds the progress to the download progress of the specified request operation. + + @param operation The request operation. + @param animated `YES` if the change should be animated, `NO` if the change should happen immediately. + */ +- (void)setProgressWithDownloadProgressOfOperation:(AFURLConnectionOperation *)operation + animated:(BOOL)animated; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m new file mode 100644 index 0000000..ad2c280 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m @@ -0,0 +1,182 @@ +// UIProgressView+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIProgressView+AFNetworking.h" + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFURLConnectionOperation.h" + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +#import "AFURLSessionManager.h" +#endif + +static void * AFTaskCountOfBytesSentContext = &AFTaskCountOfBytesSentContext; +static void * AFTaskCountOfBytesReceivedContext = &AFTaskCountOfBytesReceivedContext; + +@interface AFURLConnectionOperation (_UIProgressView) +@property (readwrite, nonatomic, copy) void (^uploadProgress)(NSUInteger bytes, long long totalBytes, long long totalBytesExpected); +@property (readwrite, nonatomic, assign, setter = af_setUploadProgressAnimated:) BOOL af_uploadProgressAnimated; + +@property (readwrite, nonatomic, copy) void (^downloadProgress)(NSUInteger bytes, long long totalBytes, long long totalBytesExpected); +@property (readwrite, nonatomic, assign, setter = af_setDownloadProgressAnimated:) BOOL af_downloadProgressAnimated; +@end + +@implementation AFURLConnectionOperation (_UIProgressView) +@dynamic uploadProgress; // Implemented in AFURLConnectionOperation +@dynamic af_uploadProgressAnimated; + +@dynamic downloadProgress; // Implemented in AFURLConnectionOperation +@dynamic af_downloadProgressAnimated; +@end + +#pragma mark - + +@implementation UIProgressView (AFNetworking) + +- (BOOL)af_uploadProgressAnimated { + return [(NSNumber *)objc_getAssociatedObject(self, @selector(af_uploadProgressAnimated)) boolValue]; +} + +- (void)af_setUploadProgressAnimated:(BOOL)animated { + objc_setAssociatedObject(self, @selector(af_uploadProgressAnimated), @(animated), OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +- (BOOL)af_downloadProgressAnimated { + return [(NSNumber *)objc_getAssociatedObject(self, @selector(af_downloadProgressAnimated)) boolValue]; +} + +- (void)af_setDownloadProgressAnimated:(BOOL)animated { + objc_setAssociatedObject(self, @selector(af_downloadProgressAnimated), @(animated), OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setProgressWithUploadProgressOfTask:(NSURLSessionUploadTask *)task + animated:(BOOL)animated +{ + [task addObserver:self forKeyPath:@"state" options:(NSKeyValueObservingOptions)0 context:AFTaskCountOfBytesSentContext]; + [task addObserver:self forKeyPath:@"countOfBytesSent" options:(NSKeyValueObservingOptions)0 context:AFTaskCountOfBytesSentContext]; + + [self af_setUploadProgressAnimated:animated]; +} + +- (void)setProgressWithDownloadProgressOfTask:(NSURLSessionDownloadTask *)task + animated:(BOOL)animated +{ + [task addObserver:self forKeyPath:@"state" options:(NSKeyValueObservingOptions)0 context:AFTaskCountOfBytesReceivedContext]; + [task addObserver:self forKeyPath:@"countOfBytesReceived" options:(NSKeyValueObservingOptions)0 context:AFTaskCountOfBytesReceivedContext]; + + [self af_setDownloadProgressAnimated:animated]; +} +#endif + +#pragma mark - + +- (void)setProgressWithUploadProgressOfOperation:(AFURLConnectionOperation *)operation + animated:(BOOL)animated +{ + __weak __typeof(self)weakSelf = self; + void (^original)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) = [operation.uploadProgress copy]; + [operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) { + if (original) { + original(bytesWritten, totalBytesWritten, totalBytesExpectedToWrite); + } + + dispatch_async(dispatch_get_main_queue(), ^{ + if (totalBytesExpectedToWrite > 0) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + [strongSelf setProgress:(totalBytesWritten / (totalBytesExpectedToWrite * 1.0f)) animated:animated]; + } + }); + }]; +} + +- (void)setProgressWithDownloadProgressOfOperation:(AFURLConnectionOperation *)operation + animated:(BOOL)animated +{ + __weak __typeof(self)weakSelf = self; + void (^original)(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) = [operation.downloadProgress copy]; + [operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) { + if (original) { + original(bytesRead, totalBytesRead, totalBytesExpectedToRead); + } + + dispatch_async(dispatch_get_main_queue(), ^{ + if (totalBytesExpectedToRead > 0) { + __strong __typeof(weakSelf)strongSelf = weakSelf; + [strongSelf setProgress:(totalBytesRead / (totalBytesExpectedToRead * 1.0f)) animated:animated]; + } + }); + }]; +} + +#pragma mark - NSKeyValueObserving + +- (void)observeValueForKeyPath:(NSString *)keyPath + ofObject:(id)object + change:(__unused NSDictionary *)change + context:(void *)context +{ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 + if (context == AFTaskCountOfBytesSentContext || context == AFTaskCountOfBytesReceivedContext) { + if ([keyPath isEqualToString:NSStringFromSelector(@selector(countOfBytesSent))]) { + if ([object countOfBytesExpectedToSend] > 0) { + dispatch_async(dispatch_get_main_queue(), ^{ + [self setProgress:[object countOfBytesSent] / ([object countOfBytesExpectedToSend] * 1.0f) animated:self.af_uploadProgressAnimated]; + }); + } + } + + if ([keyPath isEqualToString:NSStringFromSelector(@selector(countOfBytesReceived))]) { + if ([object countOfBytesExpectedToReceive] > 0) { + dispatch_async(dispatch_get_main_queue(), ^{ + [self setProgress:[object countOfBytesReceived] / ([object countOfBytesExpectedToReceive] * 1.0f) animated:self.af_downloadProgressAnimated]; + }); + } + } + + if ([keyPath isEqualToString:NSStringFromSelector(@selector(state))]) { + if ([(NSURLSessionTask *)object state] == NSURLSessionTaskStateCompleted) { + @try { + [object removeObserver:self forKeyPath:NSStringFromSelector(@selector(state))]; + + if (context == AFTaskCountOfBytesSentContext) { + [object removeObserver:self forKeyPath:NSStringFromSelector(@selector(countOfBytesSent))]; + } + + if (context == AFTaskCountOfBytesReceivedContext) { + [object removeObserver:self forKeyPath:NSStringFromSelector(@selector(countOfBytesReceived))]; + } + } + @catch (NSException * __unused exception) {} + } + } + } +#endif +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h new file mode 100644 index 0000000..a65e390 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h @@ -0,0 +1,68 @@ +// UIRefreshControl+AFNetworking.m +// +// Copyright (c) 2014 AFNetworking (http://afnetworking.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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class AFURLConnectionOperation; + +/** + This category adds methods to the UIKit framework's `UIRefreshControl` class. The methods in this category provide support for automatically beginning and ending refreshing depending on the loading state of a request operation or session task. + */ +@interface UIRefreshControl (AFNetworking) + +///----------------------------------- +/// @name Refreshing for Session Tasks +///----------------------------------- + +/** + Binds the refreshing state to the state of the specified task. + + @param task The task. If `nil`, automatic updating from any previously specified operation will be disabled. + */ +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setRefreshingWithStateOfTask:(NSURLSessionTask *)task; +#endif + +///---------------------------------------- +/// @name Refreshing for Request Operations +///---------------------------------------- + +/** + Binds the refreshing state to the execution state of the specified operation. + + @param operation The operation. If `nil`, automatic updating from any previously specified operation will be disabled. + */ +- (void)setRefreshingWithStateOfOperation:(AFURLConnectionOperation *)operation; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m new file mode 100644 index 0000000..4c19245 --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m @@ -0,0 +1,166 @@ +// UIRefreshControl+AFNetworking.m +// +// Copyright (c) 2014 AFNetworking (http://afnetworking.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. + +#import "UIRefreshControl+AFNetworking.h" +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFHTTPRequestOperation.h" + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +#import "AFURLSessionManager.h" +#endif + +@interface AFRefreshControlNotificationObserver : NSObject +@property (readonly, nonatomic, weak) UIRefreshControl *refreshControl; +- (instancetype)initWithActivityRefreshControl:(UIRefreshControl *)refreshControl; + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setRefreshingWithStateOfTask:(NSURLSessionTask *)task; +#endif +- (void)setRefreshingWithStateOfOperation:(AFURLConnectionOperation *)operation; + +@end + +@implementation UIRefreshControl (AFNetworking) + +- (AFRefreshControlNotificationObserver *)af_notificationObserver { + AFRefreshControlNotificationObserver *notificationObserver = objc_getAssociatedObject(self, @selector(af_notificationObserver)); + if (notificationObserver == nil) { + notificationObserver = [[AFRefreshControlNotificationObserver alloc] initWithActivityRefreshControl:self]; + objc_setAssociatedObject(self, @selector(af_notificationObserver), notificationObserver, OBJC_ASSOCIATION_RETAIN_NONATOMIC); + } + return notificationObserver; +} + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setRefreshingWithStateOfTask:(NSURLSessionTask *)task { + [[self af_notificationObserver] setRefreshingWithStateOfTask:task]; +} +#endif + +- (void)setRefreshingWithStateOfOperation:(AFURLConnectionOperation *)operation { + [[self af_notificationObserver] setRefreshingWithStateOfOperation:operation]; +} + +@end + +@implementation AFRefreshControlNotificationObserver + +- (instancetype)initWithActivityRefreshControl:(UIRefreshControl *)refreshControl +{ + self = [super init]; + if (self) { + _refreshControl = refreshControl; + } + return self; +} + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 +- (void)setRefreshingWithStateOfTask:(NSURLSessionTask *)task { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + + [notificationCenter removeObserver:self name:AFNetworkingTaskDidResumeNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidSuspendNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidCompleteNotification object:nil]; + + if (task) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" +#pragma clang diagnostic ignored "-Warc-repeated-use-of-weak" + if (task.state == NSURLSessionTaskStateRunning) { + [self.refreshControl beginRefreshing]; + + [notificationCenter addObserver:self selector:@selector(af_beginRefreshing) name:AFNetworkingTaskDidResumeNotification object:task]; + [notificationCenter addObserver:self selector:@selector(af_endRefreshing) name:AFNetworkingTaskDidCompleteNotification object:task]; + [notificationCenter addObserver:self selector:@selector(af_endRefreshing) name:AFNetworkingTaskDidSuspendNotification object:task]; + } else { + [self.refreshControl endRefreshing]; + } +#pragma clang diagnostic pop + } +} +#endif + +- (void)setRefreshingWithStateOfOperation:(AFURLConnectionOperation *)operation { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + + [notificationCenter removeObserver:self name:AFNetworkingOperationDidStartNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingOperationDidFinishNotification object:nil]; + + if (operation) { +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" +#pragma clang diagnostic ignored "-Warc-repeated-use-of-weak" + if (![operation isFinished]) { + if ([operation isExecuting]) { + [self.refreshControl beginRefreshing]; + } else { + [self.refreshControl endRefreshing]; + } + + [notificationCenter addObserver:self selector:@selector(af_beginRefreshing) name:AFNetworkingOperationDidStartNotification object:operation]; + [notificationCenter addObserver:self selector:@selector(af_endRefreshing) name:AFNetworkingOperationDidFinishNotification object:operation]; + } +#pragma clang diagnostic pop + } +} + +#pragma mark - + +- (void)af_beginRefreshing { + dispatch_async(dispatch_get_main_queue(), ^{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" + [self.refreshControl beginRefreshing]; +#pragma clang diagnostic pop + }); +} + +- (void)af_endRefreshing { + dispatch_async(dispatch_get_main_queue(), ^{ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreceiver-is-weak" + [self.refreshControl endRefreshing]; +#pragma clang diagnostic pop + }); +} + +#pragma mark - + +- (void)dealloc { + NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; + +#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000 + [notificationCenter removeObserver:self name:AFNetworkingTaskDidCompleteNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidResumeNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingTaskDidSuspendNotification object:nil]; +#endif + + [notificationCenter removeObserver:self name:AFNetworkingOperationDidStartNotification object:nil]; + [notificationCenter removeObserver:self name:AFNetworkingOperationDidFinishNotification object:nil]; +} + +@end + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h b/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h new file mode 100644 index 0000000..5d61d6a --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h @@ -0,0 +1,86 @@ +// UIWebView+AFNetworking.h +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class AFHTTPRequestSerializer, AFHTTPResponseSerializer; +@protocol AFURLRequestSerialization, AFURLResponseSerialization; + +/** + This category adds methods to the UIKit framework's `UIWebView` class. The methods in this category provide increased control over the request cycle, including progress monitoring and success / failure handling. + + @discussion When using these category methods, make sure to assign `delegate` for the web view, which implements `–webView:shouldStartLoadWithRequest:navigationType:` appropriately. This allows for tapped links to be loaded through AFNetworking, and can ensure that `canGoBack` & `canGoForward` update their values correctly. + */ +@interface UIWebView (AFNetworking) + +/** + The request serializer used to serialize requests made with the `-loadRequest:...` category methods. By default, this is an instance of `AFHTTPRequestSerializer`. + */ +@property (nonatomic, strong) AFHTTPRequestSerializer * requestSerializer; + +/** + The response serializer used to serialize responses made with the `-loadRequest:...` category methods. By default, this is an instance of `AFHTTPResponseSerializer`. + */ +@property (nonatomic, strong) AFHTTPResponseSerializer * responseSerializer; + +/** + Asynchronously loads the specified request. + + @param request A URL request identifying the location of the content to load. This must not be `nil`. + @param progress A block object to be called when an undetermined number of bytes have been downloaded from the server. This block has no return value and takes three arguments: the number of bytes read since the last time the download progress block was called, the total bytes read, and the total bytes expected to be read during the request, as initially determined by the expected content size of the `NSHTTPURLResponse` object. This block may be called multiple times, and will execute on the main thread. + @param success A block object to be executed when the request finishes loading successfully. This block returns the HTML string to be loaded by the web view, and takes two arguments: the response, and the response string. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a single argument: the error that occurred. + */ +- (void)loadRequest:(NSURLRequest *)request + progress:(nullable void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))progress + success:(nullable NSString * (^)(NSHTTPURLResponse *response, NSString *HTML))success + failure:(nullable void (^)(NSError *error))failure; + +/** + Asynchronously loads the data associated with a particular request with a specified MIME type and text encoding. + + @param request A URL request identifying the location of the content to load. This must not be `nil`. + @param MIMEType The MIME type of the content. Defaults to the content type of the response if not specified. + @param textEncodingName The IANA encoding name, as in `utf-8` or `utf-16`. Defaults to the response text encoding if not specified. + @param progress A block object to be called when an undetermined number of bytes have been downloaded from the server. This block has no return value and takes three arguments: the number of bytes read since the last time the download progress block was called, the total bytes read, and the total bytes expected to be read during the request, as initially determined by the expected content size of the `NSHTTPURLResponse` object. This block may be called multiple times, and will execute on the main thread. + @param success A block object to be executed when the request finishes loading successfully. This block returns the data to be loaded by the web view and takes two arguments: the response, and the downloaded data. + @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the response data. This block has no return value and takes a single argument: the error that occurred. + */ +- (void)loadRequest:(NSURLRequest *)request + MIMEType:(nullable NSString *)MIMEType + textEncodingName:(nullable NSString *)textEncodingName + progress:(nullable void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))progress + success:(nullable NSData * (^)(NSHTTPURLResponse *response, NSData *data))success + failure:(nullable void (^)(NSError *error))failure; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m b/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m new file mode 100644 index 0000000..93eacaa --- /dev/null +++ b/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m @@ -0,0 +1,159 @@ +// UIWebView+AFNetworking.m +// Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) +// +// 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. + +#import "UIWebView+AFNetworking.h" + +#import + +#if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) + +#import "AFHTTPRequestOperation.h" +#import "AFURLResponseSerialization.h" +#import "AFURLRequestSerialization.h" + +@interface UIWebView (_AFNetworking) +@property (readwrite, nonatomic, strong, setter = af_setHTTPRequestOperation:) AFHTTPRequestOperation *af_HTTPRequestOperation; +@end + +@implementation UIWebView (_AFNetworking) + +- (AFHTTPRequestOperation *)af_HTTPRequestOperation { + return (AFHTTPRequestOperation *)objc_getAssociatedObject(self, @selector(af_HTTPRequestOperation)); +} + +- (void)af_setHTTPRequestOperation:(AFHTTPRequestOperation *)operation { + objc_setAssociatedObject(self, @selector(af_HTTPRequestOperation), operation, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +@end + +#pragma mark - + +@implementation UIWebView (AFNetworking) + +- (AFHTTPRequestSerializer *)requestSerializer { + static AFHTTPRequestSerializer *_af_defaultRequestSerializer = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_defaultRequestSerializer = [AFHTTPRequestSerializer serializer]; + }); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(requestSerializer)) ?: _af_defaultRequestSerializer; +#pragma clang diagnostic pop +} + +- (void)setRequestSerializer:(AFHTTPRequestSerializer *)requestSerializer { + objc_setAssociatedObject(self, @selector(requestSerializer), requestSerializer, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +- (AFHTTPResponseSerializer *)responseSerializer { + static AFHTTPResponseSerializer *_af_defaultResponseSerializer = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + _af_defaultResponseSerializer = [AFHTTPResponseSerializer serializer]; + }); + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + return objc_getAssociatedObject(self, @selector(responseSerializer)) ?: _af_defaultResponseSerializer; +#pragma clang diagnostic pop +} + +- (void)setResponseSerializer:(AFHTTPResponseSerializer *)responseSerializer { + objc_setAssociatedObject(self, @selector(responseSerializer), responseSerializer, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + +#pragma mark - + +- (void)loadRequest:(NSURLRequest *)request + progress:(void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))progress + success:(NSString * (^)(NSHTTPURLResponse *response, NSString *HTML))success + failure:(void (^)(NSError *error))failure +{ + [self loadRequest:request MIMEType:nil textEncodingName:nil progress:progress success:^NSData *(NSHTTPURLResponse *response, NSData *data) { + NSStringEncoding stringEncoding = NSUTF8StringEncoding; + if (response.textEncodingName) { + CFStringEncoding encoding = CFStringConvertIANACharSetNameToEncoding((CFStringRef)response.textEncodingName); + if (encoding != kCFStringEncodingInvalidId) { + stringEncoding = CFStringConvertEncodingToNSStringEncoding(encoding); + } + } + + NSString *string = [[NSString alloc] initWithData:data encoding:stringEncoding]; + if (success) { + string = success(response, string); + } + + return [string dataUsingEncoding:stringEncoding]; + } failure:failure]; +} + +- (void)loadRequest:(NSURLRequest *)request + MIMEType:(NSString *)MIMEType + textEncodingName:(NSString *)textEncodingName + progress:(void (^)(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite))progress + success:(NSData * (^)(NSHTTPURLResponse *response, NSData *data))success + failure:(void (^)(NSError *error))failure +{ + NSParameterAssert(request); + + if (self.af_HTTPRequestOperation) { + [self.af_HTTPRequestOperation cancel]; + } + + request = [self.requestSerializer requestBySerializingRequest:request withParameters:nil error:nil]; + + self.af_HTTPRequestOperation = [[AFHTTPRequestOperation alloc] initWithRequest:request]; + self.af_HTTPRequestOperation.responseSerializer = self.responseSerializer; + + __weak __typeof(self)weakSelf = self; + [self.af_HTTPRequestOperation setDownloadProgressBlock:progress]; + [self.af_HTTPRequestOperation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id __unused responseObject) { + NSData *data = success ? success(operation.response, operation.responseData) : operation.responseData; + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgnu" + __strong __typeof(weakSelf) strongSelf = weakSelf; + [strongSelf loadData:data MIMEType:(MIMEType ?: [operation.response MIMEType]) textEncodingName:(textEncodingName ?: [operation.response textEncodingName]) baseURL:[operation.response URL]]; + + if ([strongSelf.delegate respondsToSelector:@selector(webViewDidFinishLoad:)]) { + [strongSelf.delegate webViewDidFinishLoad:strongSelf]; + } + +#pragma clang diagnostic pop + } failure:^(AFHTTPRequestOperation * __unused operation, NSError *error) { + if (failure) { + failure(error); + } + }]; + + [self.af_HTTPRequestOperation start]; + + if ([self.delegate respondsToSelector:@selector(webViewDidStartLoad:)]) { + [self.delegate webViewDidStartLoad:self]; + } +} + +@end + +#endif diff --git a/Pods/AeroGearHttp/AeroGearHttp/AuthzModule.swift b/Pods/AeroGearHttp/AeroGearHttp/AuthzModule.swift new file mode 100644 index 0000000..f67dc21 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/AuthzModule.swift @@ -0,0 +1,74 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +The protocol that authorization modules must adhere to. +*/ +public protocol AuthzModule { + + /** + Gateway to request authorization access. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + func requestAccess(completionHandler: (AnyObject?, NSError?) -> Void) + + /** + Request an authorization code. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + func requestAuthorizationCode(completionHandler: (AnyObject?, NSError?) -> Void) + + /** + Exchange an authorization code for an access token. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + func exchangeAuthorizationCodeForAccessToken(code: String, completionHandler: (AnyObject?, NSError?) -> Void) + + /** + Request to refresh an access token. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + func refreshAccessToken(completionHandler: (AnyObject?, NSError?) -> Void) + + /** + Request to revoke access. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) + + /** + Return any authorization fields. + + :returns: a dictionary filled with the authorization fields. + */ + func authorizationFields() -> [String: String]? + + /** + Returns a boolean indicating whether authorization has been granted. + + :returns: true if authorized, false otherwise. + */ + func isAuthorized() -> Bool + +} \ No newline at end of file diff --git a/Pods/AeroGearHttp/AeroGearHttp/Http.swift b/Pods/AeroGearHttp/AeroGearHttp/Http.swift new file mode 100644 index 0000000..a6cd355 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/Http.swift @@ -0,0 +1,608 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +The HTTP method verb: + +- GET: GET http verb +- HEAD: HEAD http verb +- DELETE: DELETE http verb +- POST: POST http verb +- PUT: PUT http verb +*/ +public enum HttpMethod: String { + case GET = "GET" + case HEAD = "HEAD" + case DELETE = "DELETE" + case POST = "POST" + case PUT = "PUT" +} + +/** +The file request type: + +- Download: Download request +- Upload: Upload request +*/ +enum FileRequestType { + case Download(String?) + case Upload(UploadType) +} + +/** +The Upload enum type: + +- Data: for a generic NSData object +- File: for File passing the URL of the local file to upload +- Stream: for a Stream request passing the actual NSInputStream +*/ +enum UploadType { + case Data(NSData) + case File(NSURL) + case Stream(NSInputStream) +} + +/** +Error domain. +**/ +public let HttpErrorDomain = "HttpDomain" +/** +Request error. +**/ +public let NetworkingOperationFailingURLRequestErrorKey = "NetworkingOperationFailingURLRequestErrorKey" +/** +Response error. +**/ +public let NetworkingOperationFailingURLResponseErrorKey = "NetworkingOperationFailingURLResponseErrorKey" + +public typealias ProgressBlock = (Int64, Int64, Int64) -> Void +public typealias CompletionBlock = (AnyObject?, NSError?) -> Void + +/** +Main class for performing HTTP operations across RESTful resources. +*/ +public class Http { + + var baseURL: String? + var session: NSURLSession + var requestSerializer: RequestSerializer + var responseSerializer: ResponseSerializer + public var authzModule: AuthzModule? + + private var delegate: SessionDelegate + + /** + Initialize an HTTP object. + + :param: baseURL the remote base URL of the application (optional). + :param: sessionConfig the SessionConfiguration object (by default it uses a defaultSessionConfiguration). + :param: requestSerializer the actual request serializer to use when performing requests. + :param: responseSerializer the actual response serializer to use upon receiving a response. + + :returns: the newly intitialized HTTP object + */ + public init(baseURL: String? = nil, + sessionConfig: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration(), + requestSerializer: RequestSerializer = JsonRequestSerializer(), + responseSerializer: ResponseSerializer = JsonResponseSerializer()) { + self.baseURL = baseURL + self.delegate = SessionDelegate() + self.session = NSURLSession(configuration: sessionConfig, delegate: self.delegate, delegateQueue: NSOperationQueue.mainQueue()) + self.requestSerializer = requestSerializer + self.responseSerializer = responseSerializer + } + + deinit { + self.session.finishTasksAndInvalidate() + } + + /** + Gateway to perform different http requests including multipart. + + :param: url the url of the resource. + :param: parameters the request parameters. + :param: method the method to be used. + :param: completionHandler A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + public func request(method: HttpMethod, path: String, parameters: [String: AnyObject]? = nil, credential: NSURLCredential? = nil, responseSerializer: ResponseSerializer? = nil, completionHandler: CompletionBlock) { + let block: () -> Void = { + let finalOptURL = self.calculateURL(self.baseURL, url: path) + guard let finalURL = finalOptURL else { + let error = NSError(domain: "AeroGearHttp", code: 0, userInfo: [NSLocalizedDescriptionKey: "Malformed URL"]) + completionHandler(nil, error) + return + } + + var request: NSURLRequest + var task: NSURLSessionTask? + var delegate: TaskDataDelegate + // Merge headers + let headers = merge(self.requestSerializer.headers, self.authzModule?.authorizationFields()) + + // care for multipart request is multipart data are set + if (self.hasMultiPartData(parameters)) { + request = self.requestSerializer.multipartRequest(finalURL, method: method, parameters: parameters, headers: headers) + task = self.session.uploadTaskWithStreamedRequest(request) + delegate = TaskUploadDelegate() + } else { + request = self.requestSerializer.request(finalURL, method: method, parameters: parameters, headers: headers) + task = self.session.dataTaskWithRequest(request); + delegate = TaskDataDelegate() + } + + delegate.completionHandler = completionHandler + delegate.responseSerializer = responseSerializer == nil ? self.responseSerializer : responseSerializer + delegate.credential = credential + + self.delegate[task] = delegate + if let task = task {task.resume()} + } + + // cater for authz and pre-authorize prior to performing request + if (self.authzModule != nil) { + self.authzModule?.requestAccess({ (response, error ) in + // if there was an error during authz, no need to continue + if (error != nil) { + completionHandler(nil, error) + return + } + // ..otherwise proceed normally + block(); + }) + } else { + block() + } + } + + /** + Gateway to perform different file requests either download or upload. + + :param: url the url of the resource. + :param: parameters the request parameters. + :param: method the method to be used. + :param: responseSerializer the actual response serializer to use upon receiving a response + :param: type the file request type + :param: progress a block that will be invoked to report progress during either download or upload. + :param: completionHandler A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + private func fileRequest(url: String, parameters: [String: AnyObject]? = nil, method: HttpMethod, credential: NSURLCredential? = nil, responseSerializer: ResponseSerializer? = nil, type: FileRequestType, progress: ProgressBlock?, completionHandler: CompletionBlock) { + + let block: () -> Void = { + let finalOptURL = self.calculateURL(self.baseURL, url: url) + guard let finalURL = finalOptURL else { + let error = NSError(domain: "AeroGearHttp", code: 0, userInfo: [NSLocalizedDescriptionKey: "Malformed URL"]) + completionHandler(nil, error) + return + } + var request: NSURLRequest + // Merge headers + let headers = merge(self.requestSerializer.headers, self.authzModule?.authorizationFields()) + + // care for multipart request is multipart data are set + if (self.hasMultiPartData(parameters)) { + request = self.requestSerializer.multipartRequest(finalURL, method: method, parameters: parameters, headers: headers) + } else { + request = self.requestSerializer.request(finalURL, method: method, parameters: parameters, headers: headers) + } + + var task: NSURLSessionTask? + + switch type { + case .Download(let destinationDirectory): + task = self.session.downloadTaskWithRequest(request) + + let delegate = TaskDownloadDelegate() + delegate.downloadProgress = progress + delegate.destinationDirectory = destinationDirectory; + delegate.completionHandler = completionHandler + delegate.credential = credential + delegate.responseSerializer = responseSerializer == nil ? self.responseSerializer : responseSerializer + self.delegate[task] = delegate + + case .Upload(let uploadType): + switch uploadType { + case .Data(let data): + task = self.session.uploadTaskWithRequest(request, fromData: data) + case .File(let url): + task = self.session.uploadTaskWithRequest(request, fromFile: url) + case .Stream(_): + task = self.session.uploadTaskWithStreamedRequest(request) + } + + let delegate = TaskUploadDelegate() + delegate.uploadProgress = progress + delegate.completionHandler = completionHandler + delegate.credential = credential + delegate.responseSerializer = responseSerializer + + self.delegate[task] = delegate + } + + if let task = task {task.resume()} + } + + // cater for authz and pre-authorize prior to performing request + if (self.authzModule != nil) { + self.authzModule?.requestAccess({ (response, error ) in + // if there was an error during authz, no need to continue + if (error != nil) { + completionHandler(nil, error) + return + } + // ..otherwise proceed normally + block(); + }) + } else { + block() + } + } + + /** + Request to download a file. + + :param: url the URL of the downloadable resource. + :param: destinationDirectory the destination directory where the file would be stored, if not specified. application's default '.Documents' directory would be used. + :param: parameters the request parameters. + :param: credential the credentials to use for basic/digest auth (Note: it is advised that HTTPS should be used by default). + :param: method the method to be used, by default a .GET request. + :param: progress a block that will be invoked to report progress during download. + :param: completionHandler a block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + public func download(url: String, destinationDirectory: String? = nil, parameters: [String: AnyObject]? = nil, credential: NSURLCredential? = nil, method: HttpMethod = .GET, progress: ProgressBlock?, completionHandler: CompletionBlock) { + fileRequest(url, parameters: parameters, method: method, credential: credential, type: .Download(destinationDirectory), progress: progress, completionHandler: completionHandler) + } + + /** + Request to upload a file using an NURL of a local file. + + :param: url the URL to upload resource into. + :param: file the URL of the local file to be uploaded. + :param: parameters the request parameters. + :param: credential the credentials to use for basic/digest auth (Note: it is advised that HTTPS should be used by default). + :param: method the method to be used, by default a .POST request. + :param: responseSerializer the actual response serializer to use upon receiving a response. + :param: progress a block that will be invoked to report progress during upload. + :param: completionHandler A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + public func upload(url: String, file: NSURL, parameters: [String: AnyObject]? = nil, credential: NSURLCredential? = nil, method: HttpMethod = .POST, responseSerializer: ResponseSerializer? = nil, progress: ProgressBlock?, completionHandler: CompletionBlock) { + fileRequest(url, parameters: parameters, method: method, credential: credential, responseSerializer: responseSerializer, type: .Upload(.File(file)), progress: progress, completionHandler: completionHandler) + } + + /** + Request to upload a file using a raw NSData object. + + :param: url the URL to upload resource into. + :param: data the data to be uploaded. + :param: parameters the request parameters. + :param: credential the credentials to use for basic/digest auth (Note: it is advised that HTTPS should be used by default). + :param: method the method to be used, by default a .POST request. + :param: responseSerializer the actual response serializer to use upon receiving a response. + :param: progress a block that will be invoked to report progress during upload. + :param: completionHandler A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + public func upload(url: String, data: NSData, parameters: [String: AnyObject]? = nil, credential: NSURLCredential? = nil, method: HttpMethod = .POST, responseSerializer: ResponseSerializer? = nil, progress: ProgressBlock?, completionHandler: CompletionBlock) { + fileRequest(url, parameters: parameters, method: method, credential: credential, responseSerializer: responseSerializer, type: .Upload(.Data(data)), progress: progress, completionHandler: completionHandler) + } + + /** + Request to upload a file using an NSInputStream object. + + - parameter url: the URL to upload resource into. + - parameter stream: the stream that will be used for uploading. + - parameter parameters: the request parameters. + - parameter credential: the credentials to use for basic/digest auth (Note: it is advised that HTTPS should be used by default). + - parameter method: the method to be used, by default a .POST request. + - parameter responseSerializer: the actual response serializer to use upon receiving a response. + - parameter progress: a block that will be invoked to report progress during upload. + - parameter completionHandler: A block object to be executed when the request operation finishes successfully. This block has no return value and takes two arguments: The object created from the response data of request and the `NSError` object describing the network or parsing error that occurred. + */ + public func upload(url: String, stream: NSInputStream, parameters: [String: AnyObject]? = nil, credential: NSURLCredential? = nil, method: HttpMethod = .POST, responseSerializer: ResponseSerializer? = nil, progress: ProgressBlock?, completionHandler: CompletionBlock) { + fileRequest(url, parameters: parameters, method: method, credential: credential, responseSerializer: responseSerializer, type: .Upload(.Stream(stream)), progress: progress, completionHandler: completionHandler) + } + + + // MARK: Private API + + // MARK: SessionDelegate + class SessionDelegate: NSObject, NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate { + + private var delegates: [Int: TaskDelegate] + + private subscript(task: NSURLSessionTask?) -> TaskDelegate? { + get { + guard let task = task else { + return nil + } + return self.delegates[task.taskIdentifier] + } + + set (newValue) { + guard let task = task else { + return + } + self.delegates[task.taskIdentifier] = newValue + } + } + + required override init() { + self.delegates = Dictionary() + super.init() + } + + func URLSession(session: NSURLSession, didBecomeInvalidWithError error: NSError?) { + // TODO + } + + func URLSession(session: NSURLSession, didReceiveChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void) { + completionHandler(.PerformDefaultHandling, nil) + } + + func URLSessionDidFinishEventsForBackgroundURLSession(session: NSURLSession) { + // TODO + } + + // MARK: NSURLSessionTaskDelegate + + func URLSession(session: NSURLSession, task: NSURLSessionTask, willPerformHTTPRedirection response: NSHTTPURLResponse, newRequest request: NSURLRequest, completionHandler: (NSURLRequest?) -> Void) { + + if let delegate = self[task] { + delegate.URLSession(session, task: task, willPerformHTTPRedirection: response, newRequest: request, completionHandler: completionHandler) + } + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didReceiveChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void) { + + if let delegate = self[task] { + delegate.URLSession(session, task: task, didReceiveChallenge: challenge, completionHandler: completionHandler) + } else { + self.URLSession(session, didReceiveChallenge: challenge, completionHandler: completionHandler) + } + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, needNewBodyStream completionHandler: (NSInputStream?) -> Void) { + if let delegate = self[task] { + delegate.URLSession(session, task: task, needNewBodyStream: completionHandler) + } + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didSendBodyData bytesSent: Int64, totalBytesSent: Int64, totalBytesExpectedToSend: Int64) { + if let delegate = self[task] as? TaskUploadDelegate { + delegate.URLSession(session, task: task, didSendBodyData: bytesSent, totalBytesSent: totalBytesSent, totalBytesExpectedToSend: totalBytesExpectedToSend) + } + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { + if let delegate = self[task] { + delegate.URLSession(session, task: task, didCompleteWithError: error) + + self[task] = nil + } + } + + // MARK: NSURLSessionDataDelegate + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveResponse response: NSURLResponse, completionHandler: (NSURLSessionResponseDisposition) -> Void) { + completionHandler(.Allow) + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) { + let downloadDelegate = TaskDownloadDelegate() + self[downloadTask] = downloadDelegate + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { + if let delegate = self[dataTask] as? TaskDataDelegate { + delegate.URLSession(session, dataTask: dataTask, didReceiveData: data) + } + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, willCacheResponse proposedResponse: NSCachedURLResponse, completionHandler: (NSCachedURLResponse?) -> Void) { + completionHandler(proposedResponse) + } + + // MARK: NSURLSessionDownloadDelegate + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didFinishDownloadingToURL location: NSURL) { + if let delegate = self[downloadTask] as? TaskDownloadDelegate { + delegate.URLSession(session, downloadTask: downloadTask, didFinishDownloadingToURL: location) + } + } + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didWriteData bytesWritten: Int64, totalBytesWritten: Int64, totalBytesExpectedToWrite: Int64) { + if let delegate = self[downloadTask] as? TaskDownloadDelegate { + delegate.URLSession(session, downloadTask: downloadTask, didWriteData: bytesWritten, totalBytesWritten: totalBytesWritten, totalBytesExpectedToWrite: totalBytesExpectedToWrite) + } + } + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didResumeAtOffset fileOffset: Int64, expectedTotalBytes: Int64) { + if let delegate = self[downloadTask] as? TaskDownloadDelegate { + delegate.URLSession(session, downloadTask: downloadTask, didResumeAtOffset: fileOffset, expectedTotalBytes: expectedTotalBytes) + } + } + } + + // MARK: NSURLSessionTaskDelegate + class TaskDelegate: NSObject, NSURLSessionTaskDelegate { + + var data: NSData? { return nil } + var completionHandler: ((AnyObject?, NSError?) -> Void)? + var responseSerializer: ResponseSerializer? + + var credential: NSURLCredential? + + func URLSession(session: NSURLSession, task: NSURLSessionTask, willPerformHTTPRedirection response: NSHTTPURLResponse, newRequest request: NSURLRequest, completionHandler: (NSURLRequest?) -> Void) { + + completionHandler(request) + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didReceiveChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void) { + var disposition: NSURLSessionAuthChallengeDisposition = .PerformDefaultHandling + var credential: NSURLCredential? + + if challenge.previousFailureCount > 0 { + disposition = .CancelAuthenticationChallenge + } else { + credential = self.credential ?? session.configuration.URLCredentialStorage?.defaultCredentialForProtectionSpace(challenge.protectionSpace) + + if credential != nil { + disposition = .UseCredential + } + } + + completionHandler(disposition, credential) + } + + + func URLSession(session: NSURLSession, task: NSURLSessionTask, needNewBodyStream completionHandler: ((NSInputStream?) -> Void)) { + + } + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { + if error != nil { + completionHandler?(nil, error) + return + } + + + let response = task.response as! NSHTTPURLResponse + if let _ = task as? NSURLSessionDownloadTask { + completionHandler?(response, error) + return + } + + var responseObject: AnyObject? = nil + do { + if let data = data { + try self.responseSerializer?.validateResponse(response, data) + responseObject = self.responseSerializer?.response(data, response.statusCode) + completionHandler?(responseObject, nil) + } + } catch let error as NSError { + var userInfo = error.userInfo + userInfo["StatusCode"] = response.statusCode + let errorToRethrow = NSError(domain: error.domain, code: error.code, userInfo: userInfo) + completionHandler?(responseObject, errorToRethrow) + } + } + } + + // MARK: NSURLSessionDataDelegate + class TaskDataDelegate: TaskDelegate, NSURLSessionDataDelegate { + + private var mutableData: NSMutableData + + override var data: NSData? { + return self.mutableData + } + + override init() { + self.mutableData = NSMutableData() + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveResponse response: NSURLResponse, completionHandler: (NSURLSessionResponseDisposition) -> Void) { + completionHandler(.Allow) + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { + self.mutableData.appendData(data) + } + + func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, willCacheResponse proposedResponse: NSCachedURLResponse, completionHandler: (NSCachedURLResponse?) -> Void) { + let cachedResponse = proposedResponse + completionHandler(cachedResponse) + } + } + + // MARK: NSURLSessionDownloadDelegate + class TaskDownloadDelegate: TaskDelegate, NSURLSessionDownloadDelegate { + + var downloadProgress: ((Int64, Int64, Int64) -> Void)? + var resumeData: NSData? + var destinationDirectory: NSString? + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didFinishDownloadingToURL location: NSURL) { + let filename = downloadTask.response?.suggestedFilename + + // calculate final destination + var finalDestination: NSURL + if (destinationDirectory == nil) { // use 'default documents' directory if not set + // use default documents directory + let documentsDirectory = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] as NSURL + finalDestination = documentsDirectory.URLByAppendingPathComponent(filename!) + } else { + // check that the directory exists + let path = destinationDirectory?.stringByAppendingPathComponent(filename!) + finalDestination = NSURL(fileURLWithPath: path!) + } + + do { + try NSFileManager.defaultManager().moveItemAtURL(location, toURL: finalDestination) + } catch _ { + } + } + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didWriteData bytesWritten: Int64, totalBytesWritten: Int64, totalBytesExpectedToWrite: Int64) { + + self.downloadProgress?(bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) + } + + func URLSession(session: NSURLSession, downloadTask: NSURLSessionDownloadTask, didResumeAtOffset fileOffset: Int64, expectedTotalBytes: Int64) { + } + } + + // MARK: NSURLSessionTaskDelegate + class TaskUploadDelegate: TaskDataDelegate { + + var uploadProgress: ((Int64, Int64, Int64) -> Void)? + + func URLSession(session: NSURLSession, task: NSURLSessionTask, didSendBodyData bytesSent: Int64, totalBytesSent: Int64, totalBytesExpectedToSend: Int64) { + self.uploadProgress?(bytesSent, totalBytesSent, totalBytesExpectedToSend) + } + } + + // MARK: Utility methods + public func calculateURL(baseURL: String?, var url: String) -> NSURL? { + if (baseURL == nil || url.hasPrefix("http")) { + return NSURL(string: url)! + } + + guard let finalURL = NSURL(string: baseURL!) else {return nil} + if (url.hasPrefix("/")) { + url = url.substringFromIndex(url.startIndex.advancedBy(1)) + } + + return finalURL.URLByAppendingPathComponent(url); + } + + public func hasMultiPartData(parameters: [String: AnyObject]?) -> Bool { + if (parameters == nil) { + return false + } + + var isMultiPart = false + for (_, value) in parameters! { + if value is MultiPartData { + isMultiPart = true + break + } + } + + return isMultiPart + } +} diff --git a/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift new file mode 100644 index 0000000..68b9e00 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/HttpRequestSerializer.swift @@ -0,0 +1,219 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +An HttpRequest serializer that handles form-encoded URL requess including multipart support. +*/ +public class HttpRequestSerializer: RequestSerializer { + /// The url that this request serializer is bound to. + public var url: NSURL? + /// Any headers that will be appended on the request. + public var headers: [String: String]? + /// The String encoding to be used. + public var stringEncoding: NSNumber + /// The cache policy. + public var cachePolicy: NSURLRequestCachePolicy + /// The timeout interval. + public var timeoutInterval: NSTimeInterval + + /// Defualt initializer. + public init() { + self.stringEncoding = NSUTF8StringEncoding + self.timeoutInterval = 60 + self.cachePolicy = .UseProtocolCachePolicy + } + + /** + Build an request using the specified params passed in. + + :param: url the url of the resource. + :param: method the method to be used. + :param: parameters the request parameters. + :param: headers any headers to be used on this request. + + :returns: the URLRequest object. + */ + public func request(url: NSURL, method: HttpMethod, parameters: [String: AnyObject]?, headers: [String: String]? = nil) -> NSURLRequest { + let request = NSMutableURLRequest(URL: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval) + request.HTTPMethod = method.rawValue + + // apply headers to new request + if(headers != nil) { + for (key,val) in headers! { + request.addValue(val, forHTTPHeaderField: key) + } + } + + if method == HttpMethod.GET || method == HttpMethod.HEAD || method == HttpMethod.DELETE { + let paramSeparator = request.URL?.query != nil ? "&" : "?" + var newUrl:String + if (request.URL?.absoluteString != nil && parameters != nil) { + let queryString = self.stringFromParameters(parameters!) + newUrl = "\(request.URL!.absoluteString)\(paramSeparator)\(queryString)" + request.URL = NSURL(string: newUrl)! + } + + } else { + // set type + request.setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type") + // set body + if (parameters != nil) { + let body = self.stringFromParameters(parameters!).dataUsingEncoding(NSUTF8StringEncoding) + request.setValue("\(body?.length)", forHTTPHeaderField: "Content-Length") + request.HTTPBody = body + } + } + + return request + } + + /** + Build an multipart request using the specified params passed in. + + :param: url the url of the resource. + :param: method the method to be used. + :param: parameters the request parameters. + :param: headers any headers to be used on this request. + + :returns: the URLRequest object + */ + public func multipartRequest(url: NSURL, method: HttpMethod, parameters: [String: AnyObject]?, headers: [String: String]? = nil) -> NSURLRequest { + let request = NSMutableURLRequest(URL: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval) + request.HTTPMethod = method.rawValue + + // apply headers to new request + if(headers != nil) { + for (key,val) in headers! { + request.addValue(val, forHTTPHeaderField: key) + } + } + + let boundary = "AG-boundary-\(arc4random())-\(arc4random())" + let type = "multipart/form-data; boundary=\(boundary)" + let body = self.multiPartBodyFromParams(parameters!, boundary: boundary) + + request.setValue(type, forHTTPHeaderField: "Content-Type") + request.setValue("\(body.length)", forHTTPHeaderField: "Content-Length") + request.HTTPBody = body + + return request + } + + public func stringFromParameters(parameters: [String: AnyObject]) -> String { + let parametersArray = serialize((nil, parameters)).map({(tuple) in + return self.stringValue(tuple) + }) + return parametersArray.joinWithSeparator("&") +// return "&".join(serialize((nil, parameters)).map({(tuple) in +// return self.stringValue(tuple) +// })) + } + + public func serialize(tuple: (String?, AnyObject)) -> [(String?, AnyObject)] { + var collect:[(String?, AnyObject)] = [] + if let array = tuple.1 as? [AnyObject] { + for nestedValue : AnyObject in array { + let label: String = tuple.0! + let myTuple:(String?, AnyObject) = (label + "[]", nestedValue) + collect.appendContentsOf(self.serialize(myTuple)) + } + } else if let dict = tuple.1 as? [String: AnyObject] { + for (nestedKey, nestedObject) in dict { + let newKey = tuple.0 != nil ? "\(tuple.0!)[\(nestedKey)]" : nestedKey + let myTuple:(String?, AnyObject) = (newKey, nestedObject) + collect.appendContentsOf(self.serialize(myTuple)) + } + } else { + collect.append((tuple.0, tuple.1)) + } + return collect + } + + public func stringValue(tuple: (String?, AnyObject)) -> String { + var val = "" + if let str = tuple.1 as? String { + val = str + } else if tuple.1.description != nil { + val = tuple.1.description + } + + if tuple.0 == nil { + return val.urlEncode() + } + + return "\(tuple.0!.urlEncode())=\(val.urlEncode())" + } + + public func multiPartBodyFromParams(parameters: [String: AnyObject], boundary: String) -> NSData { + let data = NSMutableData() + + let prefixData = "--\(boundary)\r\n".dataUsingEncoding(NSUTF8StringEncoding) + let seperData = "\r\n".dataUsingEncoding(NSUTF8StringEncoding) + + for (key, value) in parameters { + var sectionData: NSData? + var sectionType: String? + var sectionFilename = "" + + if value is MultiPartData { + let multiData = value as! MultiPartData + sectionData = multiData.data + sectionType = multiData.mimeType + sectionFilename = " filename=\"\(multiData.filename)\"" + } else { + sectionData = "\(value)".dataUsingEncoding(NSUTF8StringEncoding) + } + + data.appendData(prefixData!) + + let sectionDisposition = "Content-Disposition: form-data; name=\"\(key)\";\(sectionFilename)\r\n".dataUsingEncoding(NSUTF8StringEncoding) + data.appendData(sectionDisposition!) + + if let type = sectionType { + let contentType = "Content-Type: \(type)\r\n".dataUsingEncoding(NSUTF8StringEncoding) + data.appendData(contentType!) + } + + // append data + data.appendData(seperData!) + data.appendData(sectionData!) + data.appendData(seperData!) + } + + data.appendData("--\(boundary)--\r\n".dataUsingEncoding(NSUTF8StringEncoding)!) + + return data + } + + public func hasMultiPartData(parameters: [String: AnyObject]?) -> Bool { + if (parameters == nil) { + return false + } + + var isMultiPart = false + for (_, value) in parameters! { + if value is MultiPartData { + isMultiPart = true + break + } + } + + return isMultiPart + } +} diff --git a/Pods/AeroGearHttp/AeroGearHttp/JsonRequestSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/JsonRequestSerializer.swift new file mode 100644 index 0000000..e9d5262 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/JsonRequestSerializer.swift @@ -0,0 +1,68 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +A request serializer to JSON objects/ +*/ +public class JsonRequestSerializer: HttpRequestSerializer { + /** + Build an request using the specified params passed in. + + :param: url the url of the resource. + :param: method the method to be used. + :param: parameters the request parameters. + :param: headers any headers to be used on this request. + + :returns: the URLRequest object. + */ + public override func request(url: NSURL, method: HttpMethod, parameters: [String: AnyObject]?, headers: [String: String]? = nil) -> NSURLRequest { + if method == HttpMethod.GET || method == HttpMethod.HEAD || method == HttpMethod.DELETE { + return super.request(url, method: method, parameters: parameters, headers: headers) + } else { + let request = NSMutableURLRequest(URL: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval) + request.HTTPMethod = method.rawValue + + // set type + request.setValue("application/json", forHTTPHeaderField: "Content-Type") + // set body + if (parameters != nil) { + var body: NSData? + do { + body = try NSJSONSerialization.dataWithJSONObject(parameters!, options: []) + } catch _ { + body = nil + } + // set body + if (body != nil) { + request.setValue("\(body?.length)", forHTTPHeaderField: "Content-Length") + request.HTTPBody = body + } + } + + // apply headers to new request + if(headers != nil) { + for (key,val) in headers! { + request.addValue(val, forHTTPHeaderField: key) + } + } + + return request + } + } +} diff --git a/Pods/AeroGearHttp/AeroGearHttp/JsonResponseSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/JsonResponseSerializer.swift new file mode 100644 index 0000000..36c3efa --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/JsonResponseSerializer.swift @@ -0,0 +1,84 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +A response deserializer to JSON objects. +*/ +public class JsonResponseSerializer : ResponseSerializer { + + /** + Validate the response received. throw an error is the response is not va;id. + + :returns: either true or false if the response is valid for this particular serializer. + */ + public var validateResponse: (NSURLResponse!, NSData) throws -> Void = { (response: NSURLResponse!, data: NSData) -> Void in + var error: NSError! = NSError(domain: "AeroGearHttp", code: 0, userInfo: nil) + let httpResponse = response as! NSHTTPURLResponse + let dataAsJson: [String: AnyObject]? + + // validate JSON + do { + dataAsJson = try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions(rawValue: 0)) as? [String: AnyObject] + } catch _ { + let userInfo = [NSLocalizedDescriptionKey: "Invalid response received, can't parse JSON" as NSString, + NetworkingOperationFailingURLResponseErrorKey: response] + let customError = NSError(domain: HttpResponseSerializationErrorDomain, code: NSURLErrorBadServerResponse, userInfo: userInfo) + throw customError; + } + + if !(httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) { + var userInfo = [NSLocalizedDescriptionKey: NSHTTPURLResponse.localizedStringForStatusCode(httpResponse.statusCode), + NetworkingOperationFailingURLResponseErrorKey: response] + if let dataAsJson = dataAsJson { + userInfo["CustomData"] = dataAsJson + } + error = NSError(domain: HttpResponseSerializationErrorDomain, code: httpResponse.statusCode, userInfo: userInfo) + throw error + } + } + + /** + Deserialize the response received. + + :returns: the serialized response + */ + public var response: (NSData, Int) -> AnyObject? = { (data: NSData, Int) -> AnyObject? in + do { + return try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions(rawValue: 0)) + } catch _ { + return nil + } + } + + public init() { + } + + public init(validateResponse: (NSURLResponse!, NSData) throws -> Void, response: (NSData, Int) -> AnyObject?) { + self.validateResponse = validateResponse + self.response = response + } + + public init(validateResponse: (NSURLResponse!, NSData) throws -> Void) { + self.validateResponse = validateResponse + } + + public init(response: (NSData, Int) -> AnyObject?) { + self.response = response + } +} \ No newline at end of file diff --git a/Pods/AeroGearHttp/AeroGearHttp/MultiPartData.swift b/Pods/AeroGearHttp/AeroGearHttp/MultiPartData.swift new file mode 100644 index 0000000..8e37b04 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/MultiPartData.swift @@ -0,0 +1,66 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Represents a multipart object containing a file plus metadata to be processed during upload. +*/ +public class MultiPartData { + + /// The 'name' to be used on the request. + public var name: String + /// The 'filename' to be used on the request. + public var filename: String + /// The 'MIME type' to be used on the request. + public var mimeType: String + /// The actual data to be sent. + public var data: NSData + + /** + Initialize a multipart object using an NSURL and a corresponding MIME type. + + :param: url the url of the local file. + :param: mimeType the MIME type. + + :returns: the newly created multipart data. + */ + public init(url: NSURL, mimeType: String) { + self.name = url.lastPathComponent! + self.filename = url.lastPathComponent! + self.mimeType = mimeType; + + self.data = NSData(contentsOfURL: url)! + } + + /** + Initialize a multipart object using an NSData plus metadata. + + :param: data the actual data to be uploaded. + :param: name the 'name' to be used on the request. + :param: filename the 'filename' to be used on the request. + :param: mimeType the 'MIME type' to be used on the request. + + :returns: the newly created multipart data. + */ + public init(data: NSData, name: String, filename: String, mimeType: String) { + self.data = data; + self.name = name; + self.filename = filename; + self.mimeType = mimeType; + } +} diff --git a/Pods/AeroGearHttp/AeroGearHttp/RequestSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/RequestSerializer.swift new file mode 100644 index 0000000..6f0c92e --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/RequestSerializer.swift @@ -0,0 +1,59 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +The protocol that request serializers must adhere to. +*/ +public protocol RequestSerializer { + + /// The url that this request serializer is bound to. + var url: NSURL? { get set } + /// Any headers that will be appended on the request. + var headers: [String: String]? { get set } + /// The String encoding to be used. + var stringEncoding: NSNumber { get } + /// The cache policy. + var cachePolicy: NSURLRequestCachePolicy { get } + /// The timeout interval. + var timeoutInterval: NSTimeInterval { get set } + + /** + Build an request using the specified params passed in. + + :param: url the url of the resource. + :param: method the method to be used. + :param: parameters the request parameters. + :param: headers any headers to be used on this request. + + :returns: the URLRequest object. + */ + func request(url: NSURL, method: HttpMethod, parameters: [String: AnyObject]?, headers: [String: String]?) -> NSURLRequest + + /** + Build an multipart request using the specified params passed in. + + :param: url the url of the resource. + :param: method the method to be used. + :param: parameters the request parameters. + :param: headers any headers to be used on this request. + + :returns: the URLRequest object + */ + func multipartRequest(url: NSURL, method: HttpMethod, parameters: [String: AnyObject]?, headers: [String: String]?) -> NSURLRequest +} \ No newline at end of file diff --git a/Pods/AeroGearHttp/AeroGearHttp/ResponseSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/ResponseSerializer.swift new file mode 100644 index 0000000..14a4af8 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/ResponseSerializer.swift @@ -0,0 +1,43 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Error domain for serializers. +*/ +public let HttpResponseSerializationErrorDomain = "ResponseSerializerDomain" + +/** +The protocol that response serializers must adhere to. +*/ +public protocol ResponseSerializer { + + /** + Deserialize the response received. + + :returns: the serialized response + */ + var response: (NSData, Int) -> AnyObject? {get set} + + /** + Validate the response received. This is a cutomizable closure variable. + + :returns: either true or false if the response is valid for this particular serializer. + */ + var validateResponse: (NSURLResponse!, NSData) throws -> Void {get set} +} \ No newline at end of file diff --git a/Pods/AeroGearHttp/AeroGearHttp/StringResponseSerializer.swift b/Pods/AeroGearHttp/AeroGearHttp/StringResponseSerializer.swift new file mode 100644 index 0000000..7b2454e --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/StringResponseSerializer.swift @@ -0,0 +1,70 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +A response deserializer to a generic String object. +*/ +public class StringResponseSerializer : ResponseSerializer { + /** + Deserialize the response received. + + :returns: the serialized response + */ + public var response: (NSData, Int) -> AnyObject? = {(data: NSData, status: Int) -> (AnyObject?) in + return NSString(data: data, encoding:NSUTF8StringEncoding) + } + + /** + Validate the response received. + + :returns: either true or false if the response is valid for this particular serializer. + */ + public var validateResponse: (NSURLResponse!, NSData) throws -> Void = { (response: NSURLResponse!, data: NSData) throws in + var error: NSError! = NSError(domain: "Migrator", code: 0, userInfo: nil) + let httpResponse = response as! NSHTTPURLResponse + + if !(httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) { + let userInfo = [ + NSLocalizedDescriptionKey: NSHTTPURLResponse.localizedStringForStatusCode(httpResponse.statusCode), + NetworkingOperationFailingURLResponseErrorKey: response] + + if (true) { + error = NSError(domain: HttpResponseSerializationErrorDomain, code: httpResponse.statusCode, userInfo: userInfo) + } + + throw error + } + } + + public init() { + } + + public init(validateResponse: (NSURLResponse!, NSData) throws -> Void, response: (NSData, Int) -> AnyObject?) { + self.validateResponse = validateResponse + self.response = response + } + + public init(validateResponse: (NSURLResponse!, NSData) throws -> Void) { + self.validateResponse = validateResponse + } + + public init(response: (NSData, Int) -> AnyObject?) { + self.response = response + } +} \ No newline at end of file diff --git a/Pods/AeroGearHttp/AeroGearHttp/Utils.swift b/Pods/AeroGearHttp/AeroGearHttp/Utils.swift new file mode 100644 index 0000000..cc41886 --- /dev/null +++ b/Pods/AeroGearHttp/AeroGearHttp/Utils.swift @@ -0,0 +1,49 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Handy extensions and utilities. +*/ +extension String { + + public func urlEncode() -> String { + let encodedURL = CFURLCreateStringByAddingPercentEscapes(nil, + self as NSString, + nil, + "!@#$%&*'();:=+,/?[]", + CFStringBuiltInEncodings.UTF8.rawValue) + return encodedURL as String + } +} + +public func merge(one: [String: String]?, _ two: [String:String]?) -> [String: String]? { + var dict: [String: String]? + if let one = one { + dict = one + if let two = two { + for (key, value) in two { + dict![key] = value + } + } + } else { + dict = two + } + return dict +} + diff --git a/Pods/AeroGearHttp/LICENSE.txt b/Pods/AeroGearHttp/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/Pods/AeroGearHttp/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Pods/AeroGearHttp/README.md b/Pods/AeroGearHttp/README.md new file mode 100644 index 0000000..4674d8b --- /dev/null +++ b/Pods/AeroGearHttp/README.md @@ -0,0 +1,160 @@ +# aerogear-ios-http [![Build Status](https://travis-ci.org/aerogear/aerogear-ios-http.png)](https://travis-ci.org/aerogear/aerogear-ios-http) + +> This module currently build with Xcode 7.2 and supports iOS8, iOS9. + +Thin layer to take care of your http requests working with NSURLSession. +Taking care of: + +* Json serializer +* Multipart upload +* HTTP Basic/Digest authentication support +* Pluggable object serialization +* background processing support + +100% Swift 2.0. + +| | Project Info | +| --------------- | ------------- | +| License: | Apache License, Version 2.0 | +| Build: | CocoaPods | +| Documentation: | http://aerogear.org/ios/ | +| Issue tracker: | https://issues.jboss.org/browse/AGIOS | +| Mailing lists: | [aerogear-users](http://aerogear-users.1116366.n5.nabble.com/) ([subscribe](https://lists.jboss.org/mailman/listinfo/aerogear-users)) | +| | [aerogear-dev](http://aerogear-dev.1069024.n5.nabble.com/) ([subscribe](https://lists.jboss.org/mailman/listinfo/aerogear-dev)) | + +## Example Usage + +To perform an HTTP request use the convenient methods found in the Http object. Here is an example usage: + +```swift +let http = Http(baseURL: "http://server.com") + +http.request(.GET, path: "/get", completionHandler: {(response, error) in + // handle response +}) + +http.request(.POST, path: "/post", parameters: ["key": "value"], + completionHandler: {(response, error) in + // handle response +}) +... +``` + +### Authentication + +The library also leverages the build-in foundation support for http/digest authentication and exposes a convenient interface by allowing the credential object to be passed on the request. Here is an example: + +> **NOTE:** It is advised that HTTPS should be used when performing authentication of this type + +```swift +let credential = NSURLCredential(user: "john", + password: "pass", + persistence: .None) + +http.request(.GET, path: "/protected/endpoint", credential: credential, + completionHandler: {(response, error) in + // handle response +}) +``` + +You can also set a credential per protection space, so it's automatically picked up once http challenge is requested by the server, thus omitting the need to pass the credential on each request. In this case, you must initialize the ```Http``` object with a custom session configuration object, that has its credentials storage initialized with your credentials: + +```swift +// create a protection space +var protectionSpace = NSURLProtectionSpace(host: "httpbin.org", + port: 443, + protocol: NSURLProtectionSpaceHTTPS, + realm: "me@kennethreitz.com", + authenticationMethod: NSURLAuthenticationMethodHTTPDigest) + +// setup credential +// notice that we use '.ForSession' type otherwise credential storage will discard and +// won't save it when doing 'credentialStorage.setDefaultCredential' later on +let credential = NSURLCredential(user: user, + password: password, + persistence: .ForSession) + +// assign it to credential storage +var credentialStorage = NSURLCredentialStorage.sharedCredentialStorage() +credentialStorage.setDefaultCredential(credential, forProtectionSpace: protectionSpace); + +// set up default configuration and assign credential storage +var configuration = NSURLSessionConfiguration.defaultSessionConfiguration() +configuration.URLCredentialStorage = credentialStorage + +// assign custom configuration to Http +var http = Http(baseURL: "http://httpbin.org", sessionConfig: configuration) + +http.request(.GET, path: "/protected/endpoint", completionHandler: {(response, error) in + // handle response +}) +``` + +### OAuth2 Protocol Support + +To support the OAuth2 protocol, we have created a separate library [aerogear-ios-oauth2](https://github.com/aerogear/aerogear-ios-oauth2) that can be easily integrated, in order to provide out-of-the-box support for communicated with OAuth2 protected endpoints. Please have a look at the "Http and OAuth2Module" section on our [documentation page](http://aerogear.org/docs/guides/aerogear-ios-2.X/Authorization/) for more information. + +Do you want to try it on your end? Follow next section steps. + +### Build, test and play with aerogear-ios-http + +1. Clone this project + +2. Get the dependencies + +The project uses [OHHTTPStubs](https://github.com/AliSoftware/OHHTTPStubs) framework for stubbing its http network requests and utilizes [cocoapods](http://cocoapods.org) 0.36 release for handling its dependencies. As a pre-requisite, install [cocoapods](http://blog.cocoapods.org/CocoaPods-0.36/) and then install the pod. On the root directory of the project run: +```bash +pod install +``` +3. open AeroGearHttp.xcworkspace + +## Adding the library to your project +To add the library in your project, you can either use [CocoaPods](http://cocoapods.org) or manual install in your project. See the respective sections below for instructions: + +### Using [CocoaPods](http://cocoapods.org) +Support for Swift frameworks is supported from [CocoaPods-0.36 release](http://blog.cocoapods.org/CocoaPods-0.36/) upwards. In your ```Podfile``` add: + +``` +pod 'AeroGearHttp' +``` + +and then: + +```bash +pod install +``` + +to install your dependencies + +### Manual Installation +Follow these steps to add the library in your Swift project: + +1. Add AeroGearHttp as a [submodule](http://git-scm.com/docs/git-submodule) in your project. Open a terminal and navigate to your project directory. Then enter: +```bash +git submodule add https://github.com/aerogear/aerogear-ios-http.git +``` +2. Open the `aerogear-ios-http` folder, and drag the `AeroGearHttp.xcodeproj` into the file navigator in Xcode. +3. In Xcode select your application target and under the "Targets" heading section, ensure that the 'iOS Deployment Target' matches the application target of AeroGearHttp.framework (Currently set to 8.0). +5. Select the "Build Phases" heading section, expand the "Target Dependencies" group and add `AeroGearHttp.framework`. +7. Click on the `+` button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add `AeroGearHttp.framework`. + + +If you run into any problems, please [file an issue](http://issues.jboss.org/browse/AEROGEAR) and/or ask our [user mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-users). You can also join our [dev mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-dev). + +## Documentation + +For more details about the current release, please consult [our documentation](http://aerogear.org/ios/). + +## Development + +If you would like to help develop AeroGear you can join our [developer's mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-dev), join #aerogear on Freenode, or shout at us on Twitter @aerogears. + +Also takes some time and skim the [contributor guide](http://aerogear.org/docs/guides/Contributing/) + +## Questions? + +Join our [user mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-users) for any questions or help! We really hope you enjoy app development with AeroGear! + +## Found a bug? + +If you found a bug please create a ticket for us on [Jira](https://issues.jboss.org/browse/AGIOS) with some steps to reproduce it. diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift new file mode 100644 index 0000000..0920ece --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/AccountManager.swift @@ -0,0 +1,239 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +A Config object that setups facebook specific configuration parameters. +*/ +public class FacebookConfig: Config { + /** + Init a Facebook configuration. + :param: clientId OAuth2 credentials an unique string that is generated in the OAuth2 provider Developers Console. + :param: clientSecret OAuth2 credentials an unique string that is generated in the OAuth2 provider Developers Console. + :param: scopes an array of scopes the app is asking access to. + :param: accountId this unique id is used by AccountManager to identify the OAuth2 client. + :paream: isOpenIDConnect to identify if fetching id information is required. + */ + public init(clientId: String, clientSecret: String, scopes: [String], accountId: String? = nil, isOpenIDConnect: Bool = false) { + super.init(base: "", + authzEndpoint: "https://www.facebook.com/dialog/oauth", + redirectURL: "fb\(clientId)://authorize/", + accessTokenEndpoint: "https://graph.facebook.com/oauth/access_token", + clientId: clientId, + refreshTokenEndpoint: "https://graph.facebook.com/oauth/access_token", + clientSecret: clientSecret, + revokeTokenEndpoint: "https://www.facebook.com/me/permissions", + isOpenIDConnect: isOpenIDConnect, + userInfoEndpoint: isOpenIDConnect ? "https://graph.facebook.com/v2.2/me" : nil, + scopes: scopes, + accountId: accountId) + // Add openIdConnect scope + if self.isOpenIDConnect { + if self.scopes[0].rangeOfString("public_profile") == nil { + self.scopes[0] = self.scopes[0] + ", public_profile" + } + } + } +} + +/** +A Config object that setups Google specific configuration parameters. +*/ +public class GoogleConfig: Config { + /** + Init a Google configuration. + :param: clientId OAuth2 credentials an unique string that is generated in the OAuth2 provider Developers Console. + :param: scopes an array of scopes the app is asking access to. + :param: accountId this unique id is used by AccountManager to identify the OAuth2 client. + :paream: isOpenIDConnect to identify if fetching id information is required. + */ + public init(clientId: String, scopes: [String], accountId: String? = nil, isOpenIDConnect: Bool = false) { + let bundleString = NSBundle.mainBundle().bundleIdentifier ?? "google" + super.init(base: "https://accounts.google.com", + authzEndpoint: "o/oauth2/auth", + redirectURL: "\(bundleString):/oauth2Callback", + accessTokenEndpoint: "o/oauth2/token", + clientId: clientId, + refreshTokenEndpoint: "o/oauth2/token", + revokeTokenEndpoint: "rest/revoke", + isOpenIDConnect: isOpenIDConnect, + userInfoEndpoint: isOpenIDConnect ? "https://www.googleapis.com/plus/v1/people/me/openIdConnect" : nil, + scopes: scopes, + accountId: accountId) + // Add openIdConnect scope + if self.isOpenIDConnect { + self.scopes += ["openid", "email", "profile"] + } + } +} +/** +A Config object that setups Keycloak specific configuration parameters. +*/ +public class KeycloakConfig: Config { + /** + Init a Keycloak configuration. + :param: clientId OAuth2 credentials an unique string that is generated in the OAuth2 provider Developers Console. + :param: host to identify where is the keycloak server located. + :param: realm to identify which realm to use. A realm grup a set of application/oauth2 client together. + :paream: isOpenIDConnect to identify if fetching id information is required. + */ + public init(clientId: String, host: String, realm: String? = nil, isOpenIDConnect: Bool = false) { + let bundleString = NSBundle.mainBundle().bundleIdentifier ?? "keycloak" + let defaulRealmName = String(format: "%@-realm", clientId) + let realm = realm ?? defaulRealmName + super.init(base: String(format: "%@/auth", host), + authzEndpoint: String(format: "realms/%@/tokens/login", realm), + redirectURL: "\(bundleString)://oauth2Callback", + accessTokenEndpoint: String(format: "realms/%@/tokens/access/codes", realm), + clientId: clientId, + refreshTokenEndpoint: String(format: "realms/%@/tokens/refresh", realm), + revokeTokenEndpoint: String(format: "realms/%@/tokens/logout", realm), + isOpenIDConnect: isOpenIDConnect) + // Add openIdConnect scope + if self.isOpenIDConnect { + self.scopes += ["openid", "email", "profile"] + } + } +} + +/** +An account manager used to instantiate, store and retrieve OAuth2 modules. +*/ +public class AccountManager { + /// List of OAuth2 modules available for a given app. Each module is linked to an OAuht2Session which securely store the tokens. + var modules: [String: OAuth2Module] + + init() { + self.modules = [String: OAuth2Module]() + } + + /// access a shared instance of an account manager + public class var sharedInstance: AccountManager { + struct Singleton { + static let instance = AccountManager() + } + return Singleton.instance + } + + /** + Instantiate an OAuth2 Module using the configuration object passed in and adds it to the account manager. It uses the OAuth2Session account_id as the name that this module will be stored in. + + :param: config the configuration object to use to setup an OAuth2 module. + :param: moduleClass the type of the OAuth2 module to instantiate. + + :returns: the OAuth2 module + */ + public class func addAccount(config: Config, moduleClass: OAuth2Module.Type) -> OAuth2Module { + var myModule:OAuth2Module + myModule = moduleClass.init(config: config) + // TODO check accountId is unique in modules list + sharedInstance.modules[myModule.oauth2Session.accountId] = myModule + return myModule + } + + /** + Removes an OAuth2 module + + :param: name the name that the OAuth2 module was bound to. + :param: config the configuration object to use to setup an OAuth2 module. + :param: moduleClass the type of the OAuth2 module to instantiate. + + :returns: the OAuth2module or nil if not found + */ + public class func removeAccount(name: String, config: Config, moduleClass: OAuth2Module.Type) -> OAuth2Module? { + return sharedInstance.modules.removeValueForKey(name) + } + + /** + Retrieves an OAuth2 module by a name + + :param: name the name that the OAuth2 module was bound to. + + :returns: the OAuth2module or nil if not found. + */ + public class func getAccountByName(name: String) -> OAuth2Module? { + return sharedInstance.modules[name] + } + + /** + Retrieves a list of OAuth2 modules bound to specific clientId. + + :param: clientId the client it that the oauth2 module was bound to. + + :returns: the OAuth2module or nil if not found. + */ + public class func getAccountsByClienId(clientId: String) -> [OAuth2Module] { + let modules: [OAuth2Module] = [OAuth2Module](sharedInstance.modules.values) + return modules.filter {$0.config.clientId == clientId } + } + + + /** + Retrieves an OAuth2 module by using a configuration object. + + :param: config the Config object that this oauth2 module was used to instantiate. + + :returns: the OAuth2module or nil if not found. + */ + public class func getAccountByConfig(config: Config) -> OAuth2Module? { + if config.accountId != nil { + return sharedInstance.modules[config.accountId!] + } else { + let modules = getAccountsByClienId(config.clientId) + if modules.count > 0 { + return modules[0] + } else { + return nil + } + } + } + + /** + Convenient method to retrieve a Facebook oauth2 module. + + :param: config a Facebook configuration object. See FacebookConfig. + + :returns: a Facebook OAuth2 module. + */ + public class func addFacebookAccount(config: FacebookConfig) -> FacebookOAuth2Module { + return addAccount(config, moduleClass: FacebookOAuth2Module.self) as! FacebookOAuth2Module + } + + /** + Convenient method to retrieve a Google oauth2 module ready to be used. + + :param: config a google configuration object. See GoogleConfig. + + :returns: a google OAuth2 module. + */ + public class func addGoogleAccount(config: GoogleConfig) -> OAuth2Module { + return addAccount(config, moduleClass: OAuth2Module.self) + } + + /** + Convenient method to retrieve a Keycloak oauth2 module ready to be used. + + :param: config a Keycloak configuration object. See KeycloakConfig. + + :returns: a Keycloak OAuth2 module. + */ + public class func addKeycloakAccount(config: KeycloakConfig) -> KeycloakOAuth2Module { + return addAccount(config, moduleClass: KeycloakOAuth2Module.self) as! KeycloakOAuth2Module + } + +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift new file mode 100644 index 0000000..0668d0a --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/Config.swift @@ -0,0 +1,121 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Configuration object to setup an OAuth2 module +*/ +public class Config { + /** + Applies the baseURL to the configuration. + */ + public let baseURL: String + + /** + Applies the "callback URL" once request token issued. + */ + public let redirectURL: String + + /** + Applies the "authorization endpoint" to the request token. + */ + public var authzEndpoint: String + + /** + Applies the "access token endpoint" to the exchange code for access token. + */ + public var accessTokenEndpoint: String + + /** + Endpoint for request to invalidate both accessToken and refreshToken. + */ + public let revokeTokenEndpoint: String? + + /** + Endpoint for request a refreshToken. + */ + public let refreshTokenEndpoint: String? + + /** + Endpoint for OpenID Connect to get user information. + */ + public let userInfoEndpoint: String? + + /** + Boolean to indicate whether OpenID Connect on authorization code grant flow is used. + */ + public var isOpenIDConnect: Bool + + /** + Applies the various scopes of the authorization. + */ + public var scopes: [String] + + var scope: String { + get { + // Create a string to concatenate all scopes existing in the _scopes array. + var scopeString = "" + for scope in self.scopes { + scopeString += scope.urlEncode() + // If the current scope is other than the last one, then add the "+" sign to the string to separate the scopes. + if (scope != self.scopes.last) { + scopeString += "+" + } + } + return scopeString + } + } + + /** + Applies the "client id" obtained with the client registration process. + */ + public let clientId: String + + /** + Applies the "client secret" obtained with the client registration process. + */ + public let clientSecret: String? + + /** + Account id is used with AccountManager to store tokens. AccountId is defined by the end-user + and can be any String. If AccountManager is not used, this field is optional. + */ + public var accountId: String? + + /** + Boolean to indicate to either used a webview (if true) or an external browser (by default, false) + for authorization code grant flow. + */ + public var isWebView: Bool = false + + public init(base: String, authzEndpoint: String, redirectURL: String, accessTokenEndpoint: String, clientId: String, refreshTokenEndpoint: String? = nil, revokeTokenEndpoint: String? = nil, isOpenIDConnect:Bool = false, userInfoEndpoint: String? = nil, scopes: [String] = [], clientSecret: String? = nil, accountId: String? = nil, isWebView: Bool = false) { + self.baseURL = base + self.authzEndpoint = authzEndpoint + self.redirectURL = redirectURL + self.accessTokenEndpoint = accessTokenEndpoint + self.refreshTokenEndpoint = refreshTokenEndpoint + self.revokeTokenEndpoint = revokeTokenEndpoint + self.isOpenIDConnect = isOpenIDConnect ?? false + self.userInfoEndpoint = userInfoEndpoint + self.scopes = scopes + self.clientId = clientId + self.clientSecret = clientSecret + self.accountId = accountId + self.isWebView = isWebView + } +} \ No newline at end of file diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift new file mode 100644 index 0000000..1650e5c --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/DateUtils.swift @@ -0,0 +1,55 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Handy extensions to NSDate +*/ +extension NSDate +{ + + /** + Initialize a date object using the given string. + + :param: dateString the string that will be used to instantiate the date object. The string is expected to be in the format 'yyyy-MM-dd hh:mm:ss a'. + + :returns: the NSDate object. + */ + public convenience init(dateString:String) { + let dateStringFormatter = NSDateFormatter() + dateStringFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss a" + let d = dateStringFormatter.dateFromString(dateString) + if let unwrappedDate = d { + self.init(timeInterval:0, sinceDate:unwrappedDate) + } else { + self.init() + } + } + + + /** + Returns a string of the date object using the format 'yyyy-MM-dd hh:mm:ss a'. + + :returns: a formatted string object. + */ + public func toString() -> String { + let dateStringFormatter = NSDateFormatter() + dateStringFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss a" + return dateStringFormatter.stringFromDate(self) + } +} \ No newline at end of file diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift new file mode 100644 index 0000000..2622805 --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/FacebookOAuth2Module.swift @@ -0,0 +1,135 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation +import AeroGearHttp + +/** +An OAuth2Module subclass specific to 'Facebook' authorization +*/ +public class FacebookOAuth2Module: OAuth2Module { + + public required init(config: Config, session: OAuth2Session?, requestSerializer: RequestSerializer, responseSerializer: ResponseSerializer) { + super.init(config: config, session: session, requestSerializer: JsonRequestSerializer(), responseSerializer: StringResponseSerializer()) + } + + /** + Exchange an authorization code for an access token. + + :param: code the 'authorization' code to exchange for an access token. + :param: completionHandler A block object to be executed when the request operation finishes. + */ + override public func exchangeAuthorizationCodeForAccessToken(code: String, completionHandler: (AnyObject?, NSError?) -> Void) { + var paramDict: [String: String] = ["code": code, "client_id": config.clientId, "redirect_uri": config.redirectURL, "grant_type":"authorization_code"] + + if let unwrapped = config.clientSecret { + paramDict["client_secret"] = unwrapped + } + + http.request(.POST, path: config.accessTokenEndpoint, parameters: paramDict, completionHandler: { (response, error) in + + if (error != nil) { + completionHandler(nil, error) + return + } + + if let unwrappedResponse = response as? String { + var accessToken: String? = nil + var expiredIn: String? = nil + + let charSet: NSMutableCharacterSet = NSMutableCharacterSet() + charSet.addCharactersInString("&=") + let array = unwrappedResponse.componentsSeparatedByCharactersInSet(charSet) + for (index, elt) in array.enumerate() { + if elt == "access_token" { + accessToken = array[index+1] + } + } + for (index, elt) in array.enumerate() { + if elt == "expires" { + expiredIn = array[index+1] + } + } + self.oauth2Session.saveAccessToken(accessToken, refreshToken: nil, accessTokenExpiration: expiredIn, refreshTokenExpiration: nil) + completionHandler(accessToken, nil) + } + }) + } + + /** + Request to revoke access. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + override public func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { + // return if not yet initialized + if (self.oauth2Session.accessToken == nil) { + return; + } + let paramDict:[String:String] = ["access_token":self.oauth2Session.accessToken!] + + http.request(.DELETE, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in + + if (error != nil) { + completionHandler(nil, error) + return + } + + self.oauth2Session.clearTokens() + completionHandler(response!, nil) + }) + } + + /** + Gateway to request authorization access + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + override public func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { + self.requestAccess { (response:AnyObject?, error:NSError?) -> Void in + if (error != nil) { + completionHandler(nil, nil, error) + return + } + var paramDict: [String: String] = [:] + if response != nil { + paramDict = ["access_token": response! as! String] + } + if let userInfoEndpoint = self.config.userInfoEndpoint { + + self.http.request(.GET, path: userInfoEndpoint, parameters: paramDict, completionHandler: {(responseObject, error) in + if (error != nil) { + completionHandler(nil, nil, error) + return + } + if let unwrappedResponse = responseObject as? String { + let data = unwrappedResponse.dataUsingEncoding(NSUTF8StringEncoding) + let json: AnyObject? = try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions(rawValue: 0)) + var openIDClaims: FacebookOpenIDClaim? + if let unwrappedResponse = json as? [String: AnyObject] { + openIDClaims = FacebookOpenIDClaim(fromDict: unwrappedResponse) + } + completionHandler(response, openIDClaims, nil) + } + }) + } else { + completionHandler(nil, nil, NSError(domain: "OAuth2Module", code: 0, userInfo: ["OpenID Connect" : "No UserInfo endpoint available in config"])) + return + } + } + } +} \ No newline at end of file diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift new file mode 100644 index 0000000..f7f49ec --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/KeycloakOAuth2Module.swift @@ -0,0 +1,126 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +An OAuth2Module subclass specific to 'Keycloak' authorization +*/ +public class KeycloakOAuth2Module: OAuth2Module { + + public override func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { + // return if not yet initialized + if (self.oauth2Session.accessToken == nil) { + return; + } + let paramDict:[String:String] = [ "client_id": config.clientId, "refresh_token": self.oauth2Session.refreshToken!] + http.request(.POST, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in + if (error != nil) { + completionHandler(nil, error) + return + } + + self.oauth2Session.clearTokens() + completionHandler(response, nil) + }) + } + + /** + Gateway to login with OpenIDConnect + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public override func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { + var openIDClaims: OpenIDClaim? + + self.requestAccess { (response: AnyObject?, error: NSError?) -> Void in + if (error != nil) { + completionHandler(nil, nil, error) + return + } + let accessToken = response as? String + if let accessToken = accessToken { + let token = self.decode(accessToken) + if let decodedToken = token { + openIDClaims = OpenIDClaim(fromDict: decodedToken) + } + } + completionHandler(accessToken, openIDClaims, nil) + } + } + + /** + Request to refresh an access token. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public override func refreshAccessToken(completionHandler: (AnyObject?, NSError?) -> Void) { + if let unwrappedRefreshToken = self.oauth2Session.refreshToken { + var paramDict: [String: String] = ["refresh_token": unwrappedRefreshToken, "client_id": config.clientId, "grant_type": "refresh_token"] + if (config.clientSecret != nil) { + paramDict["client_secret"] = config.clientSecret! + } + + http.request(.POST, path: config.refreshTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in + if (error != nil) { + completionHandler(nil, error) + return + } + + if let unwrappedResponse = response as? [String: AnyObject] { + let accessToken: String = unwrappedResponse["access_token"] as! String + let refreshToken: String = unwrappedResponse["refresh_token"] as! String + let expiration = unwrappedResponse["expires_in"] as! NSNumber + let exp: String = expiration.stringValue + let expirationRefresh = unwrappedResponse["refresh_expires_in"] as? NSNumber + let expRefresh = expirationRefresh?.stringValue + + // in Keycloak refresh token get refreshed every time you use them + self.oauth2Session.saveAccessToken(accessToken, refreshToken: refreshToken, accessTokenExpiration: exp, refreshTokenExpiration: expRefresh) + completionHandler(accessToken, nil); + } + }) + } + } + + + func decode(token: String) -> [String: AnyObject]? { + let string = token.componentsSeparatedByString(".") + let toDecode = string[1] as String + + + var stringtoDecode: String = toDecode.stringByReplacingOccurrencesOfString("-", withString: "+") // 62nd char of encoding + stringtoDecode = stringtoDecode.stringByReplacingOccurrencesOfString("_", withString: "/") // 63rd char of encoding + switch (stringtoDecode.utf16.count % 4) { + case 2: stringtoDecode = "\(stringtoDecode)==" + case 3: stringtoDecode = "\(stringtoDecode)=" + default: // nothing to do stringtoDecode can stay the same + print("") + } + let dataToDecode = NSData(base64EncodedString: stringtoDecode, options: []) + let base64DecodedString = NSString(data: dataToDecode!, encoding: NSUTF8StringEncoding) + + var values: [String: AnyObject]? + if let string = base64DecodedString { + if let data = string.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: true) { + values = try! NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.AllowFragments) as? [String : AnyObject] + } + } + return values + } + +} \ No newline at end of file diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift new file mode 100644 index 0000000..ea68458 --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Module.swift @@ -0,0 +1,364 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation +import UIKit +import AeroGearHttp + +/** +Notification constants emitted during oauth authorization flow. +*/ +public let AGAppLaunchedWithURLNotification = "AGAppLaunchedWithURLNotification" +public let AGAppDidBecomeActiveNotification = "AGAppDidBecomeActiveNotification" +public let AGAuthzErrorDomain = "AGAuthzErrorDomain" + +/** +The current state that this module is in. + +- AuthorizationStatePendingExternalApproval: the module is waiting external approval. +- AuthorizationStateApproved: the oauth flow has been approved. +- AuthorizationStateUnknown: the oauth flow is in unknown state (e.g. user clicked cancel). +*/ +enum AuthorizationState { + case AuthorizationStatePendingExternalApproval + case AuthorizationStateApproved + case AuthorizationStateUnknown +} + +/** +Parent class of any OAuth2 module implementing generic OAuth2 authorization flow. +*/ +public class OAuth2Module: AuthzModule { + let config: Config + var http: Http + + var oauth2Session: OAuth2Session + var applicationLaunchNotificationObserver: NSObjectProtocol? + var applicationDidBecomeActiveNotificationObserver: NSObjectProtocol? + var state: AuthorizationState + var webView: OAuth2WebViewController? + /** + Initialize an OAuth2 module. + + :param: config the configuration object that setups the module. + :param: session the session that that module will be bound to. + :param: requestSerializer the actual request serializer to use when performing requests. + :param: responseSerializer the actual response serializer to use upon receiving a response. + + :returns: the newly initialized OAuth2Module. + */ + public required init(config: Config, session: OAuth2Session? = nil, requestSerializer: RequestSerializer = HttpRequestSerializer(), responseSerializer: ResponseSerializer = JsonResponseSerializer()) { + if (config.accountId == nil) { + config.accountId = "ACCOUNT_FOR_CLIENTID_\(config.clientId)" + } + if (session == nil) { + self.oauth2Session = TrustedPersistantOAuth2Session(accountId: config.accountId!) + } else { + self.oauth2Session = session! + } + + self.config = config + if config.isWebView { + self.webView = OAuth2WebViewController() + } + self.http = Http(baseURL: config.baseURL, requestSerializer: requestSerializer, responseSerializer: responseSerializer) + self.state = .AuthorizationStateUnknown + } + + // MARK: Public API - To be overriden if necessary by OAuth2 specific adapter + + /** + Request an authorization code. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func requestAuthorizationCode(completionHandler: (AnyObject?, NSError?) -> Void) { + // register with the notification system in order to be notified when the 'authorization' process completes in the + // external browser, and the oauth code is available so that we can then proceed to request the 'access_token' + // from the server. + applicationLaunchNotificationObserver = NSNotificationCenter.defaultCenter().addObserverForName(AGAppLaunchedWithURLNotification, object: nil, queue: nil, usingBlock: { (notification: NSNotification!) -> Void in + self.extractCode(notification, completionHandler: completionHandler) + if ( self.webView != nil ) { + UIApplication.sharedApplication().keyWindow?.rootViewController?.dismissViewControllerAnimated(true, completion: nil) + } + }) + + // register to receive notification when the application becomes active so we + // can clear any pending authorization requests which are not completed properly, + // that is a user switched into the app without Accepting or Cancelling the authorization + // request in the external browser process. + applicationDidBecomeActiveNotificationObserver = NSNotificationCenter.defaultCenter().addObserverForName(AGAppDidBecomeActiveNotification, object:nil, queue:nil, usingBlock: { (note: NSNotification!) -> Void in + // check the state + if (self.state == .AuthorizationStatePendingExternalApproval) { + // unregister + self.stopObserving() + // ..and update state + self.state = .AuthorizationStateUnknown; + } + }) + + // update state to 'Pending' + self.state = .AuthorizationStatePendingExternalApproval + + // calculate final url + let params = "?scope=\(config.scope)&redirect_uri=\(config.redirectURL.urlEncode())&client_id=\(config.clientId)&response_type=code" + guard let computedUrl = http.calculateURL(config.baseURL, url:config.authzEndpoint) else { + let error = NSError(domain:AGAuthzErrorDomain, code:0, userInfo:["NSLocalizedDescriptionKey": "Malformatted URL."]) + completionHandler(nil, error) + return + } + let url = NSURL(string:computedUrl.absoluteString + params) + if let url = url { + if self.webView != nil { + self.webView!.targetURL = url + UIApplication.sharedApplication().keyWindow?.rootViewController?.presentViewController(self.webView!, animated: true, completion: nil) + } else { + UIApplication.sharedApplication().openURL(url) + } + } + } + + /** + Request to refresh an access token. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func refreshAccessToken(completionHandler: (AnyObject?, NSError?) -> Void) { + if let unwrappedRefreshToken = self.oauth2Session.refreshToken { + var paramDict: [String: String] = ["refresh_token": unwrappedRefreshToken, "client_id": config.clientId, "grant_type": "refresh_token"] + if (config.clientSecret != nil) { + paramDict["client_secret"] = config.clientSecret! + } + + http.request(.POST, path: config.refreshTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in + if (error != nil) { + completionHandler(nil, error) + return + } + + if let unwrappedResponse = response as? [String: AnyObject] { + let accessToken: String = unwrappedResponse["access_token"] as! String + let expiration = unwrappedResponse["expires_in"] as! NSNumber + let exp: String = expiration.stringValue + + self.oauth2Session.saveAccessToken(accessToken, refreshToken: unwrappedRefreshToken, accessTokenExpiration: exp, refreshTokenExpiration: nil) + + completionHandler(unwrappedResponse["access_token"], nil); + } + }) + } + } + + /** + Exchange an authorization code for an access token. + + :param: code the 'authorization' code to exchange for an access token. + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func exchangeAuthorizationCodeForAccessToken(code: String, completionHandler: (AnyObject?, NSError?) -> Void) { + var paramDict: [String: String] = ["code": code, "client_id": config.clientId, "redirect_uri": config.redirectURL, "grant_type":"authorization_code"] + + if let unwrapped = config.clientSecret { + paramDict["client_secret"] = unwrapped + } + + http.request(.POST, path: config.accessTokenEndpoint, parameters: paramDict, completionHandler: {(responseObject, error) in + if (error != nil) { + completionHandler(nil, error) + return + } + + if let unwrappedResponse = responseObject as? [String: AnyObject] { + let accessToken: String = unwrappedResponse["access_token"] as! String + let refreshToken: String? = unwrappedResponse["refresh_token"] as? String + let expiration = unwrappedResponse["expires_in"] as? NSNumber + let exp: String? = expiration?.stringValue + // expiration for refresh token is used in Keycloak + let expirationRefresh = unwrappedResponse["refresh_expires_in"] as? NSNumber + let expRefresh = expirationRefresh?.stringValue + + self.oauth2Session.saveAccessToken(accessToken, refreshToken: refreshToken, accessTokenExpiration: exp, refreshTokenExpiration: expRefresh) + completionHandler(accessToken, nil) + } + }) + } + + /** + Gateway to request authorization access. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func requestAccess(completionHandler: (AnyObject?, NSError?) -> Void) { + if (self.oauth2Session.accessToken != nil && self.oauth2Session.tokenIsNotExpired()) { + // we already have a valid access token, nothing more to be done + completionHandler(self.oauth2Session.accessToken!, nil); + } else if (self.oauth2Session.refreshToken != nil && self.oauth2Session.refreshTokenIsNotExpired()) { + // need to refresh token + self.refreshAccessToken(completionHandler) + } else { + // ask for authorization code and once obtained exchange code for access token + self.requestAuthorizationCode(completionHandler) + } + } + + /** + Gateway to provide authentication using the Authorization Code Flow with OpenID Connect. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func login(completionHandler: (AnyObject?, OpenIDClaim?, NSError?) -> Void) { + + self.requestAccess { (response:AnyObject?, error:NSError?) -> Void in + + if (error != nil) { + completionHandler(nil, nil, error) + return + } + var paramDict: [String: String] = [:] + if response != nil { + paramDict = ["access_token": response! as! String] + } + if let userInfoEndpoint = self.config.userInfoEndpoint { + + self.http.request(.GET, path:userInfoEndpoint, parameters: paramDict, completionHandler: {(responseObject, error) in + if (error != nil) { + completionHandler(nil, nil, error) + return + } + var openIDClaims: OpenIDClaim? + if let unwrappedResponse = responseObject as? [String: AnyObject] { + openIDClaims = OpenIDClaim(fromDict: unwrappedResponse) + } + completionHandler(response, openIDClaims, nil) + }) + } else { + completionHandler(nil, nil, NSError(domain: "OAuth2Module", code: 0, userInfo: ["OpenID Connect" : "No UserInfo endpoint available in config"])) + return + } + + } + + } + + /** + Request to revoke access. + + :param: completionHandler A block object to be executed when the request operation finishes. + */ + public func revokeAccess(completionHandler: (AnyObject?, NSError?) -> Void) { + // return if not yet initialized + if (self.oauth2Session.accessToken == nil) { + return; + } + let paramDict:[String:String] = ["token":self.oauth2Session.accessToken!] + + http.request(.POST, path: config.revokeTokenEndpoint!, parameters: paramDict, completionHandler: { (response, error) in + if (error != nil) { + completionHandler(nil, error) + return + } + + self.oauth2Session.clearTokens() + completionHandler(response, nil) + }) + } + + /** + Return any authorization fields. + + :returns: a dictionary filled with the authorization fields. + */ + public func authorizationFields() -> [String: String]? { + if (self.oauth2Session.accessToken == nil) { + return nil + } else { + return ["Authorization":"Bearer \(self.oauth2Session.accessToken!)"] + } + } + + /** + Returns a boolean indicating whether authorization has been granted. + + :returns: true if authorized, false otherwise. + */ + public func isAuthorized() -> Bool { + return self.oauth2Session.accessToken != nil && self.oauth2Session.tokenIsNotExpired() + } + + // MARK: Internal Methods + + func extractCode(notification: NSNotification, completionHandler: (AnyObject?, NSError?) -> Void) { + let url: NSURL? = (notification.userInfo as! [String: AnyObject])[UIApplicationLaunchOptionsURLKey] as? NSURL + + // extract the code from the URL + let code = self.parametersFromQueryString(url?.query)["code"] + // if exists perform the exchange + if (code != nil) { + self.exchangeAuthorizationCodeForAccessToken(code!, completionHandler: completionHandler) + // update state + state = .AuthorizationStateApproved + } else { + + let error = NSError(domain:AGAuthzErrorDomain, code:0, userInfo:["NSLocalizedDescriptionKey": "User cancelled authorization."]) + completionHandler(nil, error) + } + // finally, unregister + self.stopObserving() + } + + func parametersFromQueryString(queryString: String?) -> [String: String] { + var parameters = [String: String]() + if (queryString != nil) { + let parameterScanner: NSScanner = NSScanner(string: queryString!) + var name:NSString? = nil + var value:NSString? = nil + + while (parameterScanner.atEnd != true) { + name = nil; + parameterScanner.scanUpToString("=", intoString: &name) + parameterScanner.scanString("=", intoString:nil) + + value = nil + parameterScanner.scanUpToString("&", intoString:&value) + parameterScanner.scanString("&", intoString:nil) + + if (name != nil && value != nil) { + parameters[name!.stringByReplacingPercentEscapesUsingEncoding(NSUTF8StringEncoding)!] = value!.stringByReplacingPercentEscapesUsingEncoding(NSUTF8StringEncoding) + } + } + } + + return parameters; + } + + deinit { + self.stopObserving() + } + + func stopObserving() { + // clear all observers + if (applicationLaunchNotificationObserver != nil) { + NSNotificationCenter.defaultCenter().removeObserver(applicationLaunchNotificationObserver!) + self.applicationLaunchNotificationObserver = nil; + } + + if (applicationDidBecomeActiveNotificationObserver != nil) { + NSNotificationCenter.defaultCenter().removeObserver(applicationDidBecomeActiveNotificationObserver!) + applicationDidBecomeActiveNotificationObserver = nil + } + } +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift new file mode 100644 index 0000000..7ef24cd --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2Session.swift @@ -0,0 +1,75 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +import Foundation + +/** +The protocol that an OAuth2 Session modules must adhere to and represent storage of oauth specific metadata. See TrustedPersistantOAuth2Session and UntrustedMemoryOAuth2Session as example implementations +*/ +public protocol OAuth2Session { + + /** + The account id. + */ + var accountId: String {get} + + /** + The access token which expires. + */ + var accessToken: String? {get set} + + /** + The access token's expiration date. + */ + var accessTokenExpirationDate: NSDate? {get set} + + /** + The refresh token's expiration date. + */ + var refreshTokenExpirationDate: NSDate? {get set} + + /** + The refresh tokens. This toke does not expire and should be used to renew access token when expired. + */ + var refreshToken: String? {get set} + + /** + Check validity of accessToken. return true if still valid, false when expired. + */ + func tokenIsNotExpired() -> Bool + + + /** + Check validity of refreshToken. return true if still valid, false when expired. + */ + func refreshTokenIsNotExpired() -> Bool + + /** + Clears any tokens storage + */ + func clearTokens() + + /** + Save tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting + for grant access. + + :param: accessToken the access token. + :param: refreshToken the refresh token. + :param: accessTokenExpiration the expiration for the access token. + :param: refreshTokenExpiration the expiration for the refresh token. + */ + func saveAccessToken(accessToken: String?, refreshToken: String?, accessTokenExpiration: String?, refreshTokenExpiration: String?) +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift new file mode 100644 index 0000000..73c1c2f --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OAuth2WebViewController.swift @@ -0,0 +1,53 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +import UIKit +/** +OAuth2WebViewController is a UIViewController to be used when the Oauth2 flow used an embedded view controller +rather than an external browser approach. +*/ +class OAuth2WebViewController: UIViewController, UIWebViewDelegate { + /// Login URL for OAuth. + var targetURL : NSURL = NSURL() + /// WebView intance used to load login page. + var webView : UIWebView = UIWebView() + + /// Overrride of viewDidLoad to load the login page. + override internal func viewDidLoad() { + super.viewDidLoad() + webView.frame = UIScreen.mainScreen().applicationFrame + webView.delegate = self + self.view.addSubview(webView) + loadAddressURL() + } + + override func viewDidLayoutSubviews() { + super.viewDidLayoutSubviews() + self.webView.frame = self.view.bounds + } + + override internal func didReceiveMemoryWarning() { + super.didReceiveMemoryWarning() + } + + func loadAddressURL() { + let req = NSURLRequest(URL: targetURL) + webView.loadRequest(req) + } +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift new file mode 100644 index 0000000..86ae535 --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/OpenIDClaim.swift @@ -0,0 +1,109 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import Foundation + +/** +Standard claims as described in spec: http://openid.net/specs/openid-connect-core-1_0.html#StandardClaims +*/ +public class OpenIDClaim: CustomStringConvertible { + /// Subject - Identifier for the End-User at the Issuer. + public var sub: String? + /// End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences. + public var name: String? + /// Given name(s) or first name(s) of the End-User. + public var givenName: String? + /// Surname(s) or last name(s) of the End-User. + public var familyName: String? + /// Middle name(s) of the End-User. + public var middleName: String? + /// Casual name of the End-User that may or may not be the same as the given_name. + public var nickname: String? + /// Shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. + public var preferredUsername: String? + /// URL of the End-User's profile page. + public var profile: String? + /// URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. + public var picture: String? + /// URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with. + public var website: String? + /// End-User's preferred e-mail address. + public var email: String? + /// True if the End-User's e-mail address has been verified; otherwise false. + public var emailVerified: Bool? + /// End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable. + public var gender: String? + /// End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. + public var birthdate: String? + /// String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles. + public var zoneinfo: String? + /// [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. + public var locale: String? + /// End-User's preferred telephone number. + public var phoneNumber: String? + /// True if the End-User's phone number has been verified; otherwise false. + public var phoneNumberVerified: Bool? + /// End-User's preferred postal address. + public var address: [String: AnyObject?]? + /// Time the End-User's information was last updated. + public var updatedAt: Int? + // google specific - not in spec? + public var kind: String? + public var hd: String? + /// Display all the claims. + public var description: String { + return "sub: \(sub)\nname: \(name)\ngivenName: \(givenName)\nfamilyName: \(familyName)\nmiddleName: \(middleName)\n" + + "nickname: \(nickname)\npreferredUsername: \(preferredUsername)\nprofile: \(profile)\npicture: \(picture)\n" + + "website: \(website)\nemail: \(email)\nemailVerified: \(emailVerified)\ngender: \(gender)\nbirthdate: \(birthdate)\n" + } + + /// Initialize an OpenIDClaim from a dictionary. all information not available are optional values set to .None. + public init(fromDict:[String: AnyObject]) { + sub = fromDict["sub"] as? String + name = fromDict["name"] as? String + givenName = fromDict["given_name"] as? String + familyName = fromDict["family_name"] as? String + middleName = fromDict["middle_name"] as? String + nickname = fromDict["nickname"] as? String + preferredUsername = fromDict["preferred_username"] as? String + profile = fromDict["profile"] as? String + picture = fromDict["picture"] as? String + website = fromDict["website"] as? String + email = fromDict["email"] as? String + emailVerified = fromDict["email_verified"] as? Bool + gender = fromDict["gender"] as? String + zoneinfo = fromDict["zoneinfo"] as? String + locale = fromDict["locale"] as? String + phoneNumber = fromDict["phone_number"] as? String + phoneNumberVerified = fromDict["phone_number_verified"] as? Bool + updatedAt = fromDict["updated_at"] as? Int + kind = fromDict["sub"] as? String + hd = fromDict["hd"] as? String + } +} +/// Facebook specific claims. +public class FacebookOpenIDClaim: OpenIDClaim { + + override init(fromDict:[String: AnyObject]) { + super.init(fromDict: fromDict) + givenName = fromDict["first_name"] as? String + familyName = fromDict["last_name"] as? String + zoneinfo = fromDict["timezone"] as? String + } +} + + diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift new file mode 100644 index 0000000..02fa885 --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/TrustedPersistantOAuth2Session.swift @@ -0,0 +1,333 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +import Foundation + +import Security +import UIKit + +/** +The type of token to be saved in KeychainWrap: + +- AccessToken: access token +- ExpirationDate: access token expiration date +- RefreshToken: refresh token +- RefreshExpirationDate: refresh token expiration date (used for Keycloak adapter only) +*/ +public enum TokenType: String { + case AccessToken = "AccessToken" + case RefreshToken = "RefreshToken" + case ExpirationDate = "ExpirationDate" + case RefreshExpirationDate = "RefreshExpirationDate" +} + +/** +A handy Keychain wrapper. It saves your OAuth2 tokens using WhenPasscodeSet ACL. +*/ +public class KeychainWrap { + + /** + The service id. By default set to apple bundle id. + */ + public var serviceIdentifier: String + + /** + The group id is Keychain access group which is used for sharing keychain content accross multiple apps issued from same developer. By default there is no access group. + */ + public var groupId: String? + + /** + Initialize KeychainWrapper setting default values. + + :param: serviceId unique service, defulated to bundleId + :param: groupId used for SSO between app issued from same developer certificate. + */ + public init(serviceId: String? = NSBundle.mainBundle().bundleIdentifier, groupId: String? = nil) { + if serviceId == nil { + self.serviceIdentifier = "unkown" + } else { + self.serviceIdentifier = serviceId! + } + self.groupId = groupId + } + + /** + Save tokens information in Keychain. + + :param: key usually use accountId for oauth2 module, any unique string. + :param: tokenType type of token: access, refresh. + :param: value string value of the token. + */ + public func save(key: String, tokenType: TokenType, value: String) -> Bool { + let dataFromString: NSData? = value.dataUsingEncoding(NSUTF8StringEncoding) + if (dataFromString == nil) { + return false + } + + // Instantiate a new default keychain query + let keychainQuery = NSMutableDictionary() + if let groupId = self.groupId { + keychainQuery[kSecAttrAccessGroup as String] = groupId + } + keychainQuery[kSecClass as String] = kSecClassGenericPassword + keychainQuery[kSecAttrService as String] = self.serviceIdentifier + keychainQuery[kSecAttrAccount as String] = key + "_" + tokenType.rawValue + keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly + + // Search for the keychain items + let statusSearch: OSStatus = SecItemCopyMatching(keychainQuery, nil) + + // if found update + if (statusSearch == errSecSuccess) { + if (dataFromString != nil) { + let attributesToUpdate = NSMutableDictionary() + attributesToUpdate[kSecValueData as String] = dataFromString! + + let statusUpdate: OSStatus = SecItemUpdate(keychainQuery, attributesToUpdate) + if (statusUpdate != errSecSuccess) { + print("tokens not updated") + return false + } + } else { // revoked token or newly installed app, clear KC + return self.resetKeychain() + } + } else if(statusSearch == errSecItemNotFound) { // if new, add + keychainQuery[kSecValueData as String] = dataFromString! + let statusAdd: OSStatus = SecItemAdd(keychainQuery, nil) + if(statusAdd != errSecSuccess) { + print("tokens not saved") + return false + } + } else { // error case + return false + } + + return true + } + + /** + Read tokens information in Keychain. If the entry is not found return nil. + + :param: userAccount key of the keychain entry, usually accountId for oauth2 module. + :param: tokenType type of token: access, refresh. + */ + public func read(userAccount: String, tokenType: TokenType) -> String? { + let keychainQuery = NSMutableDictionary() + if let groupId = self.groupId { + keychainQuery[kSecAttrAccessGroup as String] = groupId + } + keychainQuery[kSecClass as String] = kSecClassGenericPassword + keychainQuery[kSecAttrService as String] = self.serviceIdentifier + keychainQuery[kSecAttrAccount as String] = userAccount + "_" + tokenType.rawValue + keychainQuery[kSecReturnData as String] = true + keychainQuery[kSecAttrAccessible as String] = kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly + + + var dataTypeRef: Unmanaged? + // Search for the keychain items + let status: OSStatus = withUnsafeMutablePointer(&dataTypeRef) { SecItemCopyMatching(keychainQuery as CFDictionaryRef, UnsafeMutablePointer($0)) } + + if (status == errSecItemNotFound) { + print("\(tokenType.rawValue) not found") + return nil + } else if (status != errSecSuccess) { + print("Error attempting to retrieve \(tokenType.rawValue) with error code \(status) ") + return nil + } + + let opaque = dataTypeRef?.toOpaque() + var contentsOfKeychain: String? + if let op = opaque { + let retrievedData = Unmanaged.fromOpaque(op).takeUnretainedValue() + + // Convert the data retrieved from the keychain into a string + contentsOfKeychain = NSString(data: retrievedData, encoding: NSUTF8StringEncoding) as? String + } else { + print("Nothing was retrieved from the keychain. Status code \(status)") + } + + return contentsOfKeychain + } + + /** + Clear all keychain entries. Note that Keychain can only be cleared progemmatically. + */ + public func resetKeychain() -> Bool { + return self.deleteAllKeysForSecClass(kSecClassGenericPassword) && + self.deleteAllKeysForSecClass(kSecClassInternetPassword) && + self.deleteAllKeysForSecClass(kSecClassCertificate) && + self.deleteAllKeysForSecClass(kSecClassKey) && + self.deleteAllKeysForSecClass(kSecClassIdentity) + } + + func deleteAllKeysForSecClass(secClass: CFTypeRef) -> Bool { + let keychainQuery = NSMutableDictionary() + keychainQuery[kSecClass as String] = secClass + let result:OSStatus = SecItemDelete(keychainQuery) + if (result == errSecSuccess) { + return true + } else { + return false + } + } +} + +/** +An OAuth2Session implementation to store OAuth2 metadata using the Keychain. +*/ +public class TrustedPersistantOAuth2Session: OAuth2Session { + + /** + The account id. + */ + public var accountId: String + + /** + The access token's expiration date. + */ + public var accessTokenExpirationDate: NSDate? { + get { + let dateAsString = self.keychain.read(self.accountId, tokenType: .ExpirationDate) + if let unwrappedDate:String = dateAsString { + return NSDate(dateString: unwrappedDate) + } else { + return nil + } + } + set(value) { + if let unwrappedValue = value { + self.keychain.save(self.accountId, tokenType: .ExpirationDate, value: unwrappedValue.toString()) + } + } + } + + /** + The access token. The information is read securely from Keychain. + */ + public var accessToken: String? { + get { + return self.keychain.read(self.accountId, tokenType: .AccessToken) + } + set(value) { + if let unwrappedValue = value { + self.keychain.save(self.accountId, tokenType: .AccessToken, value: unwrappedValue) + } + } + } + + /** + The refresh token. The information is read securely from Keychain. + */ + public var refreshToken: String? { + get { + return self.keychain.read(self.accountId, tokenType: .RefreshToken) + } + set(value) { + if let unwrappedValue = value { + self.keychain.save(self.accountId, tokenType: .RefreshToken, value: unwrappedValue) + } + } + } + + /** + The refresh token's expiration date. + */ + public var refreshTokenExpirationDate: NSDate? { + get { + let dateAsString = self.keychain.read(self.accountId, tokenType: .RefreshExpirationDate) + if let unwrappedDate:String = dateAsString { + return NSDate(dateString: unwrappedDate) + } else { + return nil + } + } + set(value) { + if let unwrappedValue = value { + _ = self.keychain.save(self.accountId, tokenType: .RefreshExpirationDate, value: unwrappedValue.toString()) + } + } + } + + private let keychain: KeychainWrap + + /** + Check validity of accessToken. return true if still valid, false when expired. + */ + public func tokenIsNotExpired() -> Bool { + return self.accessTokenExpirationDate != nil ? (self.accessTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true + } + + /** + Check validity of refreshToken. return true if still valid, false when expired. + */ + public func refreshTokenIsNotExpired() -> Bool { + return self.refreshTokenExpirationDate != nil ? (self.refreshTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true + } + + /** + Save in memory tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting for grant access. + */ + public func saveAccessToken(accessToken: String?, refreshToken: String?, accessTokenExpiration: String?, refreshTokenExpiration: String?) { + self.accessToken = accessToken + self.refreshToken = refreshToken + + let now = NSDate() + if let inter = accessTokenExpiration?.doubleValue { + self.accessTokenExpirationDate = now.dateByAddingTimeInterval(inter) + } + if let inter = refreshTokenExpiration?.doubleValue { + self.refreshTokenExpirationDate = now.dateByAddingTimeInterval(inter) + } + } + + /** + Clear all tokens. Method used when doing logout or revoke. + */ + public func clearTokens() { + self.accessToken = nil + self.refreshToken = nil + self.accessTokenExpirationDate = nil + self.refreshTokenExpirationDate = nil + } + + /** + Initialize TrustedPersistantOAuth2Session using account id. Account id is the service id used for keychain storage. + + :param: accountId uniqueId to identify the oauth2module + :param: groupId used for SSO between app issued from same developer certificate. + :param: accessToken optional parameter to initilaize the storage with initial values + :param: accessTokenExpirationDate optional parameter to initilaize the storage with initial values + :param: refreshToken optional parameter to initilaize the storage with initial values + :param: refreshTokenExpirationDate optional parameter to initilaize the storage with initial values + */ + public init(accountId: String, + groupId: String? = nil, + accessToken: String? = nil, + accessTokenExpirationDate: NSDate? = nil, + refreshToken: String? = nil, + refreshTokenExpirationDate: NSDate? = nil) { + self.accountId = accountId + if groupId != nil { + self.keychain = KeychainWrap(serviceId: groupId, groupId: groupId) + } else { + self.keychain = KeychainWrap() + } + self.accessToken = accessToken + self.refreshToken = refreshToken + self.accessTokenExpirationDate = accessTokenExpirationDate + self.refreshTokenExpirationDate = refreshTokenExpirationDate + } +} diff --git a/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift b/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift new file mode 100644 index 0000000..d93bc95 --- /dev/null +++ b/Pods/AeroGearOAuth2/AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift @@ -0,0 +1,110 @@ +/* +* JBoss, Home of Professional Open Source. +* Copyright Red Hat, Inc., and individual contributors +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +import Foundation + +extension String { + var doubleValue: Double { + return (self as NSString).doubleValue + } +} + +/** +An OAuth2Session implementation the stores OAuth2 metadata in-memory +*/ +public class UntrustedMemoryOAuth2Session: OAuth2Session { + + /** + The account id. + */ + public var accountId: String + + /** + The access token which expires. + */ + public var accessToken: String? + + /** + The access token's expiration date. + */ + public var accessTokenExpirationDate: NSDate? + + /** + The refresh tokens. This toke does not expire and should be used to renew access token when expired. + */ + public var refreshToken: String? + + /** + The refresh token's expiration date. + */ + public var refreshTokenExpirationDate: NSDate? + + /** + Check validity of accessToken. return true if still valid, false when expired. + */ + public func tokenIsNotExpired() -> Bool { + return self.accessTokenExpirationDate != nil ? (self.accessTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true + } + + /** + Check validity of refreshToken. return true if still valid, false when expired. + */ + public func refreshTokenIsNotExpired() -> Bool { + return self.refreshTokenExpirationDate != nil ? (self.refreshTokenExpirationDate!.timeIntervalSinceDate(NSDate()) > 0) : true + } + + /** + Save in memory tokens information. Saving tokens allow you to refresh accesstoken transparently for the user without prompting for grant access. + */ + public func saveAccessToken(accessToken: String?, refreshToken: String?, accessTokenExpiration: String?, refreshTokenExpiration: String?) { + self.accessToken = accessToken + self.refreshToken = refreshToken + let now = NSDate() + if let inter = accessTokenExpiration?.doubleValue { + self.accessTokenExpirationDate = now.dateByAddingTimeInterval(inter) + } + if let interRefresh = refreshTokenExpiration?.doubleValue { + self.refreshTokenExpirationDate = now.dateByAddingTimeInterval(interRefresh) + } + } + + /** + Clear all tokens. Method used when doing logout or revoke. + */ + public func clearTokens() { + self.accessToken = nil + self.refreshToken = nil + self.accessTokenExpirationDate = nil + self.refreshTokenExpirationDate = nil + } + + /** + Initialize session using account id. + + :param: accountId uniqueId to identify the oauth2module. + :param: accessToken optional parameter to initilaize the storage with initial values. + :param: accessTokenExpirationDate optional parameter to initilaize the storage with initial values. + :param: refreshToken optional parameter to initilaize the storage with initial values. + :param: refreshTokenExpirationDate optional parameter to initilaize the storage with initial values. + */ + public init(accountId: String, accessToken: String? = nil, accessTokenExpirationDate: NSDate? = nil, refreshToken: String? = nil, refreshTokenExpirationDate: NSDate? = nil) { + self.accessToken = accessToken + self.accessTokenExpirationDate = accessTokenExpirationDate + self.refreshToken = refreshToken + self.refreshTokenExpirationDate = refreshTokenExpirationDate + self.accountId = accountId + } +} diff --git a/Pods/AeroGearOAuth2/LICENSE.txt b/Pods/AeroGearOAuth2/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/Pods/AeroGearOAuth2/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Pods/AeroGearOAuth2/README.md b/Pods/AeroGearOAuth2/README.md new file mode 100644 index 0000000..f1f74ec --- /dev/null +++ b/Pods/AeroGearOAuth2/README.md @@ -0,0 +1,130 @@ +# aerogear-ios-oauth2 [![Build Status](https://travis-ci.org/aerogear/aerogear-ios-oauth2.png)](https://travis-ci.org/aerogear/aerogear-ios-oauth2) + +> This module currently build with Xcode 7 and supports iOS8, iOS9. + +OAuth2 Client based on [aerogear-ios-http](https://github.com/aerogear/aerogear-ios-http). +Taking care of: + +* account manager for multiple OAuth2 accounts, +* request access and refresh token, +* grant access through secure external browser and URI schema to re-enter app, +* (implicit or explicit) refresh tokens, +* revoke tokens, +* permanent secure storage, +* adaptable to OAuth2 specific providers. Existing extensions: Google, Facebook, [Keycloak 1.5.0.Final](http://keycloak.jboss.org/) etc... +* openID Connect login + +100% Swift 2.0. + +| | Project Info | +| --------------- | ------------- | +| License: | Apache License, Version 2.0 | +| Build: | CocoaPods | +| Documentation: | https://aerogear.org/docs/guides/aerogear-ios-2.X/ | +| Issue tracker: | https://issues.jboss.org/browse/AGIOS | +| Mailing lists: | [aerogear-users](http://aerogear-users.1116366.n5.nabble.com/) ([subscribe](https://lists.jboss.org/mailman/listinfo/aerogear-users)) | +| | [aerogear-dev](http://aerogear-dev.1069024.n5.nabble.com/) ([subscribe](https://lists.jboss.org/mailman/listinfo/aerogear-dev)) | + +## Example Usage + +#### OAuth2 grant for GET with a predefined config like Facebook +```swift +var Http = Http() // [1] +let facebookConfig = FacebookConfig( // [2] + clientId: "YYY", + clientSecret: "XXX", + scopes:["photo_upload, publish_actions"]) +var oauth2Module = AccountManager.addFacebookAccount(facebookConfig) // [3] +http.authzModule = oauth2Module // [4] +http.request(.GET, path: "/get", completionHandler: {(response, error) in // [5] + // handle response +}) +``` +Create an instance of Http [1] from [aerogear-ios-http](https://github.com/aerogear/aerogear-ios-http) a thin layer on top of NSURLSession. + +Fill-in the OAuth2 configuration in [2], here we use a predefined Config with all Facebook endpoint filled-in for us. + +Create an OAuth2Module from AccountManager's factory method in [3]. + +Inject OAuth2Module into http object in [4] and uses the http object to GET/POST etc... + +See full description in [aerogear.org](https://aerogear.org/docs/guides/aerogear-ios-2.X/Authorization/) + +#### OpenID Connect with Keycloak +```swift +var Http = Http() +let keycloakConfig = KeycloakConfig( + clientId: "sharedshoot-third-party", + host: "http://localhost:8080", + realm: "shoot-realm", + isOpenIDConnect: true) +var oauth2Module = AccountManager.addKeycloakAccount(keycloakConfig) +http.authzModule = oauth2Module +oauth2Module.login {(accessToken: AnyObject?, claims: OpenIDClaim?, error: NSError?) in // [1] + // Do your own stuff here +} + +``` +Similar approach for configuration, here we want to login as Keycloak user, using ```login``` method we get some user information back in OpenIDClaim object. + +> **NOTE:** The latest version of the library works with Keycloak 1.1.0.Final. Previous version of Keycloak 1.0.x will work except for the transparent refresh of tokens (ie: after access token expires you will have to go through grant process). + +### Build, test and play with aerogear-ios-oauth2 + +1. Clone this project + +2. Get the dependencies + +The project uses [CocoaPods](http://cocoapods.org) for handling its dependencies. As a pre-requisite, install CocoaPods and then install the pod. On the root directory of the project run: +```bash +pod install +``` +3. open AeroGearOAuth2.xcworkspace + +## Adding the library to your project +To add the library in your project, you can either use [CocoaPods](http://cocoapods.org) or manual install in your project. See the respective sections below for instructions: + +### Using [CocoaPods](http://cocoapods.org) +In your ```Podfile``` add: + +``` +pod 'AeroGearOAuth2' +``` + +and then: + +```bash +pod install +``` + +to install your dependencies + +### Manual Installation +Follow these steps to add the library in your Swift project: + +1. Add AeroGearOAuth2 as a [submodule](http://git-scm.com/docs/git-submodule) in your project. Open a terminal and navigate to your project directory. Then enter: +```bash +git submodule add https://github.com/aerogear/aerogear-ios-oauth2.git +``` +2. Open the `aerogear-ios-oauth2` folder, and drag the `AeroGearOAuth2.xcodeproj` into the file navigator in Xcode. +3. In Xcode select your application target and under the "Targets" heading section, ensure that the 'iOS Deployment Target' matches the application target of AeroGearOAuth2.framework (Currently set to 8.0). +5. Select the "Build Phases" heading section, expand the "Target Dependencies" group and add `AeroGearOAuth2.framework`. +7. Click on the `+` button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add `AeroGearOAuth2.framework`. + +## Documentation + +For more details about the current release, please consult [our documentation](https://aerogear.org/docs/guides/aerogear-ios-2.X/). + +## Development + +If you would like to help develop AeroGear you can join our [developer's mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-dev), join #aerogear on Freenode, or shout at us on Twitter @aerogears. + +Also takes some time and skim the [contributor guide](http://aerogear.org/docs/guides/Contributing/) + +## Questions? + +Join our [user mailing list](https://lists.jboss.org/mailman/listinfo/aerogear-users) for any questions or help! We really hope you enjoy app development with AeroGear! + +## Found a bug? + +If you found a bug please create a ticket for us on [Jira](https://issues.jboss.org/browse/AGIOS) with some steps to reproduce it. \ No newline at end of file diff --git a/Pods/GDataXML-HTML/LICENSE b/Pods/GDataXML-HTML/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/Pods/GDataXML-HTML/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.h b/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.h new file mode 100644 index 0000000..e757630 --- /dev/null +++ b/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.h @@ -0,0 +1,245 @@ +/* Modifications for HTML parser support: + * Copyright (c) 2011 Simon Grätzer simon@graetzer.org + * + * Copyright (c) 2008 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// These node, element, and document classes implement a subset of the methods +// provided by NSXML. While NSXML behavior is mimicked as much as possible, +// there are important differences. +// +// The biggest difference is that, since this is based on libxml2, there +// is no retain model for the underlying node data. Rather than copy every +// node obtained from a parse tree (which would have a substantial memory +// impact), we rely on weak references, and it is up to the code that +// created a document to retain it for as long as any +// references rely on nodes inside that document tree. + + +#import + +// libxml includes require that the target Header Search Paths contain +// +// /usr/include/libxml2 +// +// and Other Linker Flags contain +// +// -lxml2 + +#import +#import +#import +#import +#import +#import + + +#if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4) || defined(GDATA_TARGET_NAMESPACE) +// we need NSInteger for the 10.4 SDK, or we're using target namespace macros +#import "GDataDefines.h" +#endif + +#undef _EXTERN +#undef _INITIALIZE_AS +#ifdef GDATAXMLNODE_DEFINE_GLOBALS +#define _EXTERN +#define _INITIALIZE_AS(x) =x +#else +#if defined(__cplusplus) +#define _EXTERN extern "C" +#else +#define _EXTERN extern +#endif +#define _INITIALIZE_AS(x) +#endif + +// when no namespace dictionary is supplied for XPath, the default namespace +// for the evaluated tree is registered with the prefix _def_ns +_EXTERN const char* kGDataXMLXPathDefaultNamespacePrefix _INITIALIZE_AS("_def_ns"); + +// Nomenclature for method names: +// +// Node = GData node +// XMLNode = xmlNodePtr +// +// So, for example: +// + (id)nodeConsumingXMLNode:(xmlNodePtr)theXMLNode; + +@class NSArray, NSDictionary, NSError, NSString, NSURL; +@class GDataXMLElement, GDataXMLDocument; + +enum { + GDataXMLInvalidKind = 0, + GDataXMLDocumentKind, + GDataXMLElementKind, + GDataXMLAttributeKind, + GDataXMLNamespaceKind, + GDataXMLProcessingInstructionKind, + GDataXMLCommentKind, + GDataXMLTextKind, + GDataXMLDTDKind, + GDataXMLEntityDeclarationKind, + GDataXMLAttributeDeclarationKind, + GDataXMLElementDeclarationKind, + GDataXMLNotationDeclarationKind +}; + +typedef NSUInteger GDataXMLNodeKind; + +@interface GDataXMLNode : NSObject { +@protected + // NSXMLNodes can have a namespace URI or prefix even if not part + // of a tree; xmlNodes cannot. When we create nodes apart from + // a tree, we'll store the dangling prefix or URI in the xmlNode's name, + // like + // "prefix:name" + // or + // "{http://uri}:name" + // + // We will fix up the node's namespace and name (and those of any children) + // later when adding the node to a tree with addChild: or addAttribute:. + // See fixUpNamespacesForNode:. + + xmlNodePtr xmlNode_; // may also be an xmlAttrPtr or xmlNsPtr + BOOL shouldFreeXMLNode_; // if yes, xmlNode_ will be free'd in dealloc + + // cached values + NSString *cachedName_; + NSArray *cachedChildren_; + NSArray *cachedAttributes_; +} + ++ (GDataXMLElement *)elementWithName:(NSString *)name; ++ (GDataXMLElement *)elementWithName:(NSString *)name stringValue:(NSString *)value; ++ (GDataXMLElement *)elementWithName:(NSString *)name URI:(NSString *)value; + ++ (id)attributeWithName:(NSString *)name stringValue:(NSString *)value; ++ (id)attributeWithName:(NSString *)name URI:(NSString *)attributeURI stringValue:(NSString *)value; + ++ (id)namespaceWithName:(NSString *)name stringValue:(NSString *)value; + ++ (id)textWithStringValue:(NSString *)value; + +- (NSString *)stringValue; +- (void)setStringValue:(NSString *)str; + +- (NSUInteger)childCount; +- (NSArray *)children; +- (GDataXMLNode *)childAtIndex:(unsigned)index; + +- (NSString *)localName; +- (NSString *)name; +- (NSString *)prefix; +- (NSString *)URI; + +- (GDataXMLNodeKind)kind; + +- (NSString *)XMLString; + ++ (NSString *)localNameForName:(NSString *)name; ++ (NSString *)prefixForName:(NSString *)name; + +// This is the preferred entry point for nodesForXPath. This takes an explicit +// namespace dictionary (keys are prefixes, values are URIs). +- (NSArray *)nodesForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError **)error; + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError **)error; + +// This implementation of nodesForXPath registers namespaces only from the +// document's root node. _def_ns may be used as a prefix for the default +// namespace, though there's no guarantee that the default namespace will +// be consistenly the same namespace in server responses. +- (NSArray *)nodesForXPath:(NSString *)xpath error:(NSError **)error; + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath error:(NSError **)error; + +// access to the underlying libxml node; be sure to release the cached values +// if you change the underlying tree at all +- (xmlNodePtr)XMLNode; +- (void)releaseCachedValues; + +@end + + +@interface GDataXMLElement : GDataXMLNode + +- (id)initWithXMLString:(NSString *)str error:(NSError **)error; +- (id)initWithHTMLString:(NSString *)str error:(NSError **)error; + +- (NSArray *)namespaces; +- (void)setNamespaces:(NSArray *)namespaces; +- (void)addNamespace:(GDataXMLNode *)aNamespace; + +// addChild adds a copy of the child node to the element +- (void)addChild:(GDataXMLNode *)child; +- (void)removeChild:(GDataXMLNode *)child; + +- (NSArray *)elementsForName:(NSString *)name; +- (NSArray *)elementsForLocalName:(NSString *)localName URI:(NSString *)URI; + +- (NSArray *)attributes; +- (GDataXMLNode *)attributeForName:(NSString *)name; +- (GDataXMLNode *)attributeForLocalName:(NSString *)name URI:(NSString *)attributeURI; +- (void)addAttribute:(GDataXMLNode *)attribute; + +- (NSString *)resolvePrefixForNamespaceURI:(NSString *)namespaceURI; + +@end + +@interface GDataXMLDocument : NSObject { +@protected + xmlDoc* xmlDoc_; // strong; always free'd in dealloc + NSStringEncoding _encoding; +} + +- (id)initWithXMLString:(NSString *)str encoding:(NSStringEncoding)encoding error:(NSError **)error; +- (id)initWithData:(NSData *)data encoding:(NSStringEncoding)encoding error:(NSError **)error; + +- (id)initWithHTMLString:(NSString *)str encoding:(NSStringEncoding)encoding error:(NSError **)error; +- (id)initWithHTMLData:(NSData *)data encoding:(NSStringEncoding)encoding error:(NSError **)error; + +- (id)initWithXMLString:(NSString *)str error:(NSError **)error; +- (id)initWithData:(NSData *)data error:(NSError **)error; + +- (id)initWithHTMLString:(NSString *)str error:(NSError **)error; +- (id)initWithHTMLData:(NSData *)data error:(NSError **)error; + +// initWithRootElement uses a copy of the argument as the new document's root +- (id)initWithRootElement:(GDataXMLElement *)element; + +- (GDataXMLElement *)rootElement; + +- (NSData *)XMLData; + +- (void)setVersion:(NSString *)version; +- (void)setCharacterEncoding:(NSString *)encoding; + +// This is the preferred entry point for nodesForXPath. This takes an explicit +// namespace dictionary (keys are prefixes, values are URIs). +- (NSArray *)nodesForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError **)error; + +// Convenience method returns first element with speciifed xpath or nil +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError **)error; + +// This implementation of nodesForXPath registers namespaces only from the +// document's root node. _def_ns may be used as a prefix for the default +// namespace, though there's no guarantee that the default namespace will +// be consistenly the same namespace in server responses. +- (NSArray *)nodesForXPath:(NSString *)xpath error:(NSError **)error; + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath error:(NSError **)error; + +- (NSString *)description; +@end diff --git a/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.m b/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.m new file mode 100644 index 0000000..db3d634 --- /dev/null +++ b/Pods/GDataXML-HTML/Pod/Classes/GDataXMLNode.m @@ -0,0 +1,2012 @@ +/* Modifications for HTML parser support: + * Copyright (c) 2011 Simon Grätzer simon@graetzer.org + * + * Copyright (c) 2008 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#define GDATAXMLNODE_DEFINE_GLOBALS 1 +#import "GDataXMLNode.h" + +@class NSArray, NSDictionary, NSError, NSString, NSURL; +@class GDataXMLElement, GDataXMLDocument; + + +static const int kGDataXMLParseOptions = (XML_PARSE_NOCDATA | XML_PARSE_NOBLANKS); +static const int kGDataHTMLParseOptions = (HTML_PARSE_NOWARNING | HTML_PARSE_NOERROR); + +// dictionary key callbacks for string cache +static const void *StringCacheKeyRetainCallBack(CFAllocatorRef allocator, const void *str); +static void StringCacheKeyReleaseCallBack(CFAllocatorRef allocator, const void *str); +static CFStringRef StringCacheKeyCopyDescriptionCallBack(const void *str); +static Boolean StringCacheKeyEqualCallBack(const void *str1, const void *str2); +static CFHashCode StringCacheKeyHashCallBack(const void *str); + +// isEqual: has the fatal flaw that it doesn't deal well with the received +// being nil. We'll use this utility instead. + +// Static copy of AreEqualOrBothNil from GDataObject.m, so that using +// GDataXMLNode does not require pulling in all of GData. +static BOOL AreEqualOrBothNilPrivate(id obj1, id obj2) { + if (obj1 == obj2) { + return YES; + } + if (obj1 && obj2) { + return [obj1 isEqual:obj2]; + } + return NO; +} + + +// convert NSString* to xmlChar* +// +// the "Get" part implies that ownership remains with str + +static xmlChar* GDataGetXMLString(NSString *str) { + xmlChar* result = (xmlChar *)[str UTF8String]; + return result; +} + +// Make a fake qualified name we use as local name internally in libxml +// data structures when there's no actual namespace node available to point to +// from an element or attribute node +// +// Returns an autoreleased NSString* + +static NSString *GDataFakeQNameForURIAndName(NSString *theURI, NSString *name) { + + NSString *localName = [GDataXMLNode localNameForName:name]; + NSString *fakeQName = [NSString stringWithFormat:@"{%@}:%@", + theURI, localName]; + return fakeQName; +} + + +// libxml2 offers xmlSplitQName2, but that searches forwards. Since we may +// be searching for a whole URI shoved in as a prefix, like +// {http://foo}:name +// we'll search for the prefix in backwards from the end of the qualified name +// +// returns a copy of qname as the local name if there's no prefix +static xmlChar *SplitQNameReverse(const xmlChar *qname, xmlChar **prefix) { + + // search backwards for a colon + int qnameLen = xmlStrlen(qname); + for (int idx = qnameLen - 1; idx >= 0; idx--) { + + if (qname[idx] == ':') { + + // found the prefix; copy the prefix, if requested + if (prefix != NULL) { + if (idx > 0) { + *prefix = xmlStrsub(qname, 0, idx); + } else { + *prefix = NULL; + } + } + + if (idx < qnameLen - 1) { + // return a copy of the local name + xmlChar *localName = xmlStrsub(qname, idx + 1, qnameLen - idx - 1); + return localName; + } else { + return NULL; + } + } + } + + // no colon found, so the qualified name is the local name + xmlChar *qnameCopy = xmlStrdup(qname); + return qnameCopy; +} + +static void RegisterNamespaces(NSDictionary *namespaces, xmlXPathContextPtr xpathCtx, const xmlNodePtr nsNodePtr) { + // if a namespace dictionary was provided, register its contents + if (namespaces) { + // the dictionary keys are prefixes; the values are URIs + for (NSString *prefix in namespaces) { + NSString *uri = [namespaces objectForKey:prefix]; + + xmlChar *prefixChars = (xmlChar *) [prefix UTF8String]; + xmlChar *uriChars = (xmlChar *) [uri UTF8String]; + int result = xmlXPathRegisterNs(xpathCtx, prefixChars, uriChars); + if (result != 0) { +#if DEBUG + NSCAssert1(result == 0, @"GDataXMLNode XPath namespace %@ issue", + prefix); +#endif + } + } + } else { + // no namespace dictionary was provided + // register the namespaces of this node step through the namespaces, + // if any, and register each with the xpath context + if (nsNodePtr != NULL) { + for (xmlNsPtr nsPtr = nsNodePtr->ns; nsPtr != NULL; nsPtr = nsPtr->next) { + + // default namespace is nil in the tree, but there's no way to + // register a default namespace, so we'll register a fake one, + // _def_ns + const xmlChar* prefix = nsPtr->prefix; + if (prefix == NULL) { + prefix = (xmlChar*) kGDataXMLXPathDefaultNamespacePrefix; + } + + int result = xmlXPathRegisterNs(xpathCtx, prefix, nsPtr->href); + if (result != 0) { +#if DEBUG + NSCAssert1(result == 0, @"GDataXMLNode XPath namespace %s issue", + prefix); +#endif + } + } + } + } +} + +@interface GDataXMLNode (PrivateMethods) + +// consuming a node implies it will later be freed when the instance is +// dealloc'd; borrowing it implies that ownership and disposal remain the +// job of the supplier of the node + ++ (id)nodeConsumingXMLNode:(xmlNodePtr)theXMLNode; +- (id)initConsumingXMLNode:(xmlNodePtr)theXMLNode; + ++ (id)nodeBorrowingXMLNode:(xmlNodePtr)theXMLNode; +- (id)initBorrowingXMLNode:(xmlNodePtr)theXMLNode; + +// getters of the underlying node +- (xmlNodePtr)XMLNode; +- (xmlNodePtr)XMLNodeCopy; + +// search for an underlying attribute +- (GDataXMLNode *)attributeForXMLNode:(xmlAttrPtr)theXMLNode; + +// return an NSString for an xmlChar*, using our strings cache in the +// document +- (NSString *)stringFromXMLString:(const xmlChar *)chars; + +// setter/getter of the dealloc flag for the underlying node +- (BOOL)shouldFreeXMLNode; +- (void)setShouldFreeXMLNode:(BOOL)flag; + +@end + +@interface GDataXMLElement (PrivateMethods) + ++ (void)fixUpNamespacesForNode:(xmlNodePtr)nodeToFix + graftingToTreeNode:(xmlNodePtr)graftPointNode; +@end + +@implementation GDataXMLNode + ++ (void)load { + xmlInitParser(); +} + +// Note on convenience methods for making stand-alone element and +// attribute nodes: +// +// Since we're making a node from scratch, we don't +// have any namespace info. So the namespace prefix, if +// any, will just be slammed into the node name. +// We'll rely on the -addChild method below to remove +// the namespace prefix and replace it with a proper ns +// pointer. + ++ (GDataXMLElement *)elementWithName:(NSString *)name { + + xmlNodePtr theNewNode = xmlNewNode(NULL, // namespace + GDataGetXMLString(name)); + if (theNewNode) { + // succeeded + return [self nodeConsumingXMLNode:theNewNode]; + } + return nil; +} + ++ (GDataXMLElement *)elementWithName:(NSString *)name stringValue:(NSString *)value { + + xmlNodePtr theNewNode = xmlNewNode(NULL, // namespace + GDataGetXMLString(name)); + if (theNewNode) { + + xmlNodePtr textNode = xmlNewText(GDataGetXMLString(value)); + if (textNode) { + + xmlNodePtr temp = xmlAddChild(theNewNode, textNode); + if (temp) { + // succeeded + return [self nodeConsumingXMLNode:theNewNode]; + } + } + + // failed; free the node and any children + xmlFreeNode(theNewNode); + } + return nil; +} + ++ (GDataXMLElement *)elementWithName:(NSString *)name URI:(NSString *)theURI { + + // since we don't know a prefix yet, shove in the whole URI; we'll look for + // a proper namespace ptr later when addChild calls fixUpNamespacesForNode + + NSString *fakeQName = GDataFakeQNameForURIAndName(theURI, name); + + xmlNodePtr theNewNode = xmlNewNode(NULL, // namespace + GDataGetXMLString(fakeQName)); + if (theNewNode) { + return [self nodeConsumingXMLNode:theNewNode]; + } + return nil; +} + ++ (id)attributeWithName:(NSString *)name stringValue:(NSString *)value { + + xmlChar *xmlName = GDataGetXMLString(name); + xmlChar *xmlValue = GDataGetXMLString(value); + + xmlAttrPtr theNewAttr = xmlNewProp(NULL, // parent node for the attr + xmlName, xmlValue); + if (theNewAttr) { + return [self nodeConsumingXMLNode:(xmlNodePtr) theNewAttr]; + } + + return nil; +} + ++ (id)attributeWithName:(NSString *)name URI:(NSString *)attributeURI stringValue:(NSString *)value { + + // since we don't know a prefix yet, shove in the whole URI; we'll look for + // a proper namespace ptr later when addChild calls fixUpNamespacesForNode + + NSString *fakeQName = GDataFakeQNameForURIAndName(attributeURI, name); + + xmlChar *xmlName = GDataGetXMLString(fakeQName); + xmlChar *xmlValue = GDataGetXMLString(value); + + xmlAttrPtr theNewAttr = xmlNewProp(NULL, // parent node for the attr + xmlName, xmlValue); + if (theNewAttr) { + return [self nodeConsumingXMLNode:(xmlNodePtr) theNewAttr]; + } + + return nil; +} + ++ (id)textWithStringValue:(NSString *)value { + + xmlNodePtr theNewText = xmlNewText(GDataGetXMLString(value)); + if (theNewText) { + return [self nodeConsumingXMLNode:theNewText]; + } + return nil; +} + ++ (id)namespaceWithName:(NSString *)name stringValue:(NSString *)value { + + xmlChar *href = GDataGetXMLString(value); + xmlChar *prefix; + + if ([name length] > 0) { + prefix = GDataGetXMLString(name); + } else { + // default namespace is represented by a nil prefix + prefix = nil; + } + + xmlNsPtr theNewNs = xmlNewNs(NULL, // parent node + href, prefix); + if (theNewNs) { + return [self nodeConsumingXMLNode:(xmlNodePtr) theNewNs]; + } + return nil; +} + ++ (id)nodeConsumingXMLNode:(xmlNodePtr)theXMLNode { + Class theClass; + + if (theXMLNode->type == XML_ELEMENT_NODE) { + theClass = [GDataXMLElement class]; + } else { + theClass = [GDataXMLNode class]; + } + return [[theClass alloc] initConsumingXMLNode:theXMLNode]; +} + +- (id)initConsumingXMLNode:(xmlNodePtr)theXMLNode { + self = [super init]; + if (self) { + xmlNode_ = theXMLNode; + shouldFreeXMLNode_ = YES; + } + return self; +} + ++ (id)nodeBorrowingXMLNode:(xmlNodePtr)theXMLNode { + Class theClass; + if (theXMLNode->type == XML_ELEMENT_NODE) { + theClass = [GDataXMLElement class]; + } else { + theClass = [GDataXMLNode class]; + } + + return [[theClass alloc] initBorrowingXMLNode:theXMLNode]; +} + +- (id)initBorrowingXMLNode:(xmlNodePtr)theXMLNode { + self = [super init]; + if (self) { + xmlNode_ = theXMLNode; + shouldFreeXMLNode_ = NO; + } + return self; +} + +- (void)releaseCachedValues { + + cachedName_ = nil; + + cachedChildren_ = nil; + + cachedAttributes_ = nil; +} + + +// convert xmlChar* to NSString* +// +// returns an autoreleased NSString*, from the current node's document strings +// cache if possible +- (NSString *)stringFromXMLString:(const xmlChar *)chars { + +#if DEBUG + NSCAssert(chars != NULL, @"GDataXMLNode sees an unexpected empty string"); +#endif + if (chars == NULL) return nil; + + CFMutableDictionaryRef cacheDict = NULL; + + NSString *result = nil; + + if (xmlNode_ != NULL + && (xmlNode_->type == XML_ELEMENT_NODE + || xmlNode_->type == XML_ATTRIBUTE_NODE + || xmlNode_->type == XML_TEXT_NODE)) { + // there is no xmlDocPtr in XML_NAMESPACE_DECL nodes, + // so we can't cache the text of those + + // look for a strings cache in the document + // + // the cache is in the document's user-defined _private field + + if (xmlNode_->doc != NULL) { + + cacheDict = xmlNode_->doc->_private; + + if (cacheDict) { + + // this document has a strings cache + result = (__bridge NSString *) CFDictionaryGetValue(cacheDict, chars); + if (result) { + // we found the xmlChar string in the cache; return the previously + // allocated NSString, rather than allocate a new one + return result; + } + } + } + } + + // allocate a new NSString for this xmlChar* + result = [NSString stringWithUTF8String:(const char *) chars]; + if (cacheDict) { + // save the string in the document's string cache + CFDictionarySetValue(cacheDict, chars, (__bridge const void *)(result)); + } + + return result; +} + +- (void)dealloc { + + if (xmlNode_ && shouldFreeXMLNode_) { + xmlFreeNode(xmlNode_); + xmlNode_ = NULL; + } + + [self releaseCachedValues]; +} + +#pragma mark - + +- (void)setStringValue:(NSString *)str { + if (xmlNode_ != NULL && str != nil) { + + if (xmlNode_->type == XML_NAMESPACE_DECL) { + + // for a namespace node, the value is the namespace URI + xmlNsPtr nsNode = (xmlNsPtr)xmlNode_; + + if (nsNode->href != NULL) xmlFree((char *)nsNode->href); + + nsNode->href = xmlStrdup(GDataGetXMLString(str)); + + } else { + + // attribute or element node + + // do we need to call xmlEncodeSpecialChars? + xmlNodeSetContent(xmlNode_, GDataGetXMLString(str)); + } + } +} + +- (NSString *)stringValue { + + NSString *str = nil; + + if (xmlNode_ != NULL) { + + if (xmlNode_->type == XML_NAMESPACE_DECL) { + + // for a namespace node, the value is the namespace URI + xmlNsPtr nsNode = (xmlNsPtr)xmlNode_; + + str = [self stringFromXMLString:(nsNode->href)]; + + } else { + + // attribute or element node + xmlChar* chars = xmlNodeGetContent(xmlNode_); + if (chars) { + + str = [self stringFromXMLString:chars]; + + xmlFree(chars); + } + } + } + return str; +} + +- (NSString *)XMLString { + + NSString *str = nil; + + if (xmlNode_ != NULL) { + + xmlBufferPtr buff = xmlBufferCreate(); + if (buff) { + + xmlDocPtr doc = NULL; + int level = 0; + int format = 0; + + int result = xmlNodeDump(buff, doc, xmlNode_, level, format); + + if (result > -1) { + str = [[NSString alloc] initWithBytes:(xmlBufferContent(buff)) + length:(xmlBufferLength(buff)) + encoding:NSUTF8StringEncoding]; + } + xmlBufferFree(buff); + } + } + + // remove leading and trailing whitespace + NSCharacterSet *ws = [NSCharacterSet whitespaceAndNewlineCharacterSet]; + NSString *trimmed = [str stringByTrimmingCharactersInSet:ws]; + return trimmed; +} + +- (NSString *)localName { + NSString *str = nil; + + if (xmlNode_ != NULL) { + + str = [self stringFromXMLString:(xmlNode_->name)]; + + // if this is part of a detached subtree, str may have a prefix in it + str = [[self class] localNameForName:str]; + } + return str; +} + +- (NSString *)prefix { + + NSString *str = nil; + + if (xmlNode_ != NULL) { + + // the default namespace's prefix is an empty string, though libxml + // represents it as NULL for ns->prefix + str = @""; + + if (xmlNode_->ns != NULL && xmlNode_->ns->prefix != NULL) { + str = [self stringFromXMLString:(xmlNode_->ns->prefix)]; + } + } + return str; +} + +- (NSString *)URI { + + NSString *str = nil; + + if (xmlNode_ != NULL) { + + if (xmlNode_->ns != NULL && xmlNode_->ns->href != NULL) { + str = [self stringFromXMLString:(xmlNode_->ns->href)]; + } + } + return str; +} + +- (NSString *)qualifiedName { + // internal utility + + NSString *str = nil; + + if (xmlNode_ != NULL) { + if (xmlNode_->type == XML_NAMESPACE_DECL) { + + // name of a namespace node + xmlNsPtr nsNode = (xmlNsPtr)xmlNode_; + + // null is the default namespace; one is the loneliest number + if (nsNode->prefix == NULL) { + str = @""; + } + else { + str = [self stringFromXMLString:(nsNode->prefix)]; + } + + } else if (xmlNode_->ns != NULL && xmlNode_->ns->prefix != NULL) { + + // name of a non-namespace node + + // has a prefix + char *qname; + if (asprintf(&qname, "%s:%s", (const char *)xmlNode_->ns->prefix, + xmlNode_->name) != -1) { + str = [self stringFromXMLString:(const xmlChar *)qname]; + free(qname); + } + } else { + // lacks a prefix + str = [self stringFromXMLString:(xmlNode_->name)]; + } + } + + return str; +} + +- (NSString *)name { + + if (cachedName_ != nil) { + return cachedName_; + } + + NSString *str = [self qualifiedName]; + + cachedName_ = str; + + return str; +} + ++ (NSString *)localNameForName:(NSString *)name { + if (name != nil) { + + NSRange range = [name rangeOfString:@":"]; + if (range.location != NSNotFound) { + + // found a colon + if (range.location + 1 < [name length]) { + NSString *localName = [name substringFromIndex:(range.location + 1)]; + return localName; + } + } + } + return name; +} + ++ (NSString *)prefixForName:(NSString *)name { + if (name != nil) { + + NSRange range = [name rangeOfString:@":"]; + if (range.location != NSNotFound) { + + NSString *prefix = [name substringToIndex:(range.location)]; + return prefix; + } + } + return nil; +} + +- (NSUInteger)childCount { + + if (cachedChildren_ != nil) { + return [cachedChildren_ count]; + } + + if (xmlNode_ != NULL) { + + unsigned int count = 0; + + xmlNodePtr currChild = xmlNode_->children; + + while (currChild != NULL) { + ++count; + currChild = currChild->next; + } + return count; + } + return 0; +} + +- (NSArray *)children { + + if (cachedChildren_ != nil) { + return cachedChildren_; + } + + NSMutableArray *array = nil; + + if (xmlNode_ != NULL) { + + xmlNodePtr currChild = xmlNode_->children; + + while (currChild != NULL) { + GDataXMLNode *node = [GDataXMLNode nodeBorrowingXMLNode:currChild]; + + if (array == nil) { + array = [NSMutableArray arrayWithObject:node]; + } else { + [array addObject:node]; + } + + currChild = currChild->next; + } + + cachedChildren_ = array; + } + return array; +} + +- (GDataXMLNode *)childAtIndex:(unsigned)index { + + NSArray *children = [self children]; + + if ([children count] > index) { + + return [children objectAtIndex:index]; + } + return nil; +} + +- (GDataXMLNodeKind)kind { + if (xmlNode_ != NULL) { + xmlElementType nodeType = xmlNode_->type; + switch (nodeType) { + case XML_ELEMENT_NODE: return GDataXMLElementKind; + case XML_ATTRIBUTE_NODE: return GDataXMLAttributeKind; + case XML_TEXT_NODE: return GDataXMLTextKind; + case XML_CDATA_SECTION_NODE: return GDataXMLTextKind; + case XML_ENTITY_REF_NODE: return GDataXMLEntityDeclarationKind; + case XML_ENTITY_NODE: return GDataXMLEntityDeclarationKind; + case XML_PI_NODE: return GDataXMLProcessingInstructionKind; + case XML_COMMENT_NODE: return GDataXMLCommentKind; + case XML_DOCUMENT_NODE: return GDataXMLDocumentKind; + case XML_DOCUMENT_TYPE_NODE: return GDataXMLDocumentKind; + case XML_DOCUMENT_FRAG_NODE: return GDataXMLDocumentKind; + case XML_NOTATION_NODE: return GDataXMLNotationDeclarationKind; + case XML_HTML_DOCUMENT_NODE: return GDataXMLDocumentKind; + case XML_DTD_NODE: return GDataXMLDTDKind; + case XML_ELEMENT_DECL: return GDataXMLElementDeclarationKind; + case XML_ATTRIBUTE_DECL: return GDataXMLAttributeDeclarationKind; + case XML_ENTITY_DECL: return GDataXMLEntityDeclarationKind; + case XML_NAMESPACE_DECL: return GDataXMLNamespaceKind; + case XML_XINCLUDE_START: return GDataXMLProcessingInstructionKind; + case XML_XINCLUDE_END: return GDataXMLProcessingInstructionKind; + case XML_DOCB_DOCUMENT_NODE: return GDataXMLDocumentKind; + } + } + return GDataXMLInvalidKind; +} + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath error:(NSError **)error +{ + NSArray *nodes = [self nodesForXPath:xpath error:error]; + if (!nodes.count) { + return nil; + } + return [nodes objectAtIndex:0]; +} + +- (NSArray *)nodesForXPath:(NSString *)xpath error:(NSError **)error { + // call through with no explicit namespace dictionary; that will register the + // root node's namespaces + return [self nodesForXPath:xpath namespaces:nil error:error]; +} + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError **)error +{ + NSArray *nodes = [self nodesForXPath:xpath namespaces:namespaces error:error]; + if (!nodes.count) { + return nil; + } + return [nodes objectAtIndex:0]; +} + +- (NSArray *)nodesForXPath:(NSString *)xpath + namespaces:(NSDictionary *)namespaces + error:(NSError **)error { + + NSMutableArray *array = nil; + NSInteger errorCode = -1; + NSDictionary *errorInfo = nil; + + // xmlXPathNewContext requires a doc for its context, but if our elements + // are created from GDataXMLElement's initWithXMLString there may not be + // a document. (We may later decide that we want to stuff the doc used + // there into a GDataXMLDocument and retain it, but we don't do that now.) + // + // We'll temporarily make a document to use for the xpath context. + + xmlDocPtr tempDoc = NULL; + xmlNodePtr topParent = NULL; + + if (xmlNode_->doc == NULL) { + tempDoc = xmlNewDoc(NULL); + if (tempDoc) { + // find the topmost node of the current tree to make the root of + // our temporary document + topParent = xmlNode_; + while (topParent->parent != NULL) { + topParent = topParent->parent; + } + xmlDocSetRootElement(tempDoc, topParent); + } + } + + if (xmlNode_ != NULL && xmlNode_->doc != NULL) { + + xmlXPathContextPtr xpathCtx = xmlXPathNewContext(xmlNode_->doc); + if (xpathCtx) { + // anchor at our current node + xpathCtx->node = xmlNode_; + RegisterNamespaces(namespaces, xpathCtx, xmlNode_); + + // now evaluate the path + xmlXPathObjectPtr xpathObj; + xpathObj = xmlXPathEval(GDataGetXMLString(xpath), xpathCtx); + if (xpathObj) { + + // we have some result from the search + array = [NSMutableArray array]; + + xmlNodeSetPtr nodeSet = xpathObj->nodesetval; + if (nodeSet) { + + // add each node in the result set to our array + for (int index = 0; index < nodeSet->nodeNr; index++) { + + xmlNodePtr currNode = nodeSet->nodeTab[index]; + + GDataXMLNode *node = [GDataXMLNode nodeBorrowingXMLNode:currNode]; + if (node) { + [array addObject:node]; + } + } + } + xmlXPathFreeObject(xpathObj); + } else { + // provide an error for failed evaluation + const char *msg = xpathCtx->lastError.str1; + errorCode = xpathCtx->lastError.code; + if (msg) { + NSString *errStr = [NSString stringWithUTF8String:msg]; + errorInfo = [NSDictionary dictionaryWithObject:errStr + forKey:@"error"]; + } + } + + xmlXPathFreeContext(xpathCtx); + } + } else { + // not a valid node for using XPath + errorInfo = [NSDictionary dictionaryWithObject:@"invalid node" + forKey:@"error"]; + } + + if (array == nil && error != nil) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:errorCode + userInfo:errorInfo]; + } + + if (tempDoc != NULL) { + xmlUnlinkNode(topParent); + xmlSetTreeDoc(topParent, NULL); + xmlFreeDoc(tempDoc); + } + return array; +} + +- (NSString *)description { + int nodeType = (xmlNode_ ? (int)xmlNode_->type : -1); + + return [NSString stringWithFormat:@"%@ %p: {type:%d name:%@ xml:\"%@\"}", + [self class], self, nodeType, [self name], [self XMLString]]; +} + +- (id)copyWithZone:(NSZone *)zone { + + xmlNodePtr nodeCopy = [self XMLNodeCopy]; + + if (nodeCopy != NULL) { + return [[[self class] alloc] initConsumingXMLNode:nodeCopy]; + } + return nil; +} + +- (BOOL)isEqual:(GDataXMLNode *)other { + if (self == other) return YES; + if (![other isKindOfClass:[GDataXMLNode class]]) return NO; + + return [self XMLNode] == [other XMLNode] + || ([self kind] == [other kind] + && AreEqualOrBothNilPrivate([self name], [other name]) + && [[self children] count] == [[other children] count]); + +} + +- (NSUInteger)hash { + return (NSUInteger) (__bridge void *) [GDataXMLNode class]; +} + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)selector { + return [super methodSignatureForSelector:selector]; +} + +#pragma mark - + +- (xmlNodePtr)XMLNodeCopy { + if (xmlNode_ != NULL) { + + // Note: libxml will create a new copy of namespace nodes (xmlNs records) + // and attach them to this copy in order to keep namespaces within this + // node subtree copy value. + + xmlNodePtr nodeCopy = xmlCopyNode(xmlNode_, 1); // 1 = recursive + return nodeCopy; + } + return NULL; +} + +- (xmlNodePtr)XMLNode { + return xmlNode_; +} + +- (BOOL)shouldFreeXMLNode { + return shouldFreeXMLNode_; +} + +- (void)setShouldFreeXMLNode:(BOOL)flag { + shouldFreeXMLNode_ = flag; +} + +@end + + + +@implementation GDataXMLElement + +- (id)initWithXMLString:(NSString *)str error:(NSError **)error { + + if (self = [super init]) { + + const char *utf8Str = [str UTF8String]; + // NOTE: We are assuming a string length that fits into an int + xmlDocPtr doc = xmlReadMemory(utf8Str, (int)strlen(utf8Str), NULL, // URL + NULL, // encoding + kGDataXMLParseOptions); + if (doc == NULL) { + if (error) { + // TODO(grobbins) use xmlSetGenericErrorFunc to capture error + } + } else { + // copy the root node from the doc + xmlNodePtr root = xmlDocGetRootElement(doc); + if (root) { + xmlNode_ = xmlCopyNode(root, 1); // 1: recursive + shouldFreeXMLNode_ = YES; + } + xmlFreeDoc(doc); + } + + + if (xmlNode_ == NULL) { + // failure + if (error) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:-1 + userInfo:nil]; + } + return nil; + } + } + return self; +} + +- (id)initWithHTMLString:(NSString *)str error:(NSError **)error { + + if (self = [super init]) { + + const char *utf8Str = [str UTF8String]; + // NOTE: We are assuming a string length that fits into an int + xmlDocPtr doc = htmlReadMemory(utf8Str, (int)strlen(utf8Str), NULL, // URL + NULL, // encoding + kGDataHTMLParseOptions); + if (doc == NULL) { + if (error) { + // TODO(grobbins) use xmlSetGenericErrorFunc to capture error + } + } else { + // copy the root node from the doc + xmlNodePtr root = xmlDocGetRootElement(doc); + if (root) { + xmlNode_ = xmlCopyNode(root, 1); // 1: recursive + shouldFreeXMLNode_ = YES; + } + xmlFreeDoc(doc); + } + + + if (xmlNode_ == NULL) { + // failure + if (error) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:-1 + userInfo:nil]; + } + return nil; + } + } + return self; +} + +- (NSArray *)namespaces { + + NSMutableArray *array = nil; + + if (xmlNode_ != NULL && xmlNode_->nsDef != NULL) { + + xmlNsPtr currNS = xmlNode_->nsDef; + while (currNS != NULL) { + + // add this prefix/URI to the list, unless it's the implicit xml prefix + if (!xmlStrEqual(currNS->prefix, (const xmlChar *) "xml")) { + GDataXMLNode *node = [GDataXMLNode nodeBorrowingXMLNode:(xmlNodePtr) currNS]; + + if (array == nil) { + array = [NSMutableArray arrayWithObject:node]; + } else { + [array addObject:node]; + } + } + + currNS = currNS->next; + } + } + return array; +} + +- (void)setNamespaces:(NSArray *)namespaces { + + if (xmlNode_ != NULL) { + + [self releaseCachedValues]; + + // remove previous namespaces + if (xmlNode_->nsDef) { + xmlFreeNsList(xmlNode_->nsDef); + xmlNode_->nsDef = NULL; + } + + // add a namespace for each object in the array + NSEnumerator *enumerator = [namespaces objectEnumerator]; + GDataXMLNode *namespaceNode; + while ((namespaceNode = [enumerator nextObject]) != nil) { + + xmlNsPtr ns = (xmlNsPtr) [namespaceNode XMLNode]; + if (ns) { + (void)xmlNewNs(xmlNode_, ns->href, ns->prefix); + } + } + + // we may need to fix this node's own name; the graft point is where + // the namespace search starts, so that points to this node too + [[self class] fixUpNamespacesForNode:xmlNode_ + graftingToTreeNode:xmlNode_]; + } +} + +- (void)addNamespace:(GDataXMLNode *)aNamespace { + + if (xmlNode_ != NULL) { + + [self releaseCachedValues]; + + xmlNsPtr ns = (xmlNsPtr) [aNamespace XMLNode]; + if (ns) { + (void)xmlNewNs(xmlNode_, ns->href, ns->prefix); + + // we may need to fix this node's own name; the graft point is where + // the namespace search starts, so that points to this node too + [[self class] fixUpNamespacesForNode:xmlNode_ + graftingToTreeNode:xmlNode_]; + } + } +} + +- (void)addChild:(GDataXMLNode *)child { + if ([child kind] == GDataXMLAttributeKind) { + [self addAttribute:child]; + return; + } + + if (xmlNode_ != NULL) { + + [self releaseCachedValues]; + + xmlNodePtr childNodeCopy = [child XMLNodeCopy]; + if (childNodeCopy) { + + xmlNodePtr resultNode = xmlAddChild(xmlNode_, childNodeCopy); + if (resultNode == NULL) { + + // failed to add + xmlFreeNode(childNodeCopy); + + } else { + // added this child subtree successfully; see if it has + // previously-unresolved namespace prefixes that can now be fixed up + [[self class] fixUpNamespacesForNode:childNodeCopy + graftingToTreeNode:xmlNode_]; + } + } + } +} + +- (void)removeChild:(GDataXMLNode *)child { + // this is safe for attributes too + if (xmlNode_ != NULL) { + + [self releaseCachedValues]; + + xmlNodePtr node = [child XMLNode]; + + xmlUnlinkNode(node); + + // if the child node was borrowing its xmlNodePtr, then we need to + // explicitly free it, since there is probably no owning object that will + // free it on dealloc + if (![child shouldFreeXMLNode]) { + xmlFreeNode(node); + } + } +} + +- (NSArray *)elementsForName:(NSString *)name { + + NSString *desiredName = name; + + if (xmlNode_ != NULL) { + + NSString *prefix = [[self class] prefixForName:desiredName]; + if (prefix) { + + xmlChar* desiredPrefix = GDataGetXMLString(prefix); + + xmlNsPtr foundNS = xmlSearchNs(xmlNode_->doc, xmlNode_, desiredPrefix); + if (foundNS) { + + // we found a namespace; fall back on elementsForLocalName:URI: + // to get the elements + NSString *desiredURI = [self stringFromXMLString:(foundNS->href)]; + NSString *localName = [[self class] localNameForName:desiredName]; + + NSArray *nsArray = [self elementsForLocalName:localName URI:desiredURI]; + return nsArray; + } + } + + // no namespace found for the node's prefix; try an exact match + // for the name argument, including any prefix + NSMutableArray *array = nil; + + // walk our list of cached child nodes + NSArray *children = [self children]; + + for (GDataXMLNode *child in children) { + + xmlNodePtr currNode = [child XMLNode]; + + // find all children which are elements with the desired name + if (currNode->type == XML_ELEMENT_NODE) { + + NSString *qName = [child name]; + if ([qName isEqual:name]) { + + if (array == nil) { + array = [NSMutableArray arrayWithObject:child]; + } else { + [array addObject:child]; + } + } + } + } + return array; + } + return nil; +} + +- (NSArray *)elementsForLocalName:(NSString *)localName URI:(NSString *)URI { + + NSMutableArray *array = nil; + + if (xmlNode_ != NULL && xmlNode_->children != NULL) { + + xmlChar* desiredNSHref = GDataGetXMLString(URI); + xmlChar* requestedLocalName = GDataGetXMLString(localName); + xmlChar* expectedLocalName = requestedLocalName; + + // resolve the URI at the parent level, since usually children won't + // have their own namespace definitions, and we don't want to try to + // resolve it once for every child + xmlNsPtr foundParentNS = xmlSearchNsByHref(xmlNode_->doc, xmlNode_, desiredNSHref); + if (foundParentNS == NULL) { + NSString *fakeQName = GDataFakeQNameForURIAndName(URI, localName); + expectedLocalName = GDataGetXMLString(fakeQName); + } + + NSArray *children = [self children]; + + for (GDataXMLNode *child in children) { + + xmlNodePtr currChildPtr = [child XMLNode]; + + // find all children which are elements with the desired name and + // namespace, or with the prefixed name and a null namespace + if (currChildPtr->type == XML_ELEMENT_NODE) { + + // normally, we can assume the resolution done for the parent will apply + // to the child, as most children do not define their own namespaces + xmlNsPtr childLocalNS = foundParentNS; + xmlChar* childDesiredLocalName = expectedLocalName; + + if (currChildPtr->nsDef != NULL) { + // this child has its own namespace definitons; do a fresh resolve + // of the namespace starting from the child, and see if it differs + // from the resolve done starting from the parent. If the resolve + // finds a different namespace, then override the desired local + // name just for this child. + childLocalNS = xmlSearchNsByHref(xmlNode_->doc, currChildPtr, desiredNSHref); + if (childLocalNS != foundParentNS) { + + // this child does indeed have a different namespace resolution + // result than was found for its parent + if (childLocalNS == NULL) { + // no namespace found + NSString *fakeQName = GDataFakeQNameForURIAndName(URI, localName); + childDesiredLocalName = GDataGetXMLString(fakeQName); + } else { + // a namespace was found; use the original local name requested, + // not a faked one expected from resolving the parent + childDesiredLocalName = requestedLocalName; + } + } + } + + // check if this child's namespace and local name are what we're + // seeking + if (currChildPtr->ns == childLocalNS + && currChildPtr->name != NULL + && xmlStrEqual(currChildPtr->name, childDesiredLocalName)) { + + if (array == nil) { + array = [NSMutableArray arrayWithObject:child]; + } else { + [array addObject:child]; + } + } + } + } + // we return nil, not an empty array, according to docs + } + return array; +} + +- (NSArray *)attributes { + + if (cachedAttributes_ != nil) { + return cachedAttributes_; + } + + NSMutableArray *array = nil; + + if (xmlNode_ != NULL && xmlNode_->properties != NULL) { + + xmlAttrPtr prop = xmlNode_->properties; + while (prop != NULL) { + + GDataXMLNode *node = [GDataXMLNode nodeBorrowingXMLNode:(xmlNodePtr) prop]; + if (array == nil) { + array = [NSMutableArray arrayWithObject:node]; + } else { + [array addObject:node]; + } + + prop = prop->next; + } + + cachedAttributes_ = array; + } + return array; +} + +- (void)addAttribute:(GDataXMLNode *)attribute { + + if (xmlNode_ != NULL) { + + [self releaseCachedValues]; + + xmlAttrPtr attrPtr = (xmlAttrPtr) [attribute XMLNode]; + if (attrPtr) { + + // ignore this if an attribute with the name is already present, + // similar to NSXMLNode's addAttribute + xmlAttrPtr oldAttr; + + if (attrPtr->ns == NULL) { + oldAttr = xmlHasProp(xmlNode_, attrPtr->name); + } else { + oldAttr = xmlHasNsProp(xmlNode_, attrPtr->name, attrPtr->ns->href); + } + + if (oldAttr == NULL) { + + xmlNsPtr newPropNS = NULL; + + // if this attribute has a namespace, search for a matching namespace + // on the node we're adding to + if (attrPtr->ns != NULL) { + + newPropNS = xmlSearchNsByHref(xmlNode_->doc, xmlNode_, attrPtr->ns->href); + if (newPropNS == NULL) { + // make a new namespace on the parent node, and use that for the + // new attribute + newPropNS = xmlNewNs(xmlNode_, attrPtr->ns->href, attrPtr->ns->prefix); + } + } + + // copy the attribute onto this node + xmlChar *value = xmlNodeGetContent((xmlNodePtr) attrPtr); + xmlAttrPtr newProp = xmlNewNsProp(xmlNode_, newPropNS, attrPtr->name, value); + if (newProp != NULL) { + // we made the property, so clean up the property's namespace + + [[self class] fixUpNamespacesForNode:(xmlNodePtr)newProp + graftingToTreeNode:xmlNode_]; + } + + if (value != NULL) { + xmlFree(value); + } + } + } + } +} + +- (GDataXMLNode *)attributeForXMLNode:(xmlAttrPtr)theXMLNode { + // search the cached attributes list for the GDataXMLNode with + // the underlying xmlAttrPtr + NSArray *attributes = [self attributes]; + + for (GDataXMLNode *attr in attributes) { + + if (theXMLNode == (xmlAttrPtr) [attr XMLNode]) { + return attr; + } + } + + return nil; +} + +- (GDataXMLNode *)attributeForName:(NSString *)name { + + if (xmlNode_ != NULL) { + + xmlAttrPtr attrPtr = xmlHasProp(xmlNode_, GDataGetXMLString(name)); + if (attrPtr == NULL) { + + // can we guarantee that xmlAttrPtrs always have the ns ptr and never + // a namespace as part of the actual attribute name? + + // split the name and its prefix, if any + xmlNsPtr ns = NULL; + NSString *prefix = [[self class] prefixForName:name]; + if (prefix) { + + // find the namespace for this prefix, and search on its URI to find + // the xmlNsPtr + name = [[self class] localNameForName:name]; + ns = xmlSearchNs(xmlNode_->doc, xmlNode_, GDataGetXMLString(prefix)); + } + + const xmlChar* nsURI = ((ns != NULL) ? ns->href : NULL); + attrPtr = xmlHasNsProp(xmlNode_, GDataGetXMLString(name), nsURI); + } + + if (attrPtr) { + GDataXMLNode *attr = [self attributeForXMLNode:attrPtr]; + return attr; + } + } + return nil; +} + +- (GDataXMLNode *)attributeForLocalName:(NSString *)localName + URI:(NSString *)attributeURI { + + if (xmlNode_ != NULL) { + + const xmlChar* name = GDataGetXMLString(localName); + const xmlChar* nsURI = GDataGetXMLString(attributeURI); + + xmlAttrPtr attrPtr = xmlHasNsProp(xmlNode_, name, nsURI); + + if (attrPtr == NULL) { + // if the attribute is in a tree lacking the proper namespace, + // the local name may include the full URI as a prefix + NSString *fakeQName = GDataFakeQNameForURIAndName(attributeURI, localName); + const xmlChar* xmlFakeQName = GDataGetXMLString(fakeQName); + + attrPtr = xmlHasProp(xmlNode_, xmlFakeQName); + } + + if (attrPtr) { + GDataXMLNode *attr = [self attributeForXMLNode:attrPtr]; + return attr; + } + } + return nil; +} + +- (NSString *)resolvePrefixForNamespaceURI:(NSString *)namespaceURI { + + if (xmlNode_ != NULL) { + + xmlChar* desiredNSHref = GDataGetXMLString(namespaceURI); + + xmlNsPtr foundNS = xmlSearchNsByHref(xmlNode_->doc, xmlNode_, desiredNSHref); + if (foundNS) { + + // we found the namespace + if (foundNS->prefix != NULL) { + NSString *prefix = [self stringFromXMLString:(foundNS->prefix)]; + return prefix; + } else { + // empty prefix is default namespace + return @""; + } + } + } + return nil; +} + +#pragma mark Namespace fixup routines + ++ (void)deleteNamespacePtr:(xmlNsPtr)namespaceToDelete + fromXMLNode:(xmlNodePtr)node { + + // utilty routine to remove a namespace pointer from an element's + // namespace definition list. This is just removing the nsPtr + // from the singly-linked list, the node's namespace definitions. + xmlNsPtr currNS = node->nsDef; + xmlNsPtr prevNS = NULL; + + while (currNS != NULL) { + xmlNsPtr nextNS = currNS->next; + + if (namespaceToDelete == currNS) { + + // found it; delete it from the head of the node's ns definition list + // or from the next field of the previous namespace + + if (prevNS != NULL) prevNS->next = nextNS; + else node->nsDef = nextNS; + + xmlFreeNs(currNS); + return; + } + prevNS = currNS; + currNS = nextNS; + } +} + ++ (void)fixQualifiedNamesForNode:(xmlNodePtr)nodeToFix + graftingToTreeNode:(xmlNodePtr)graftPointNode { + + // Replace prefix-in-name with proper namespace pointers + // + // This is an inner routine for fixUpNamespacesForNode: + // + // see if this node's name lacks a namespace and is qualified, and if so, + // see if we can resolve the prefix against the parent + // + // The prefix may either be normal, "gd:foo", or a URI + // "{http://blah.com/}:foo" + + if (nodeToFix->ns == NULL) { + xmlNsPtr foundNS = NULL; + + xmlChar* prefix = NULL; + xmlChar* localName = SplitQNameReverse(nodeToFix->name, &prefix); + if (localName != NULL) { + if (prefix != NULL) { + + // if the prefix is wrapped by { and } then it's a URI + int prefixLen = xmlStrlen(prefix); + if (prefixLen > 2 + && prefix[0] == '{' + && prefix[prefixLen - 1] == '}') { + + // search for the namespace by URI + xmlChar* uri = xmlStrsub(prefix, 1, prefixLen - 2); + + if (uri != NULL) { + foundNS = xmlSearchNsByHref(graftPointNode->doc, graftPointNode, uri); + + xmlFree(uri); + } + } + } + + if (foundNS == NULL) { + // search for the namespace by prefix, even if the prefix is nil + // (nil prefix means to search for the default namespace) + foundNS = xmlSearchNs(graftPointNode->doc, graftPointNode, prefix); + } + + if (foundNS != NULL) { + // we found a namespace, so fix the ns pointer and the local name + xmlSetNs(nodeToFix, foundNS); + xmlNodeSetName(nodeToFix, localName); + } + + if (prefix != NULL) { + xmlFree(prefix); + prefix = NULL; + } + + xmlFree(localName); + } + } +} + ++ (void)fixDuplicateNamespacesForNode:(xmlNodePtr)nodeToFix + graftingToTreeNode:(xmlNodePtr)graftPointNode + namespaceSubstitutionMap:(NSMutableDictionary *)nsMap { + + // Duplicate namespace removal + // + // This is an inner routine for fixUpNamespacesForNode: + // + // If any of this node's namespaces are already defined at the graft point + // level, add that namespace to the map of namespace substitutions + // so it will be replaced in the children below the nodeToFix, and + // delete the namespace record + + if (nodeToFix->type == XML_ELEMENT_NODE) { + + // step through the namespaces defined on this node + xmlNsPtr definedNS = nodeToFix->nsDef; + while (definedNS != NULL) { + + // see if this namespace is already defined higher in the tree, + // with both the same URI and the same prefix; if so, add a mapping for + // it + xmlNsPtr foundNS = xmlSearchNsByHref(graftPointNode->doc, graftPointNode, + definedNS->href); + if (foundNS != NULL + && foundNS != definedNS + && xmlStrEqual(definedNS->prefix, foundNS->prefix)) { + + // store a mapping from this defined nsPtr to the one found higher + // in the tree + [nsMap setObject:[NSValue valueWithPointer:foundNS] + forKey:[NSValue valueWithPointer:definedNS]]; + + // remove this namespace from the ns definition list of this node; + // all child elements and attributes referencing this namespace + // now have a dangling pointer and must be updated (that is done later + // in this method) + // + // before we delete this namespace, move our pointer to the + // next one + xmlNsPtr nsToDelete = definedNS; + definedNS = definedNS->next; + + [self deleteNamespacePtr:nsToDelete fromXMLNode:nodeToFix]; + + } else { + // this namespace wasn't a duplicate; move to the next + definedNS = definedNS->next; + } + } + } + + // if this node's namespace is one we deleted, update it to point + // to someplace better + if (nodeToFix->ns != NULL) { + + NSValue *currNS = [NSValue valueWithPointer:nodeToFix->ns]; + NSValue *replacementNS = [nsMap objectForKey:currNS]; + + if (replacementNS != nil) { + xmlNsPtr replaceNSPtr = (xmlNsPtr)[replacementNS pointerValue]; + + xmlSetNs(nodeToFix, replaceNSPtr); + } + } +} + + + ++ (void)fixUpNamespacesForNode:(xmlNodePtr)nodeToFix + graftingToTreeNode:(xmlNodePtr)graftPointNode + namespaceSubstitutionMap:(NSMutableDictionary *)nsMap { + + // This is the inner routine for fixUpNamespacesForNode:graftingToTreeNode: + // + // This routine fixes two issues: + // + // Because we can create nodes with qualified names before adding + // them to the tree that declares the namespace for the prefix, + // we need to set the node namespaces after adding them to the tree. + // + // Because libxml adds namespaces to nodes when it copies them, + // we want to remove redundant namespaces after adding them to + // a tree. + // + // If only the Mac's libxml had xmlDOMWrapReconcileNamespaces, it could do + // namespace cleanup for us + + // We only care about fixing names of elements and attributes + if (nodeToFix->type != XML_ELEMENT_NODE + && nodeToFix->type != XML_ATTRIBUTE_NODE) return; + + // Do the fixes + [self fixQualifiedNamesForNode:nodeToFix + graftingToTreeNode:graftPointNode]; + + [self fixDuplicateNamespacesForNode:nodeToFix + graftingToTreeNode:graftPointNode + namespaceSubstitutionMap:nsMap]; + + if (nodeToFix->type == XML_ELEMENT_NODE) { + + // when fixing element nodes, recurse for each child element and + // for each attribute + xmlNodePtr currChild = nodeToFix->children; + while (currChild != NULL) { + [self fixUpNamespacesForNode:currChild + graftingToTreeNode:graftPointNode + namespaceSubstitutionMap:nsMap]; + currChild = currChild->next; + } + + xmlAttrPtr currProp = nodeToFix->properties; + while (currProp != NULL) { + [self fixUpNamespacesForNode:(xmlNodePtr)currProp + graftingToTreeNode:graftPointNode + namespaceSubstitutionMap:nsMap]; + currProp = currProp->next; + } + } +} + ++ (void)fixUpNamespacesForNode:(xmlNodePtr)nodeToFix + graftingToTreeNode:(xmlNodePtr)graftPointNode { + + // allocate the namespace map that will be passed + // down on recursive calls + NSMutableDictionary *nsMap = [NSMutableDictionary dictionary]; + + [self fixUpNamespacesForNode:nodeToFix + graftingToTreeNode:graftPointNode + namespaceSubstitutionMap:nsMap]; +} + +@end + + +@interface GDataXMLDocument (PrivateMethods) +- (void)addStringsCacheToDoc; +const char *IANAEncodingCStringFromNSStringEncoding(NSStringEncoding encoding); +@end + +@implementation GDataXMLDocument + +const char *IANAEncodingCStringFromNSStringEncoding(NSStringEncoding encoding) +{ + CFStringEncoding cfEncoding = CFStringConvertNSStringEncodingToEncoding(encoding); + CFStringRef ianaCharacterSetName = CFStringConvertEncodingToIANACharSetName(cfEncoding); + // To avoid brainfuck with encoding of the encoding string, let's just use NSString convenience method + return [(__bridge NSString*)ianaCharacterSetName UTF8String]; + // const char *cIanaCharacterSetName = NULL; + // + // cIanaCharacterSetName = CFStringGetCStringPtr(ianaCharacterSetName, kCFStringEncodingMacRoman); + // + // if (cIanaCharacterSetName == NULL) { + // CFStringGetCString(ianaCharacterSetName, cIanaCharacterSetName, CFStringGetLength(ianaCharacterSetName), kCFStringEncodingMacRoman); + // } + // + // return cIanaCharacterSetName; +} + +- (id)initWithXMLString:(NSString *)str error:(NSError **)error +{ + return [self initWithXMLString:str encoding:NSUTF8StringEncoding error:error]; +} + +- (id)initWithData:(NSData *)data error:(NSError **)error +{ + return [self initWithData:data encoding:NSUTF8StringEncoding error:error]; +} + +- (id)initWithHTMLString:(NSString *)str error:(NSError **)error +{ + return [self initWithHTMLString:str encoding:NSUTF8StringEncoding error:error]; +} + +- (id)initWithHTMLData:(NSData *)data error:(NSError **)error +{ + return [self initWithHTMLData:data encoding:NSUTF8StringEncoding error:error]; +} + +- (id)initWithXMLString:(NSString *)str encoding:(NSStringEncoding)encoding error:(NSError **)error { + + NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding]; + GDataXMLDocument *doc = [self initWithData:data encoding:encoding error:error]; + return doc; +} + +- (id)initWithHTMLString:(NSString *)str encoding:(NSStringEncoding)encoding error:(NSError **)error { + + NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding]; + GDataXMLDocument *doc = [self initWithHTMLData:data encoding:encoding error:error]; + return doc; +} + +- (id)initWithData:(NSData *)data encoding:(NSStringEncoding)encoding error:(NSError **)error { + + if (self = [super init]) { + _encoding = encoding; + + const char *baseURL = NULL; + + const char *xmlEncoding = IANAEncodingCStringFromNSStringEncoding(encoding); + + // NOTE: We are assuming [data length] fits into an int. + xmlDoc_ = xmlReadMemory((const char*)[data bytes], (int)[data length], baseURL, xmlEncoding, + kGDataXMLParseOptions); // TODO(grobbins) map option values + if (xmlDoc_ == NULL) { + if (error) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:-1 + userInfo:nil]; + // TODO(grobbins) use xmlSetGenericErrorFunc to capture error + } + return nil; + } else { + if (error) *error = NULL; + [self addStringsCacheToDoc]; + } + } + + return self; +} + +- (id)initWithHTMLData:(NSData *)data encoding:(NSStringEncoding)encoding error:(NSError **)error { + + if (self = [super init]) { + const char *baseURL = NULL; + _encoding = encoding; + + const char *xmlEncoding = IANAEncodingCStringFromNSStringEncoding(encoding); + xmlDoc_ = htmlReadMemory((const char*)[data bytes], (int)[data length], baseURL, xmlEncoding, kGDataHTMLParseOptions); + if (xmlDoc_ == NULL) { + if (error) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:-1 + userInfo:nil]; + // TODO(grobbins) use xmlSetGenericErrorFunc to capture error + } + return nil; + } else { + if (error) *error = NULL; + + [self addStringsCacheToDoc]; + } + } + + return self; +} + + +- (id)initWithRootElement:(GDataXMLElement *)element { + + self = [super init]; + if (self) { + + xmlDoc_ = xmlNewDoc(NULL); + + (void) xmlDocSetRootElement(xmlDoc_, [element XMLNodeCopy]); + + [self addStringsCacheToDoc]; + } + + return self; +} + +- (void)addStringsCacheToDoc { + // utility routine for init methods + +#if DEBUG + NSCAssert(xmlDoc_ != NULL && xmlDoc_->_private == NULL, + @"GDataXMLDocument cache creation problem"); +#endif + + // add a strings cache as private data for the document + // + // we'll use plain C pointers (xmlChar*) as the keys, and NSStrings + // as the values + CFIndex capacity = 0; // no limit + + CFDictionaryKeyCallBacks keyCallBacks = { + 0, // version + StringCacheKeyRetainCallBack, + StringCacheKeyReleaseCallBack, + StringCacheKeyCopyDescriptionCallBack, + StringCacheKeyEqualCallBack, + StringCacheKeyHashCallBack + }; + + CFMutableDictionaryRef dict = CFDictionaryCreateMutable( + kCFAllocatorDefault, capacity, + &keyCallBacks, &kCFTypeDictionaryValueCallBacks); + + // we'll use the user-defined _private field for our cache + xmlDoc_->_private = dict; +} + +- (NSString *)description { + return [NSString stringWithFormat:@"%@ %p", [self class], self]; +} + +- (void)dealloc { + if (xmlDoc_ != NULL) { + // release the strings cache + // + // since it's a CF object, were anyone to use this in a GC environment, + // this would need to be released in a finalize method, too + if (xmlDoc_->_private != NULL) { + CFRelease(xmlDoc_->_private); + } + + xmlFreeDoc(xmlDoc_); + } +} + +#pragma mark - + +- (GDataXMLElement *)rootElement { + GDataXMLElement *element = nil; + + if (xmlDoc_ != NULL) { + xmlNodePtr rootNode = xmlDocGetRootElement(xmlDoc_); + if (rootNode) { + element = [GDataXMLElement nodeBorrowingXMLNode:rootNode]; + } + } + return element; +} + +- (NSData *)XMLData { + + if (xmlDoc_ != NULL) { + xmlChar *buffer = NULL; + int bufferSize = 0; + + xmlDocDumpMemory(xmlDoc_, &buffer, &bufferSize); + + if (buffer) { + NSData *data = [NSData dataWithBytes:buffer + length:bufferSize]; + xmlFree(buffer); + return data; + } + } + return nil; +} + +- (void)setVersion:(NSString *)version { + + if (xmlDoc_ != NULL) { + if (xmlDoc_->version != NULL) { + // version is a const char* so we must cast + xmlFree((char *) xmlDoc_->version); + xmlDoc_->version = NULL; + } + + if (version != nil) { + xmlDoc_->version = xmlStrdup(GDataGetXMLString(version)); + } + } +} + +- (void)setCharacterEncoding:(NSString *)encoding { + + if (xmlDoc_ != NULL) { + if (xmlDoc_->encoding != NULL) { + // version is a const char* so we must cast + xmlFree((char *) xmlDoc_->encoding); + xmlDoc_->encoding = NULL; + } + + if (encoding != nil) { + xmlDoc_->encoding = xmlStrdup(GDataGetXMLString(encoding)); + } + } +} + +- (NSArray *)nodesForXPath:(NSString *)xpath error:(NSError **)error { + return [self nodesForXPath:xpath namespaces:nil error:error]; +} + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath error:(NSError **)error { + NSArray *nodes = [self nodesForXPath:xpath error:error]; + if (!nodes.count) { + return nil; + } + return [nodes objectAtIndex:0]; +} + +- (NSArray *)nodesForXPath:(NSString *)xpath + namespaces:(NSDictionary *)namespaces + error:(NSError **)error { + + NSMutableArray *array = nil; + NSInteger errorCode = -1; + NSDictionary *errorInfo = nil; + + if (xmlDoc_ != NULL) { + xmlXPathContextPtr xpathCtx = xmlXPathNewContext(xmlDoc_); + if (xpathCtx) { + xpathCtx->node = (xmlNodePtr)xmlDoc_; + RegisterNamespaces(namespaces, xpathCtx, xmlDocGetRootElement(xmlDoc_)); + + // now evaluate the path + xmlXPathObjectPtr xpathObj = xmlXPathEval(GDataGetXMLString(xpath), xpathCtx); + if (xpathObj) { + // we have some result from the search + array = [NSMutableArray array]; + xmlNodeSetPtr nodeSet = xpathObj->nodesetval; + if (!xmlXPathNodeSetIsEmpty(nodeSet)) { + // add each node in the result set to our array + for (int index = 0; index < nodeSet->nodeNr; index++) { + xmlNodePtr currNode = nodeSet->nodeTab[index]; + GDataXMLNode *node = [GDataXMLNode nodeBorrowingXMLNode:currNode]; + if (node) { + [array addObject:node]; + } + } + } + xmlXPathFreeObject(xpathObj); + } else { + // provide an error for failed evaluation + const char *msg = xpathCtx->lastError.str1; + errorCode = xpathCtx->lastError.code; + if (msg) { + NSString *errStr = [NSString stringWithUTF8String:msg]; + errorInfo = [NSDictionary dictionaryWithObject:errStr + forKey:@"error"]; + } + } + xmlXPathFreeContext(xpathCtx); + } + } else { + // not a valid node for using XPath + errorInfo = [NSDictionary dictionaryWithObject:@"invalid node" + forKey:@"error"]; + } + if (array == nil && error != nil) { + *error = [NSError errorWithDomain:@"com.google.GDataXML" + code:errorCode + userInfo:errorInfo]; + } + + return array; +} + +- (GDataXMLNode *)firstNodeForXPath:(NSString *)xpath namespaces:(NSDictionary *)namespaces error:(NSError *__autoreleasing *)error +{ + NSArray *nodes = [self nodesForXPath:xpath namespaces:namespaces error:error]; + if (!nodes.count) { + return nil; + } + return [nodes objectAtIndex:0]; +} + + +@end + +// +// Dictionary key callbacks for our C-string to NSString cache dictionary +// +static const void *StringCacheKeyRetainCallBack(CFAllocatorRef allocator, const void *str) { + // copy the key + xmlChar* key = xmlStrdup(str); + return key; +} + +static void StringCacheKeyReleaseCallBack(CFAllocatorRef allocator, const void *str) { + // free the key + char *chars = (char *)str; + xmlFree((char *) chars); +} + +static CFStringRef StringCacheKeyCopyDescriptionCallBack(const void *str) { + // make a CFString from the key + CFStringRef cfStr = CFStringCreateWithCString(kCFAllocatorDefault, + (const char *)str, + kCFStringEncodingUTF8); + return cfStr; +} + +static Boolean StringCacheKeyEqualCallBack(const void *str1, const void *str2) { + // compare the key strings + if (str1 == str2) return true; + + int result = xmlStrcmp(str1, str2); + return (result == 0); +} + +static CFHashCode StringCacheKeyHashCallBack(const void *str) { + + // dhb hash, per http://www.cse.yorku.ca/~oz/hash.html + CFHashCode hash = 5381; + int c; + const char *chars = (const char *)str; + + while ((c = *chars++) != 0) { + hash = ((hash << 5) + hash) + c; + } + return hash; +} + diff --git a/Pods/GDataXML-HTML/README.md b/Pods/GDataXML-HTML/README.md new file mode 100644 index 0000000..695138a --- /dev/null +++ b/Pods/GDataXML-HTML/README.md @@ -0,0 +1,58 @@ +# Description # + +[![Pod Version](http://img.shields.io/cocoapods/v/GDataXML-HTML.svg?style=flat)](http://cocoadocs.org/docsets/GDataXML-HTML/) +[![Pod Platform](http://img.shields.io/cocoapods/p/GDataXML-HTML.svg?style=flat)](http://cocoadocs.org/docsets/GDataXML-HTML/) +[![Build Status](https://travis-ci.org/graetzer/GDataXML-HTML.svg?branch=master)](https://travis-ci.org/graetzer/GDataXML-HTML) + +GDataXML-HTML is a HTML/XML parser for iOS and OSX, based on Google's GDataXML. As the name suggest it adds support for the HTMLparser module of libxml2 and enables you to deal with non validating XML or HTML. + +So you can use e.g. XPath to parse Websites with reasonable performance + +# Use in your own project # + +### Install with CocoaPods + +pod 'GDataXML-HTML', '~> 1.3.0' + +### Manually ### + +1. First add the files from the Pod/Classes folder in this project to your source tree, then include them somewhere in your code, + +2. In Xcode choose the project file (in the project navigator, the top item). + +3. In the list choose your project target and select 'Build Settings' at the top of the window. +Then you should see a list of build options. + +4. Add this line to 'Header Search Paths' (use search bar to find the right option) +/usr/include/libxml2 + +5. Add this line to 'Other Linker Flags': +-lxml2 + +# Examples # +There are usage examples inside the GDataXML_HTMLViewController.m file. + +### Other examples for GDataXML on the web: ### + +1. http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml + +2. http://dubydigital.com/iphone/?p=59 + +# Licence # +Original GDataXML: +Copyright (c) 2008 Google Inc + +Example project and HTML addons: +Copyright (c) 2012-2014 Simon Grätzer + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Pods/GDataXML-HTML/libxml.modulemap b/Pods/GDataXML-HTML/libxml.modulemap new file mode 100644 index 0000000..194f503 --- /dev/null +++ b/Pods/GDataXML-HTML/libxml.modulemap @@ -0,0 +1,5 @@ +module libxml [system] { + header "/usr/include/libxml2/libxml/tree.h" + link "libxml" + export * +} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index f4f307f..c5df36c 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -1,4 +1,28 @@ PODS: + - AeroGearHttp (0.6.0) + - AeroGearOAuth2 (0.5.1): + - AeroGearHttp + - AFNetworking (2.6.3): + - AFNetworking/NSURLConnection (= 2.6.3) + - AFNetworking/NSURLSession (= 2.6.3) + - AFNetworking/Reachability (= 2.6.3) + - AFNetworking/Security (= 2.6.3) + - AFNetworking/Serialization (= 2.6.3) + - AFNetworking/UIKit (= 2.6.3) + - AFNetworking/NSURLConnection (2.6.3): + - AFNetworking/Reachability + - AFNetworking/Security + - AFNetworking/Serialization + - AFNetworking/NSURLSession (2.6.3): + - AFNetworking/Reachability + - AFNetworking/Security + - AFNetworking/Serialization + - AFNetworking/Reachability (2.6.3) + - AFNetworking/Security (2.6.3) + - AFNetworking/Serialization (2.6.3) + - AFNetworking/UIKit (2.6.3): + - AFNetworking/NSURLConnection + - AFNetworking/NSURLSession - Alamofire (3.4.1) - Alamofire-SwiftyJSON (0.1.1): - Alamofire (~> 3.4) @@ -47,6 +71,7 @@ PODS: - FirebaseStorage (1.0.2): - FirebaseAnalytics (~> 3.2) - GoogleNetworkingUtilities (~> 1.2) + - GDataXML-HTML (1.3.0) - GoogleInterchangeUtilities (1.2.1): - GoogleSymbolUtilities (~> 1.0) - GoogleNetworkingUtilities (1.2.1): @@ -59,27 +84,46 @@ PODS: - GoogleSymbolUtilities (~> 1.0) - Locksmith (2.0.8) - OAuthSwift (0.5.2) + - PicoKit (0.7.2): + - PicoKit/WebService (= 0.7.2) + - PicoKit/Core (0.7.2): + - GDataXML-HTML (~> 1.3.0) + - PicoKit/OrderedDictionary + - PicoKit/XMLWriter + - PicoKit/OrderedDictionary (0.7.2) + - PicoKit/Soap (0.7.2): + - PicoKit/Core + - PicoKit/WebService (0.7.2): + - AFNetworking (~> 2.6.0) + - PicoKit/Soap + - PicoKit/XMLWriter (0.7.2) - SwiftyJSON (2.3.2) - SWRevealViewController (2.3.0) - TYMActivityIndicatorView (0.3.3) - UIImageViewModeScaleAspect (1.5) DEPENDENCIES: + - AeroGearHttp + - AeroGearOAuth2 - Alamofire-SwiftyJSON - BSImagePicker (~> 2.3) - FBSDKCoreKit - FBSDKLoginKit - FBSDKShareKit - - Firebase (>= 2.5.0) + - Firebase - Firebase/Database - Firebase/Storage - FirebaseAuth - Locksmith - OAuthSwift (~> 0.5.0) + - PicoKit - SWRevealViewController - TYMActivityIndicatorView SPEC CHECKSUMS: + AeroGearHttp: e958f301cc2d1c7fbfd4b61af187ea3490040a48 + AeroGearOAuth2: 6f29d3fac8b78a0ff6d51b04c4ba1a02baed2e52 + AFNetworking: cb8d14a848e831097108418f5d49217339d4eb60 Alamofire: 01a82e2f6c0f860ade35534c8dd88be61bdef40c Alamofire-SwiftyJSON: 5812bb37accc36897cc2f2dabb070d8ebcd7ac98 Bolts: 8a7995239dbe724f9cba2248b766d48b7ebdd322 @@ -94,6 +138,7 @@ SPEC CHECKSUMS: FirebaseDatabase: 59bea2e7dfd81b3b8b2f8e396caf1a52c2ced6f7 FirebaseInstanceID: ba1e640935235e5fac39dfa816fe7660e72e1a8a FirebaseStorage: fa2a87dee81f682f553af6839daa37a750e65f6a + GDataXML-HTML: 7adc03668cab35c288f1dbb8929a179f0fece898 GoogleInterchangeUtilities: def8415a862effc67d549d5b5b0b9c7a2f97d4de GoogleNetworkingUtilities: 3e83269048cfb498dc7ec83ab36813360965c74f GoogleParsingUtilities: 30b3896f9ee167dc78747f013d3de157ced1cadf @@ -101,11 +146,12 @@ SPEC CHECKSUMS: GoogleUtilities: 56c5ac05b7aa5dc417a1bb85221a9516e04d7032 Locksmith: a8ed41ac4c06506ea8cb199d8ec8a8d3d108eb2a OAuthSwift: 1ef042d4362e755e24a78f158d817245641a5d24 + PicoKit: 9079bce659a8d5408c8af1c45254b971df614de3 SwiftyJSON: 04ccea08915aa0109039157c7974cf0298da292a SWRevealViewController: 6d3fd97f70112fd7cef9de14df4260eacce4c63a TYMActivityIndicatorView: ad816387ebd5952c376af129218722733044148b UIImageViewModeScaleAspect: 11a790a0b9d248a13dc63e3a78991f1463b6d84e -PODFILE CHECKSUM: f0e94f082ecd182e6ea530edddd9bc1c1cb65997 +PODFILE CHECKSUM: 3b36a7c734809ee54f4ecf0055d9910a9279d555 COCOAPODS: 1.0.0 diff --git a/Pods/PicoKit/LICENSE b/Pods/PicoKit/LICENSE new file mode 100644 index 0000000..e5bb9b5 --- /dev/null +++ b/Pods/PicoKit/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + diff --git a/Pods/PicoKit/Pod/Core/Cache/PicoCache.h b/Pods/PicoKit/Pod/Core/Cache/PicoCache.h new file mode 100644 index 0000000..ce2fb9c --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Cache/PicoCache.h @@ -0,0 +1,26 @@ +// +// PicoCache.h +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@interface PicoCache : NSObject { +@private + NSUInteger _countLimit; + +} + +@property (nonatomic, assign, readwrite) NSUInteger countLimit; + +- (instancetype) initWithCountLimit : (NSUInteger) limit NS_DESIGNATED_INITIALIZER; +- (id) objectForKey: (id)key; +- (void) setObject: (id)object forKey:(id)key; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *allKeys; +@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *allValues; +- (void)removeObjectForKey:(id)key; +- (void)removeAllObjects; +@property (NS_NONATOMIC_IOSONLY, readonly) NSUInteger count; + +@end diff --git a/Pods/PicoKit/Pod/Core/Cache/PicoCache.m b/Pods/PicoKit/Pod/Core/Cache/PicoCache.m new file mode 100644 index 0000000..2e58cb5 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Cache/PicoCache.m @@ -0,0 +1,141 @@ +// +// PicoCache.m +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoCache.h" +#import "PicoCacheEntry.h" + +@interface PicoCache () { +@private + NSMutableDictionary *_entries; + NSMutableArray *_entriesByTime; +} + +@property (strong, nonatomic) NSMutableDictionary *entries; +@property (strong, nonatomic) NSMutableArray *entriesByTime; + +- (void)evictObjectsExceedingCountLimit; + +@end + + +@implementation PicoCache + +@synthesize entries = _entries, entriesByTime = _entriesByTime; + +@synthesize countLimit = _countLimit; + +- (instancetype)init { + return [self initWithCountLimit:0]; +} + +- (instancetype)initWithCountLimit:(NSUInteger)limit { + self = [super init]; + if (self) { + _entries = [[NSMutableDictionary alloc] init]; + _entriesByTime = [[NSMutableArray alloc] init]; + + _countLimit = limit; + } + return self; +} + +- (id)objectForKey:(id)key { + if (!key) { + return nil; + } + + @synchronized(self) { + // Look for the cache entry with the given key + PicoCacheEntry *entry = _entries[key]; + if (!entry) { + return nil; + } + + // Refresh the entry by moving it to the end of the LRU list + [_entriesByTime removeObjectIdenticalTo:entry]; + [_entriesByTime addObject: entry]; + + return [entry object]; + } +} + +- (void)setObject:(id)object forKey:(id)key { + if (!object || !key) { + return; + } + + @synchronized(self) { + PicoCacheEntry *entry = _entries[key]; + if (entry) { + // Object exists in cache, refresh by removing it from the list + [_entriesByTime removeObjectIdenticalTo:entry]; + [_entries removeObjectForKey:key]; + } + + // Create a cache entry to contain the given object + entry = [[PicoCacheEntry alloc] initWithObject:object forKey:key]; + + // Add the entry to the cache and put it at the end of the LRU list + _entries[key] = entry; + [_entriesByTime addObject:entry]; + + // Enforce the count limit + [self evictObjectsExceedingCountLimit]; + } + +} + +- (NSArray *)allKeys { + return [_entries allKeys]; +} + +- (NSArray *)allValues { + NSMutableArray *values = [NSMutableArray arrayWithCapacity:[_entries count]]; + for (PicoCacheEntry *entry in [_entries allValues]) { + [values addObject:[entry object]]; + } + return values; +} + +- (void)removeObjectForKey:(id)key { + PicoCacheEntry *entry = _entries[key]; + if (entry) { + [_entries removeObjectForKey:key]; + [_entriesByTime removeObjectIdenticalTo:entry]; + } +} + +- (void)removeAllObjects { + [_entries removeAllObjects]; + [_entriesByTime removeAllObjects]; +} + +- (NSUInteger)count { + return [_entries count]; +} + +- (void)evictObjectsExceedingCountLimit { + if (_countLimit == 0) { + return; + } + + NSUInteger count = [_entriesByTime count]; + if (count == 0) { + return; + } + + // Remove oldest entries that exceed the count limit + for(NSUInteger i = count; i > _countLimit; i--) { + PicoCacheEntry *entry = _entriesByTime[0]; + [_entries removeObjectForKey:[entry key]]; + [_entriesByTime removeObjectAtIndex:0]; + } +} + + +@end diff --git a/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.h b/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.h new file mode 100644 index 0000000..8d15236 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.h @@ -0,0 +1,22 @@ +// +// PicoCacheEntry.h +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@interface PicoCacheEntry : NSObject { +@private + id _key; + id _object; + +} + +@property (nonatomic, strong, readwrite) id key; +@property (nonatomic, strong, readwrite) id object; + + +-(instancetype) initWithObject:(id)obj forKey:(id)key NS_DESIGNATED_INITIALIZER; + +@end diff --git a/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.m b/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.m new file mode 100644 index 0000000..6d12ce8 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Cache/PicoCacheEntry.m @@ -0,0 +1,30 @@ +// +// PicoCacheEntry.m +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoCacheEntry.h" + +@implementation PicoCacheEntry + +@synthesize key = _key, object = _object; + +- (instancetype) init { + return [self initWithObject:nil forKey:nil]; +} + +- (instancetype) initWithObject:(id)obj forKey:(id)key { + self = [super init]; + if (self) { + self.key = key; + self.object = obj; + } + + return self; +} + + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.h new file mode 100644 index 0000000..61a4320 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.h @@ -0,0 +1,13 @@ +// +// PicoBoolConverter.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoConvertable.h" + +@interface PicoBoolConverter : NSObject + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.m new file mode 100644 index 0000000..c35cbe6 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoBoolConverter.m @@ -0,0 +1,34 @@ +// +// PicoBoolConverter.m +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoBoolConverter.h" + +@implementation PicoBoolConverter + +-(NSString *)write:(NSNumber *)value withConfig:(PicoConfig *)config { + if ([value boolValue]) { + return @"true"; + } else { + return @"false"; + } +} + +-(NSNumber *)read:(NSString *)value withConfig:(PicoConfig *)config { + NSString *lower = [value lowercaseString]; + NSNumber *result = nil; + if ([lower isEqualToString:@"true"]) { + result = @YES; + } else if ([lower isEqualToString:@"1"]) { + result = @YES; + } else { + result = @NO; + } + return result; +} + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoConvertable.h b/Pods/PicoKit/Pod/Core/Converter/PicoConvertable.h new file mode 100644 index 0000000..a06ae7c --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoConvertable.h @@ -0,0 +1,16 @@ +// +// PicoConvertable.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoConfig.h" + +@protocol PicoConvertable + +-(id)read : (NSString *)value withConfig:(PicoConfig *)config; +-(NSString *)write: (id)value withConfig:(PicoConfig *)config; + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoConverter.h new file mode 100644 index 0000000..02ad612 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoConverter.h @@ -0,0 +1,18 @@ +// +// PicoConverter.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoConvertable.h" + +@interface PicoConverter : NSObject + ++(id)read: (NSString *)value withType: (NSString *)type config:(PicoConfig *)config; ++(NSString *)write: (id)value withType: (NSString *)type config:(PicoConfig *)config; ++(BOOL)isPrimitive: (NSString *)type; ++(id )lookup: (NSString *)type; + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoConverter.m new file mode 100644 index 0000000..2218487 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoConverter.m @@ -0,0 +1,98 @@ +// +// PicoConverter.m +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoConverter.h" +#import "PicoConstants.h" +#import "PicoNumberConverter.h" +#import "PicoBoolConverter.h" +#import "PicoStringConverter.h" +#import "PicoConvertable.h" +#import "PicoDateConverter.h" +#import "PicoDataConverter.h" + +@implementation PicoConverter + +static NSMutableDictionary *cache = nil; + ++ (void) initialize { + cache = [[NSMutableDictionary alloc] init]; + + id converter = nil; + + // pre-initialize converters + converter = [[PicoStringConverter alloc] init]; + cache[PICO_TYPE_STRING] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_INT] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_DOUBLE] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_SHORT] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_LONG] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_FLOAT] = converter; + + converter = [[PicoBoolConverter alloc] init]; + cache[PICO_TYPE_BOOL] = converter; + + converter = [[PicoStringConverter alloc] init]; + cache[PICO_TYPE_ENUM] = converter; + + converter = [[PicoDateConverter alloc] init]; + cache[PICO_TYPE_DATE] = converter; + + converter = [[PicoStringConverter alloc] init]; + cache[PICO_TYPE_DURATION] = converter; + + converter = [[PicoStringConverter alloc] init]; + cache[PICO_TYPE_CHAR] = converter; + + converter = [[PicoStringConverter alloc] init]; + cache[PICO_TYPE_QNAME] = converter; + + converter = [[PicoNumberConverter alloc] init]; + cache[PICO_TYPE_BYTE] = converter; + + converter = [[PicoDataConverter alloc] init]; + cache[PICO_TYPE_DATA] = converter; +} + ++(id)read: (NSString *)value withType: (NSString *)type config:(PicoConfig *)config { + id converter = [PicoConverter lookup:type]; + if (converter == nil) { + @throw [NSException exceptionWithName:@"ConverterException" reason:[NSString stringWithFormat:@"no converter found for type : %@", type] userInfo:nil]; + } + return [converter read:value withConfig:config]; +} + ++(NSString *)write: (id)value withType: (NSString *)type config:(PicoConfig *)config { + id converter = [PicoConverter lookup:type]; + if (converter == nil) { + @throw [NSException exceptionWithName:@"ConverterException" reason:[NSString stringWithFormat:@"no converter found for type : %@", type] userInfo:nil]; + } + return [converter write:value withConfig:config]; +} + ++(BOOL) isPrimitive:(NSString *)type { + return [PicoConverter lookup:type] != nil; +} + ++(id )lookup: (NSString *)type { + + id converter = cache[type]; + return converter; + +} + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.h new file mode 100644 index 0000000..cab711d --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.h @@ -0,0 +1,13 @@ +// +// PicoDataConverter.h +// Pico +// +// Created by bulldog on 13-3-20. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#include "PicoConvertable.h" + +@interface PicoDataConverter : NSObject + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.m new file mode 100644 index 0000000..24ac0ae --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoDataConverter.m @@ -0,0 +1,173 @@ +// +// PicoDataConverter.m +// Pico +// +// Created by bulldog on 13-3-20. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoDataConverter.h" + +static const char _base64EncodingTable[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; +static const short _base64DecodingTable[256] = { + -2, -2, -2, -2, -2, -2, -2, -2, -2, -1, -1, -2, -1, -1, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -1, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, 62, -2, -2, -2, 63, + 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -2, -2, -2, -2, -2, -2, + -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -2, -2, -2, -2, -2, + -2, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, + -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2 +}; + + + +@implementation PicoDataConverter + +-(NSString *)write:(NSData *)data withConfig:(PicoConfig *)config { + + NSString *dateString = [PicoDataConverter encodeBase64WithData:data]; + + return dateString; +} + +-(NSData *)read: (NSString *) value withConfig:(PicoConfig *)config{ + + NSData *data = [PicoDataConverter decodeBase64WithString:value]; + + return data; +} + ++ (NSString *)encodeBase64WithData:(NSData *)objData { + const unsigned char * objRawData = [objData bytes]; + char * objPointer; + char * strResult; + + // Get the Raw Data length and ensure we actually have data + int intLength = (int)[objData length]; + if (intLength == 0) return nil; + + // Setup the String-based Result placeholder and pointer within that placeholder + strResult = (char *)calloc((((intLength + 2) / 3) * 4) + 1, sizeof(char)); + objPointer = strResult; + + // Iterate through everything + while (intLength > 2) { // keep going until we have less than 24 bits + *objPointer++ = _base64EncodingTable[objRawData[0] >> 2]; + *objPointer++ = _base64EncodingTable[((objRawData[0] & 0x03) << 4) + (objRawData[1] >> 4)]; + *objPointer++ = _base64EncodingTable[((objRawData[1] & 0x0f) << 2) + (objRawData[2] >> 6)]; + *objPointer++ = _base64EncodingTable[objRawData[2] & 0x3f]; + + // we just handled 3 octets (24 bits) of data + objRawData += 3; + intLength -= 3; + } + + // now deal with the tail end of things + if (intLength != 0) { + *objPointer++ = _base64EncodingTable[objRawData[0] >> 2]; + if (intLength > 1) { + *objPointer++ = _base64EncodingTable[((objRawData[0] & 0x03) << 4) + (objRawData[1] >> 4)]; + *objPointer++ = _base64EncodingTable[(objRawData[1] & 0x0f) << 2]; + *objPointer++ = '='; + } else { + *objPointer++ = _base64EncodingTable[(objRawData[0] & 0x03) << 4]; + *objPointer++ = '='; + *objPointer++ = '='; + } + } + + // Terminate the string-based result + *objPointer = '\0'; + + // Create result NSString object + NSString *base64String = @(strResult); + + // Free memory + free(strResult); + + return base64String; +} + ++ (NSData *)decodeBase64WithString:(NSString *)strBase64 { + const char *objPointer = [strBase64 cStringUsingEncoding:NSASCIIStringEncoding]; + size_t intLength = strlen(objPointer); + int intCurrent; + int i = 0, j = 0, k; + + unsigned char *objResult = calloc(intLength, sizeof(unsigned char)); + + // Run through the whole string, converting as we go + while ( ((intCurrent = *objPointer++) != '\0') && (intLength-- > 0) ) { + if (intCurrent == '=') { + if (*objPointer != '=' && ((i % 4) == 1)) {// || (intLength > 0)) { + // the padding character is invalid at this point -- so this entire string is invalid + free(objResult); + return nil; + } + continue; + } + + intCurrent = _base64DecodingTable[intCurrent]; + if (intCurrent == -1) { + // we're at a whitespace -- simply skip over + continue; + } else if (intCurrent == -2) { + // we're at an invalid character + free(objResult); + return nil; + } + + switch (i % 4) { + case 0: + objResult[j] = intCurrent << 2; + break; + + case 1: + objResult[j++] |= intCurrent >> 4; + objResult[j] = (intCurrent & 0x0f) << 4; + break; + + case 2: + objResult[j++] |= intCurrent >>2; + objResult[j] = (intCurrent & 0x03) << 6; + break; + + case 3: + objResult[j++] |= intCurrent; + break; + } + i++; + } + + // mop things up if we ended on a boundary + k = j; + if (intCurrent == '=') { + switch (i % 4) { + case 1: + // Invalid state + free(objResult); + return nil; + + case 2: + k++; + // flow through + case 3: + objResult[k] = 0; + } + } + + // Cleanup and setup the return NSData + NSData * objData = [[NSData alloc] initWithBytes:objResult length:j] ; + free(objResult); + return objData; +} +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.h new file mode 100644 index 0000000..9655002 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.h @@ -0,0 +1,13 @@ +// +// PicoDateConverter.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#include "PicoConvertable.h" + +@interface PicoDateConverter : NSObject + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.m new file mode 100644 index 0000000..28361f5 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoDateConverter.m @@ -0,0 +1,29 @@ +// +// PicoDateConverter.m +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoDateConverter.h" + +@implementation PicoDateConverter + +-(NSString *)write:(NSDate *)date withConfig:(PicoConfig *)config { + + NSString *dateString = [config.dateFormatter stringFromDate: date]; + + return dateString; +} + +-(NSDate *)read: (NSString *) value withConfig:(PicoConfig *)config{ + + NSDate *date = [config.dateFormatter dateFromString:value]; + + return date; +} + + + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.h new file mode 100644 index 0000000..5493f7d --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.h @@ -0,0 +1,13 @@ +// +// PicoNumberConverter.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#include "PicoConvertable.h" + +@interface PicoNumberConverter : NSObject + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.m new file mode 100644 index 0000000..d776e08 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoNumberConverter.m @@ -0,0 +1,24 @@ +// +// PicoNumberConverter.m +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoNumberConverter.h" +#import "PicoConfig.h" + +@implementation PicoNumberConverter + +-(NSString *)write:(NSNumber *)value withConfig:(PicoConfig *)config { + NSString *result = [value stringValue]; + return result; +} + +-(NSNumber *)read:(NSString *)value withConfig:(PicoConfig *)config { + NSNumber *result = [config.numberFormatter numberFromString:value]; + return result; +} + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.h b/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.h new file mode 100644 index 0000000..81cef19 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.h @@ -0,0 +1,13 @@ +// +// PicoStringConverter.h +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#include "PicoConvertable.h" + +@interface PicoStringConverter : NSObject + +@end diff --git a/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.m b/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.m new file mode 100644 index 0000000..b47adc8 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Converter/PicoStringConverter.m @@ -0,0 +1,21 @@ +// +// PicoStringConverter.m +// pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoStringConverter.h" + +@implementation PicoStringConverter + +-(NSString *)write:(NSString *)value withConfig:(PicoConfig *)config { + return value; +} + +-(NSString *)read:(NSString *)value withConfig:(PicoConfig *)config { + return value; +} + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoBindable.h b/Pods/PicoKit/Pod/Core/PicoBindable.h new file mode 100644 index 0000000..d5f69b3 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoBindable.h @@ -0,0 +1,15 @@ +// +// PicoBindable.h +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@class PicoClassSchema; +@protocol PicoBindable + ++(PicoClassSchema *)getClassMetaData; ++(NSMutableDictionary *)getPropertyMetaData; + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoConfig.h b/Pods/PicoKit/Pod/Core/PicoConfig.h new file mode 100644 index 0000000..ded48ad --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoConfig.h @@ -0,0 +1,47 @@ +// +// PicoFormat.h +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +extern NSString *const DEFAULT_XML_ENCODING; + +@interface PicoConfig : NSObject { +@private + NSString *_encoding; + BOOL _indent; + NSLocale *_locale; + NSNumberFormatter *_numberFormatter; + NSDateFormatter *_dateFormatter; + NSTimeZone *_tiemZone; +} + +/** + soap message encoding, default to utf-8 + */ +@property (nonatomic, strong) NSString *encoding; +/** + locale used for number or date conversion, default to current locale on device + */ +@property (nonatomic, strong) NSLocale *locale; +/** + formatter used for number conversion + */ +@property (nonatomic, strong) NSNumberFormatter *numberFormatter; +/** + formatter used for date conversion, default date format : yyyy-MM-dd'T'HH:mm:ss.SSS'Z' + */ +@property (nonatomic, strong) NSDateFormatter *dateFormatter; +/** + time zone used for date conversion, default to GMT time zone. + */ +@property (nonatomic, strong) NSTimeZone *timeZone; +/** + should output message be formated with indent, default to YES + */ +@property (nonatomic, assign) BOOL indent; + + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoConfig.m b/Pods/PicoKit/Pod/Core/PicoConfig.m new file mode 100644 index 0000000..3683a69 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoConfig.m @@ -0,0 +1,38 @@ +// +// PicoFormat.m +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoConfig.h" + +NSString *const DEFAULT_XML_ENCODING = @"UTF-8"; + +@implementation PicoConfig + +@synthesize indent = _indent, encoding = _encoding, locale = _locale, timeZone = _tiemZone; +@synthesize numberFormatter = _numberFormatter, dateFormatter = _dateFormatter; + +- (instancetype) init { + self = [super init]; + if (self) { + self.indent = YES; + self.encoding = DEFAULT_XML_ENCODING; + self.locale = [NSLocale currentLocale]; + _numberFormatter = [[NSNumberFormatter alloc] init]; + _numberFormatter.locale = self.locale; + + self.timeZone = [NSTimeZone timeZoneWithName:@"GMT"]; + + _dateFormatter = [[NSDateFormatter alloc] init]; + [_dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"]; + [_dateFormatter setTimeZone:_tiemZone]; + } + + return self; +} + + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoConstants.h b/Pods/PicoKit/Pod/Core/PicoConstants.h new file mode 100644 index 0000000..a5a5260 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoConstants.h @@ -0,0 +1,95 @@ +// binding constants used by PICO framework + +// PICO supported types + +// integer +extern NSString *const PICO_TYPE_INT; + +// boolean +extern NSString *const PICO_TYPE_BOOL; + +// byte +extern NSString *const PICO_TYPE_BYTE; + +// char +extern NSString *const PICO_TYPE_CHAR; + +// short +extern NSString *const PICO_TYPE_SHORT; + +// long +extern NSString *const PICO_TYPE_LONG; + +// float +extern NSString *const PICO_TYPE_FLOAT; + +// double +extern NSString *const PICO_TYPE_DOUBLE; + +// enum +extern NSString *const PICO_TYPE_ENUM; + +// date +extern NSString *const PICO_TYPE_DATE; + +// duration +extern NSString *const PICO_TYPE_DURATION; + +// object +extern NSString *const PICO_TYPE_OBJECT; + +// string +extern NSString *const PICO_TYPE_STRING; + +// qname +extern NSString *const PICO_TYPE_QNAME; + +// data +extern NSString *const PICO_TYPE_DATA; + +// any element +extern NSString *const PICO_TYPE_ANYELEMENT; + +// PICO supported property kind + +// map to xml attribute +extern NSString *const PICO_KIND_ATTRIBUTE; + +// map to xml element +extern NSString *const PICO_KIND_ELEMENT; + +// map to xml element array +extern NSString *const PICO_KIND_ELEMENT_ARRAY; + +// map to xml value +extern NSString *const PICO_KIND_VALUE; + +// map to xml any element +extern NSString *const PICO_KIND_ANY_ELEMENT; + +// meta-data method name + +// method name to get class meta-data +extern NSString *const PICO_GET_CLASS_META_DATA_METHOD; + +// method name to get property meta-data +extern NSString *const PICO_GET_PROPERTY_META_DATA_METHOD; + + +// soap version +typedef NS_ENUM(NSInteger, PicoSOAPVersion) { + SOAP11 = 11, + SOAP12 = 12, +} ; + +#define PicoErrorDomain @"com.leansoft.pico" + +// pico custom error code +typedef NS_ENUM(NSInteger, PicoErrorCode) { + ReaderError = -1000, + WriterError + +} ; + + + diff --git a/Pods/PicoKit/Pod/Core/PicoConstants.m b/Pods/PicoKit/Pod/Core/PicoConstants.m new file mode 100644 index 0000000..c42a659 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoConstants.m @@ -0,0 +1,91 @@ +// +// BindingConstant.m +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 Leansoft Technology. All rights reserved. +// + +#import "PicoConstants.h" + +// binding constants used by PICO framework + +// PICO suppored types + +// integer +NSString *const PICO_TYPE_INT = @"int"; + +// boolean +NSString *const PICO_TYPE_BOOL = @"bool"; + +// byte +NSString *const PICO_TYPE_BYTE = @"byte"; + +// char +NSString *const PICO_TYPE_CHAR = @"char"; + +// short +NSString *const PICO_TYPE_SHORT = @"short"; + +// long +NSString *const PICO_TYPE_LONG = @"long"; + +// float +NSString *const PICO_TYPE_FLOAT = @"float"; + +// double +NSString *const PICO_TYPE_DOUBLE = @"double"; + +// enum +NSString *const PICO_TYPE_ENUM = @"enum"; + +// date +NSString *const PICO_TYPE_DATE = @"date"; + +// duration +NSString *const PICO_TYPE_DURATION = @"duration"; + +// object +NSString *const PICO_TYPE_OBJECT = @"object"; + +// string +NSString *const PICO_TYPE_STRING = @"string"; + +// qname +NSString *const PICO_TYPE_QNAME = @"qname"; + +// data +NSString *const PICO_TYPE_DATA = @"data"; + +// any element +NSString *const PICO_TYPE_ANYELEMENT = @"anyElement"; + + +// PICO supported property kind + +// map to xml attribute +NSString *const PICO_KIND_ATTRIBUTE = @"Attribute"; + +// map to xml element +NSString *const PICO_KIND_ELEMENT = @"Element"; + +// map to xml element array +NSString *const PICO_KIND_ELEMENT_ARRAY = @"ElementArray"; + +// map to xml text +NSString *const PICO_KIND_VALUE = @"Value"; + +// map to xml any element +NSString *const PICO_KIND_ANY_ELEMENT = @"AnyElement"; + +// meta-data method name + +// method name to get class meta-data +NSString *const PICO_GET_CLASS_META_DATA_METHOD = @"getClassMetaData"; + +// method name to get property meta-data +NSString *const PICO_GET_PROPERTY_META_DATA_METHOD = @"getPropertyMetaData"; + + + + diff --git a/Pods/PicoKit/Pod/Core/PicoReadable.h b/Pods/PicoKit/Pod/Core/PicoReadable.h new file mode 100644 index 0000000..90f1095 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoReadable.h @@ -0,0 +1,17 @@ +// +// PicoReadable.h +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@protocol PicoReadable + +// Convert binary data to object of specific class +-(id)fromData:(NSData *)data withClass:(Class)clazz; + +// Convert string to object of specific class +-(id)fromString:(NSString *)string withClass:(Class)clazz; + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoWritable.h b/Pods/PicoKit/Pod/Core/PicoWritable.h new file mode 100644 index 0000000..3a5f405 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoWritable.h @@ -0,0 +1,17 @@ +// +// PicoWritable.h +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@protocol PicoWritable + +// Convert object to binary data +-(NSData *)toData:(id)obj; + +// Convert object to string +-(NSString *)toString:(id)obj; + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoXMLReader.h b/Pods/PicoKit/Pod/Core/PicoXMLReader.h new file mode 100644 index 0000000..dfc65ac --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoXMLReader.h @@ -0,0 +1,24 @@ +// +// PicoXMLReader.h +// Pico +// +// Created by bulldog on 13-3-11. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoReadable.h" +#import "PicoConfig.h" + +@class PicoConfig; +@class GDataXMLElement; +@interface PicoXMLReader : NSObject { +@private + PicoConfig *_config; + +} + +@property (nonatomic, strong) PicoConfig *config; + +- (instancetype) initWithConfig:(PicoConfig *)config NS_DESIGNATED_INITIALIZER; + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoXMLReader.m b/Pods/PicoKit/Pod/Core/PicoXMLReader.m new file mode 100644 index 0000000..9f44c67 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoXMLReader.m @@ -0,0 +1,280 @@ +// +// PicoTBXMLReader.m +// Pico +// +// Created by bulldog on 13-3-11. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLReader.h" +#import "GDataXMLNode.h" +#import "PicoBindingSchema.h" +#import "PicoPropertySchema.h" +#import "PicoClassSchema.h" +#import "PicoConstants.h" +#import "PicoConverter.h" +#import "PicoXMLElement.h" + +@implementation PicoXMLReader + +@synthesize config = _config; + +- (instancetype) init { + PicoConfig *config = [[PicoConfig alloc] init] ; + return [self initWithConfig:config]; +} + +- (instancetype)initWithConfig:(PicoConfig *)config { + self = [super init]; + if (self) { + self.config = config; + } + + return self; +} + +-(id)fromData:(NSData *)data withClass:(Class)clazz { + NSError *error; + GDataXMLDocument *doc = [[GDataXMLDocument alloc] initWithData:data error:&error]; + + if (!doc) { + @throw [NSException exceptionWithName:@"ReaderException" reason:[NSString stringWithFormat:@"fail to parse xml data , Error : %@", error] userInfo:[error userInfo]]; + } + + GDataXMLElement *rootElement = [doc rootElement]; + PicoBindingSchema *bs = [PicoBindingSchema fromClass:clazz]; + PicoClassSchema *cs = bs.classSchema; + NSString *xmlName = cs.xmlName; + if ([xmlName length] == 0) { + xmlName = bs.className; + } + NSString *rootName = [rootElement localName]; + if (![xmlName isEqualToString: rootName]) { + @throw [NSException exceptionWithName:@"ReaderException" reason:[NSString stringWithFormat:@"root name mismatch , xml name : %@, root name : %@", xmlName, rootName] userInfo:nil]; + } + + id obj = [clazz new]; + + [self read: obj element: rootElement]; + + return obj; +} + +-(void)read:(id)value element:(GDataXMLElement *)element { + + [self readAttribute:value element:element]; + + + BOOL hasText = [self readText:value element:element]; + if (hasText) { + return; // no further read if xml text presents + } + + [self readElement:value element:element]; + + + [self readAnyElement:value element:element]; + +} + +-(void)readAttribute:(id)value element:(GDataXMLElement *)element { + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + + // read xml attributes + NSDictionary *attrMap = bs.xml2AttributeSchemaMapping; + if(attrMap.count > 0) { + for(NSString *xmlName in attrMap) { + PicoPropertySchema *ps = attrMap[xmlName]; + GDataXMLNode *attrNode = [element attributeForName:xmlName]; + if (attrNode) { + NSString *attrValue = [attrNode stringValue]; + if ([attrValue length] > 0) { + id objValue = [PicoConverter read:attrValue withType:ps.propertyType config:self.config]; + if (objValue) { + [value setValue:objValue forKey: ps.propertyName]; + } + } + } + } + } +} + +-(BOOL)readText:(id)value element:(GDataXMLElement *) element { + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + + // read xml value if any + PicoPropertySchema *valuePs = bs.valueSchema; + if (valuePs) { + NSString *text = [element stringValue]; + if (text.length > 0) { + id objValue = [PicoConverter read: text withType: valuePs.propertyType config:self.config]; + if (objValue) { + [value setValue: objValue forKey: valuePs.propertyName]; + } + } + + return YES; + } + return NO; +} + +-(void)readElement:(id)value element:(GDataXMLElement *)element { + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + + // read xml element + NSDictionary *elementMap = bs.xml2ElementSchemaMapping; + NSArray *children = [element children]; + if (children.count > 0) { + for(GDataXMLNode *node in children) { + if ([node kind] == GDataXMLElementKind) { + GDataXMLElement *childElement = (GDataXMLElement *) node; + NSString *localName = childElement.localName; + + PicoPropertySchema *ps = elementMap[localName]; + + if (ps) { // found element match + + if ([ps.propertyKind isEqualToString:PICO_KIND_ELEMENT]) { + // primitive + if ([PicoConverter isPrimitive:ps.propertyType]) { + NSString *xmlValue = [childElement stringValue]; + if (xmlValue.length > 0) { + id objValue = [PicoConverter read: xmlValue withType: ps.propertyType config:self.config]; + if (objValue) { + [value setValue: objValue forKey: ps.propertyName]; + } + } + } else if ([ps.propertyType isEqualToString:PICO_TYPE_OBJECT]) { // object + id obj = [ps.clazz new]; + [value setValue:obj forKey: ps.propertyName]; + [self read: obj element: childElement]; + } + } else if ([ps.propertyKind isEqualToString: PICO_KIND_ELEMENT_ARRAY]) { + NSMutableArray *array = [value valueForKey:ps.propertyName]; + if (!array) { + array = [[NSMutableArray alloc] init]; + [value setValue:array forKey: ps.propertyName]; + } + // primitive + if ([PicoConverter isPrimitive: ps.propertyType]) { + NSString *xmlValue = [childElement stringValue]; + if (xmlValue.length > 0) { + id objValue = [PicoConverter read:xmlValue withType:ps.propertyType config:self.config]; + [array addObject: objValue]; + } + } else if ([ps.propertyType isEqualToString:PICO_TYPE_OBJECT]) { // object + id obj = [ps.clazz new]; + [array addObject:obj]; + [self read: obj element: childElement]; + } + } + } + } + } + } +} + + +-(void)readAnyElement:(id)value element:(GDataXMLElement *)element { + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + + // read xml any element + PicoPropertySchema *anyPs = bs.anyElementSchema; + if (anyPs) { + if (anyPs.clazz) { // target class specified + [self readAnyElement:value element:element bindClass:anyPs.clazz]; + } else { + NSMutableArray *anyChildElements = [[NSMutableArray alloc] init]; + NSArray *children = [element children]; + + NSDictionary *elementMap = bs.xml2ElementSchemaMapping; + + for(GDataXMLNode *node in children) { + if ([node kind] == GDataXMLElementKind) { + if (elementMap.count == 0 || !elementMap[[node localName]]) { + PicoXMLElement *picoElement = [self convertToPicoElement:(GDataXMLElement *)node]; + [anyChildElements addObject:picoElement]; + } + } + } + [value setValue:anyChildElements forKey: anyPs.propertyName]; + } + } +} + +-(BOOL)readAnyElement:(id)value element:(GDataXMLElement *)element bindClass:(Class) clazz { + BOOL result = NO; + PicoBindingSchema *bs = [PicoBindingSchema fromClass:clazz]; + PicoClassSchema *cs = [bs classSchema];; + NSString *xmlName = cs.xmlName; + if ([xmlName length] == 0) { + xmlName = bs.className; + } + NSMutableArray *childElements = [[NSMutableArray alloc] init]; + NSArray *children = [element children]; + for(GDataXMLNode *node in children) { + if ([node kind] == GDataXMLElementKind && [xmlName isEqualToString:[node localName]]) { + [childElements addObject:node]; + } + } + if (childElements.count > 0) { + + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + + // read xml any element + PicoPropertySchema *anyPs = bs.anyElementSchema; + + NSMutableArray *array = [[NSMutableArray alloc] init]; + [value setValue:array forKey: anyPs.propertyName]; + for(GDataXMLElement *childElement in childElements) { + id obj = [clazz new]; + [array addObject:obj]; + [self read: obj element: childElement]; + } + result = YES; + } + + return result; +} + +-(PicoXMLElement *)convertToPicoElement:(GDataXMLElement *)element { + PicoXMLElement *picoElement = [[PicoXMLElement alloc] init] ; + picoElement.name = element.localName; + picoElement.nsUri = element.URI; + if ([element childCount] == 1) { + GDataXMLNode *node = (element.children)[0]; + if (node.kind == GDataXMLTextKind) { + picoElement.value = node.stringValue; + } + } + if (element.attributes) { + NSMutableDictionary *attrDic = [[NSMutableDictionary alloc] init]; + picoElement.attributes = attrDic; + for(GDataXMLNode *attr in element.attributes) { + attrDic[attr.localName] = attr.stringValue; + } + } + if (element.children) { + NSMutableArray *childrenArray = [[NSMutableArray alloc] init]; + picoElement.children = childrenArray; + for(GDataXMLNode *node in element.children) { + if ([node kind] == GDataXMLElementKind) { + PicoXMLElement *childPicoElement = [self convertToPicoElement:(GDataXMLElement *)node]; + childPicoElement.parent = picoElement; + [childrenArray addObject: childPicoElement]; + } + } + } + return picoElement; +} + + +-(id)fromString:(NSString *)string withClass:(Class)clazz { + NSData *data = [string dataUsingEncoding: CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding)) allowLossyConversion:NO]; + + return [self fromData:data withClass:clazz]; +} + + + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoXMLWriter.h b/Pods/PicoKit/Pod/Core/PicoXMLWriter.h new file mode 100644 index 0000000..93dda0f --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoXMLWriter.h @@ -0,0 +1,21 @@ +// +// PicoXMLWriter.h +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoWritable.h" + +@class PicoConfig; +@interface PicoXMLWriter : NSObject { + PicoConfig *_config; + int _autoPrefixCount; +} + +@property (nonatomic, strong) PicoConfig *config; + +- (instancetype) initWithConfig:(PicoConfig *)config NS_DESIGNATED_INITIALIZER; + +@end diff --git a/Pods/PicoKit/Pod/Core/PicoXMLWriter.m b/Pods/PicoKit/Pod/Core/PicoXMLWriter.m new file mode 100644 index 0000000..61dab59 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/PicoXMLWriter.m @@ -0,0 +1,256 @@ +// +// PicoXMLWriter.m +// pico +// +// Created by bulldog on 13-2-26. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLWriter.h" +#import "PicoConverter.h" +#import "XMLWriter.h" +#import "PicoConfig.h" +#import "PicoBindingSchema.h" +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoXMLElement.h" +#import "PicoBindable.h" + +@implementation PicoXMLWriter + +@synthesize config = _config; + +- (instancetype)init { + return [self initWithConfig:[[PicoConfig alloc] init]]; +} + +- (instancetype)initWithConfig:(PicoConfig *)config { + self = [super init]; + if (self) { + self.config = config; + } + + return self; +} + +-(NSData *)toData:(id)obj { + + NSString *xmlString = [self toString:obj] ; + + NSData *data = [xmlString dataUsingEncoding: CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding)) allowLossyConversion:NO]; + + return data; + +} + +-(NSString *)toString:(id)obj { + + + if (obj == nil) { + @throw [NSException exceptionWithName:@"WriterException" reason:@"Can't write nil object." userInfo:nil]; + } + + XMLWriter *xmlWriter = [[XMLWriter alloc] init]; + _autoPrefixCount = 0; + + [xmlWriter writeStartDocumentWithEncodingAndVersion:self.config.encoding version:@"1.0"]; + + + PicoBindingSchema *bindingSchema = [PicoBindingSchema fromObject:obj]; + PicoClassSchema *classSchema = [bindingSchema classSchema]; + NSString *xmlName = classSchema.xmlName; + NSString *namespace = classSchema.nsURI; + if (!xmlName) { // workaround, in case xml name is not provided in class schema, use class name instead + xmlName = bindingSchema.className; + } + + if ([namespace length] != 0) { + [xmlWriter setDefaultNamespace:namespace]; // bind to default namespace + } + + [xmlWriter writeStartElementWithNamespace:namespace localName:xmlName]; + + [self writeObject:xmlWriter source:obj]; + + [xmlWriter writeEndElementWithNamespace:namespace localName:xmlName]; + + [xmlWriter writeEndDocument]; + + NSString *xmlString = [xmlWriter toString]; + xmlString = [NSMutableString stringWithString:xmlString]; + + + return xmlString; + +} + +-(void)writeObject:(XMLWriter *)xmlWriter source:(id)source { + PicoBindingSchema *bindingSchema = [PicoBindingSchema fromObject:source]; + NSString *namespace = nil; + PicoClassSchema *classSchema = [bindingSchema classSchema]; + if (classSchema) { + namespace = classSchema.nsURI; + } + + [self writeAttributes:xmlWriter source:source schema:bindingSchema]; + + [self writeValue:xmlWriter source:source schema:bindingSchema]; + + // automatic prefixing + if (namespace && ![xmlWriter getPrefix:namespace]) { + NSString *prefix = [NSString stringWithFormat:@"ns%d", _autoPrefixCount++]; + [xmlWriter setPrefix:prefix namespaceURI:namespace]; + } + [self writeElements:xmlWriter source:source schema:bindingSchema namespace:namespace]; + + [self writeAnyElements:xmlWriter source:source schema:bindingSchema]; +} + +-(void)writeAttributes:(XMLWriter *)xmlWriter source:(id)source schema:(PicoBindingSchema *)bindingSchema { + NSDictionary *map = bindingSchema.property2AttributeSchemaMapping; + if (map.count > 0) { + for(NSString *propertyName in map) { + PicoPropertySchema *ps = map[propertyName]; + id propertyValue = [source valueForKey:propertyName]; + if (propertyValue) { + NSString *xmlString = [PicoConverter write:propertyValue withType:ps.propertyType config:self.config]; + if (xmlString.length > 0) { + [xmlWriter writeAttribute:ps.xmlName value:xmlString]; + } + } + } + } +} + + +-(void)writeValue:(XMLWriter *)xmlWriter source:(id)source schema:(PicoBindingSchema *)bindingSchema { + PicoPropertySchema *valuePs = bindingSchema.valueSchema; + if (valuePs) { + id propertyValue = [source valueForKey:valuePs.propertyName]; + NSString *xmlString = [PicoConverter write:propertyValue withType:valuePs.propertyType config:self.config]; + if (xmlString.length > 0) { + [xmlWriter writeCharacters:xmlString]; + } + } +} + +-(void)writeAnyElements:(XMLWriter *)xmlWriter source:(id)source schema:(PicoBindingSchema *)bindingSchema { + PicoPropertySchema *anyPs = bindingSchema.anyElementSchema; + if(anyPs) { + NSArray *anyArray = [source valueForKey: anyPs.propertyName]; + if (anyArray) { + for(id entry in anyArray) { + if (entry) { + if ([entry isMemberOfClass:[PicoXMLElement class]]) { + [self writePicoXMLElement:xmlWriter xmlElement:entry]; + } else if ([entry conformsToProtocol:@protocol(PicoBindable)]) { + [self writePicoObject:xmlWriter source:entry]; + } + } + } + } + } +} + +-(void)writePicoXMLElement:(XMLWriter *)xmlWriter xmlElement:(PicoXMLElement *)element { + if (!element) return; // to be cautious + if (element.name) { + NSString *namespace = element.nsUri; + if (namespace.length == 0) { + namespace = nil; + } + // automatic prefixing + if (namespace && ![xmlWriter getPrefix:namespace]) { + NSString *prefix = [NSString stringWithFormat:@"ns%d", _autoPrefixCount++]; + [xmlWriter setPrefix:prefix namespaceURI:namespace]; + } + [xmlWriter writeStartElementWithNamespace:namespace localName:element.name]; + if (element.attributes) { // write attributes + for(NSString *key in element.attributes) { + NSString *value = [element.attributes valueForKey:key]; + [xmlWriter writeAttribute:key value:value]; + } + } + if (element.value) { // write element text + [xmlWriter writeCharacters:element.value]; + } + if (element.children) { // write element children + for(PicoXMLElement *child in element.children) { + [self writePicoXMLElement:xmlWriter xmlElement:child]; + } + } + [xmlWriter writeEndElementWithNamespace:namespace localName:element.name]; + } +} + +-(void)writePicoObject:(XMLWriter *)xmlWriter source:(id)source { + if (!source) return; // to be cautious + PicoBindingSchema *bindingSchema = [PicoBindingSchema fromObject:source]; + PicoClassSchema *classSchema = [bindingSchema classSchema]; + NSString *xmlName = classSchema.xmlName; + NSString *namespace = classSchema.nsURI; + if (!xmlName) { // workaround, in case xml name is not provided in class schema, use class name instead + xmlName = bindingSchema.className; + } + + // automatic prefixing + if (namespace && ![xmlWriter getPrefix:namespace]) { + NSString *prefix = [NSString stringWithFormat:@"ns%d", _autoPrefixCount++]; + [xmlWriter setPrefix:prefix namespaceURI:namespace]; + } + [xmlWriter writeStartElementWithNamespace:namespace localName:xmlName]; + [self writeObject:xmlWriter source:source]; + [xmlWriter writeEndElementWithNamespace:namespace localName:xmlName]; +} + + +-(void)writeElements:(XMLWriter *)xmlWriter source:(id)source schema:(PicoBindingSchema *)bindingSchema namespace:(NSString *)nsURI { + NSDictionary *map = bindingSchema.property2ElementSchemaMapping; + if (map.count > 0) { + for(NSString *propertyName in map) { + PicoPropertySchema *ps = map[propertyName]; + id propertyValue = [source valueForKey:propertyName]; + if (propertyValue) { + if ([ps.propertyKind isEqualToString:PICO_KIND_ELEMENT]) { + [self writeElement:xmlWriter source:propertyValue schema:ps namespace:nsURI]; + } + // array elements + else if ([ps.propertyKind isEqualToString:PICO_KIND_ELEMENT_ARRAY]) { + NSArray *array = propertyValue; + for(id entry in array) { + if (entry) { + [self writeElement:xmlWriter source:entry schema:ps namespace:nsURI]; + } + } + } + } + } + } +} + +-(void)writeElement:(XMLWriter *)xmlWriter source:(id)source schema:(PicoPropertySchema *)propertySchema namespace:(NSString *)nsURI { + if (!source) return; + + if ([PicoConverter isPrimitive:propertySchema.propertyType]) { + NSString *xmlString = [PicoConverter write:source withType:propertySchema.propertyType config:self.config]; + if (xmlString.length > 0) { + [xmlWriter writeStartElementWithNamespace:nsURI localName:propertySchema.xmlName]; + [xmlWriter writeCharacters:xmlString]; + [xmlWriter writeEndElementWithNamespace:nsURI localName:propertySchema.xmlName]; + } + return; + } + + if ([propertySchema.propertyType isEqualToString:PICO_TYPE_OBJECT]) { + [xmlWriter writeStartElementWithNamespace:nsURI localName:propertySchema.xmlName]; + [self writeObject:xmlWriter source:source]; + [xmlWriter writeEndElementWithNamespace:nsURI localName:propertySchema.xmlName]; + } + +} + + + + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.h b/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.h new file mode 100644 index 0000000..8d7de36 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.h @@ -0,0 +1,40 @@ +// +// PicoBindingSchema.h +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@class PicoClassSchema; +@class PicoPropertySchema; +@interface PicoBindingSchema : NSObject { + +@private + PicoClassSchema *_classSchema; + NSMutableDictionary *_xml2AttributeSchemaMapping; + NSMutableDictionary *_xml2ElementSchemaMapping; + PicoPropertySchema *_valueSchema; + PicoPropertySchema *_anyElementSchema; + NSMutableDictionary *_property2ElementSchemaMapping; + NSMutableDictionary *_property2AttributeSchemaMapping; + NSString *_className; +} + +@property (nonatomic, readonly) PicoClassSchema *classSchema; +@property (nonatomic, readonly) NSMutableDictionary *xml2AttributeSchemaMapping; +@property (nonatomic, readonly) NSMutableDictionary *xml2ElementSchemaMapping; +@property (nonatomic, readonly) PicoPropertySchema *valueSchema; +@property (nonatomic, readonly) PicoPropertySchema *anyElementSchema; +@property (nonatomic, readonly) NSMutableDictionary *property2ElementSchemaMapping; +@property (nonatomic, readonly) NSMutableDictionary *property2AttributeSchemaMapping; +@property (nonatomic, readonly) NSString *className; + +-(instancetype)initWith: (Class)clazz NS_DESIGNATED_INITIALIZER; + ++(id)fromClass: (Class)clazz; ++(id)fromObject: (id)object; + +-(void)buildMapping:(NSMutableDictionary *)map; + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.m b/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.m new file mode 100644 index 0000000..591cd3f --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoBindingSchema.m @@ -0,0 +1,113 @@ +// +// PicoBindingSchema.m +// pico +// +// Created by bulldog on 13-2-25. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoBindingSchema.h" +#import "PicoConstants.h" +#import "PicoPropertySchema.h" +#import "PicoBindable.h" +#import "PicoCache.h" +#import "OrderedDictionary.h" + +@implementation PicoBindingSchema + +@synthesize classSchema = _classSchema; +@synthesize xml2AttributeSchemaMapping = _xml2AttributeSchemaMapping; +@synthesize xml2ElementSchemaMapping = _xml2ElementSchemaMapping; +@synthesize valueSchema = _valueSchema; +@synthesize anyElementSchema = _anyElementSchema; +@synthesize property2ElementSchemaMapping = _property2ElementSchemaMapping; +@synthesize property2AttributeSchemaMapping = _property2AttributeSchemaMapping; +@synthesize className = _className; + +static PicoCache *schemaCache = nil; + +static const int CACHE_SIZE = 100; + ++ (void) initialize { + schemaCache = [[PicoCache alloc] initWithCountLimit:CACHE_SIZE]; +} + +- (instancetype)init { + return self = [self initWith:[NSObject class]]; +} + +-(instancetype)initWith:(Class)clazz { + self = [super init]; + if (self != nil) { + + _xml2AttributeSchemaMapping = [[NSMutableDictionary alloc] init]; + _xml2ElementSchemaMapping = [[NSMutableDictionary alloc] init]; + _property2ElementSchemaMapping = [[OrderedDictionary alloc] init]; + _property2AttributeSchemaMapping = [[OrderedDictionary alloc] init]; + + _className = NSStringFromClass(clazz); + + if (![clazz conformsToProtocol:@protocol(PicoBindable)]) { + @throw [NSException exceptionWithName:@"BindingException" reason:[NSString stringWithFormat:@"class : %@ does not conform to PicoBindable protocol", self.className] userInfo:nil]; + } + + _classSchema = [clazz getClassMetaData]; + + NSMutableDictionary *propertyMetaDataMapping = [clazz getPropertyMetaData]; + + Class parentClazz = [clazz superclass]; + while (parentClazz != [NSObject class]) { + NSMutableDictionary *parentPropertyMetadataMapping = nil; + if ([parentClazz conformsToProtocol:@protocol(PicoBindable)]) { + parentPropertyMetadataMapping = [parentClazz getPropertyMetaData]; + [parentPropertyMetadataMapping addEntriesFromDictionary:propertyMetaDataMapping]; + propertyMetaDataMapping = parentPropertyMetadataMapping; + } else { + break; + } + parentClazz = [parentClazz superclass]; + } + + [self buildMapping:propertyMetaDataMapping]; + + } + return self; +} + ++(id)fromClass:(Class)clazz { + PicoBindingSchema *bindingSchema = [schemaCache objectForKey:clazz]; + if (bindingSchema == nil) { + bindingSchema = [[PicoBindingSchema alloc] initWith: clazz]; + [schemaCache setObject: bindingSchema forKey: clazz]; + } + return bindingSchema; +} + ++(id)fromObject:(id)object { + Class clazz = [object class]; + return [PicoBindingSchema fromClass:clazz]; +} + +-(void)buildMapping:(NSMutableDictionary *)map { + if (!map) return; + + for (NSString *propertyName in map) { + PicoPropertySchema *ps = map[propertyName]; + + if ([[ps propertyKind] isEqualToString:PICO_KIND_ATTRIBUTE]) { + _property2AttributeSchemaMapping[propertyName] = ps; + _xml2AttributeSchemaMapping[[ps xmlName]] = ps; + } else if ([[ps propertyKind] isEqualToString:PICO_KIND_ELEMENT] || + [[ps propertyKind] isEqualToString:PICO_KIND_ELEMENT_ARRAY]) { + _property2ElementSchemaMapping[propertyName] = ps; + _xml2ElementSchemaMapping[[ps xmlName]] = ps; + } else if ([[ps propertyKind] isEqualToString:PICO_KIND_VALUE]) { + _valueSchema = ps; + } else if ([[ps propertyKind] isEqualToString:PICO_KIND_ANY_ELEMENT]) { + _anyElementSchema = ps; + } + + } +} + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.h b/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.h new file mode 100644 index 0000000..da8add5 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.h @@ -0,0 +1,20 @@ +// +// PicoClassSchema.h +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import + +@interface PicoClassSchema : NSObject + +// xml name +@property (nonatomic, weak) NSString *xmlName; +// namespace URI +@property (nonatomic, weak) NSString *nsURI; + +-(instancetype)initWithXmlName:(NSString *)name nsUri: (NSString *)uri NS_DESIGNATED_INITIALIZER; + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.m b/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.m new file mode 100644 index 0000000..435d4c8 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoClassSchema.m @@ -0,0 +1,34 @@ +// +// PicoClassSchema.m +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoClassSchema.h" + +@implementation PicoClassSchema + +@synthesize xmlName = _xmlName; +@synthesize nsURI = _nsURI; + +- (instancetype)init { + return self = [self initWithXmlName:@"" nsUri:@""]; +} + +-(instancetype)initWithXmlName:(NSString *)name nsUri:(NSString *)uri { + self = [super init]; + if (self) { + self.xmlName = name; + self.nsURI = uri; + } + return self; +} + +-(void) dealloc { + self.xmlName = nil; + self.nsURI = nil; +} + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.h b/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.h new file mode 100644 index 0000000..69d13ea --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.h @@ -0,0 +1,26 @@ +// +// PicoPropertySchema.h +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import + +@interface PicoPropertySchema : NSObject + +// property kind +@property (nonatomic, weak) NSString *propertyKind; +// xml name +@property (nonatomic, weak) NSString *xmlName; +// property name +@property (nonatomic, weak) NSString *propertyName; +// property type +@property (nonatomic, weak) NSString *propertyType; +// class name of the type +@property (nonatomic, weak) Class clazz; + +-(instancetype)initWithKind: (NSString *)pKind xmlName: (NSString *)xName propertyName: (NSString *)proName type: (NSString *)pType clazz: (Class)clz NS_DESIGNATED_INITIALIZER; + +@end diff --git a/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.m b/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.m new file mode 100644 index 0000000..3a75f59 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/Schema/PicoPropertySchema.m @@ -0,0 +1,44 @@ +// +// PicoPropertySchema.m +// Pico +// +// Created by bulldog on 13-2-24. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoPropertySchema.h" + +@implementation PicoPropertySchema + +@synthesize propertyKind = _propertyKind; +@synthesize xmlName = _xmlName; +@synthesize propertyName = _propertyName; +@synthesize propertyType = _propertyType; +@synthesize clazz = _clazz; + +- (instancetype)init { + return self = [self initWithKind:@"" xmlName:@"" propertyName:@"" type:@"" clazz:[NSObject class]]; +} + +-(instancetype)initWithKind:(NSString *)pKind xmlName:(NSString *)xName propertyName:(NSString *)proName type:(NSString *)pType clazz:(Class)clz { + + self = [super init]; + if (self) { + self.propertyKind = pKind; + self.xmlName = xName; + self.propertyName = proName; + self.propertyType = pType; + self.clazz = clz; + } + return self; +} + +-(void)dealloc { + self.propertyKind = nil; + self.xmlName = nil; + self.propertyName = nil; + self.propertyType= nil; + self.clazz = nil; +} + +@end diff --git a/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.h b/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.h new file mode 100644 index 0000000..9673379 --- /dev/null +++ b/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.h @@ -0,0 +1,27 @@ +// +// PicoXMLElement.h +// pico +// +// Created by bulldog on 13-3-4. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +@interface PicoXMLElement : NSObject { + +@private + NSString *_name; // element name + NSString *_nsUri; // element namespace + NSString *_value; // element text if any + NSMutableArray *_children; // children of the element + NSDictionary *_attributes; // attributes of the element +} + +// nonretained +@property (nonatomic, weak) PicoXMLElement *parent; +@property (nonatomic, strong) NSString *name; +@property (nonatomic, strong) NSString *nsUri; +@property (nonatomic, strong) NSString *value; +@property (nonatomic, strong) NSMutableArray *children; +@property (nonatomic, strong) NSDictionary *attributes; + +@end diff --git a/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.m b/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.m new file mode 100644 index 0000000..5645dac --- /dev/null +++ b/Pods/PicoKit/Pod/Core/XMLSupport/PicoXMLElement.m @@ -0,0 +1,63 @@ +// +// PicoXMLElement.m +// pico +// +// Created by bulldog on 13-3-4. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLElement.h" + +@implementation PicoXMLElement + +@synthesize parent = _parent; +@synthesize name = _name; +@synthesize nsUri = _nsUri; +@synthesize value = _value; +@synthesize children = _children; +@synthesize attributes = _attributes; + +- (NSString *)descriptionWithIndent:(NSString *)indent { + + NSMutableString *s = [NSMutableString string]; + [s appendFormat:@"%@<%@", indent, _name]; + + for (NSString *attribute in _attributes) + [s appendFormat:@" %@=\"%@\"", attribute, _attributes[attribute]]; + + NSString *trimVal = [_value stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; + + if (trimVal.length > 25) + trimVal = [NSString stringWithFormat:@"%@…", [trimVal substringToIndex:25]]; + + if (_children.count) { + [s appendString:@">\n"]; + + NSString *childIndent = [indent stringByAppendingString:@" "]; + + if (trimVal.length) + [s appendFormat:@"%@%@\n", childIndent, trimVal]; + + for (PicoXMLElement *child in _children) + [s appendFormat:@"%@\n", [child descriptionWithIndent:childIndent]]; + + [s appendFormat:@"%@", indent, _name]; + } + else if (trimVal.length) { + [s appendFormat:@">%@", trimVal, _name]; + } + else [s appendString:@"/>"]; + + return s; +} + +- (NSString *)description { + return [self descriptionWithIndent:@""]; +} + +-(void)dealloc { + + self.parent = nil; +} + +@end diff --git a/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.h b/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.h new file mode 100644 index 0000000..f7fcb36 --- /dev/null +++ b/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.h @@ -0,0 +1,36 @@ +// +// OrderedDictionary.h +// OrderedDictionary +// +// Created by Matt Gallagher on 19/12/08. +// Copyright 2008 Matt Gallagher. All rights reserved. +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. Permission is granted to anyone to +// use this software for any purpose, including commercial applications, and to +// alter it and redistribute it freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source +// distribution. +// + +#import + +@interface OrderedDictionary : NSMutableDictionary +{ + NSMutableDictionary *dictionary; + NSMutableArray *array; +} + +- (void)insertObject:(id)anObject forKey:(id)aKey atIndex:(NSUInteger)anIndex; +- (id)keyAtIndex:(NSUInteger)anIndex; +@property (NS_NONATOMIC_IOSONLY, readonly, strong) NSEnumerator *reverseKeyEnumerator; + +@end diff --git a/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.m b/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.m new file mode 100644 index 0000000..5aa85c8 --- /dev/null +++ b/Pods/PicoKit/Pod/OrderedDictionary/OrderedDictionary.m @@ -0,0 +1,149 @@ +// +// OrderedDictionary.m +// OrderedDictionary +// +// Created by Matt Gallagher on 19/12/08. +// Copyright 2008 Matt Gallagher. All rights reserved. +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. Permission is granted to anyone to +// use this software for any purpose, including commercial applications, and to +// alter it and redistribute it freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source +// distribution. +// + +#import "OrderedDictionary.h" + +NSString *DescriptionForObject(NSObject *object, id locale, NSUInteger indent) +{ + NSString *objectString; + if ([object isKindOfClass:[NSString class]]) + { + objectString = (NSString *)object; + } + else if ([object respondsToSelector:@selector(descriptionWithLocale:indent:)]) + { + objectString = [(NSDictionary *)object descriptionWithLocale:locale indent:indent]; + } + else if ([object respondsToSelector:@selector(descriptionWithLocale:)]) + { + objectString = [(NSSet *)object descriptionWithLocale:locale]; + } + else + { + objectString = [object description]; + } + return objectString; +} + +@implementation OrderedDictionary + +- (instancetype)init +{ + self = [super init]; + if (self != nil) + { + dictionary = [[NSMutableDictionary alloc] initWithCapacity:0]; + array = [[NSMutableArray alloc] initWithCapacity:0]; + } + return self; +} + +- (instancetype)initWithCapacity:(NSUInteger)capacity +{ + self = [super init]; + if (self != nil) + { + dictionary = [[NSMutableDictionary alloc] initWithCapacity:capacity]; + array = [[NSMutableArray alloc] initWithCapacity:capacity]; + } + return self; +} + +- (id)copy +{ + return [self mutableCopy]; +} + +- (void)setObject:(id)anObject forKey:(id)aKey +{ + if (!dictionary[aKey]) + { + [array addObject:aKey]; + } + dictionary[aKey] = anObject; +} + +- (void)removeObjectForKey:(id)aKey +{ + [dictionary removeObjectForKey:aKey]; + [array removeObject:aKey]; +} + +- (NSUInteger)count +{ + return [dictionary count]; +} + +- (id)objectForKey:(id)aKey +{ + return dictionary[aKey]; +} + +- (NSEnumerator *)keyEnumerator +{ + return [array objectEnumerator]; +} + +- (NSEnumerator *)reverseKeyEnumerator +{ + return [array reverseObjectEnumerator]; +} + +- (void)insertObject:(id)anObject forKey:(id)aKey atIndex:(NSUInteger)anIndex +{ + if (dictionary[aKey]) + { + [self removeObjectForKey:aKey]; + } + [array insertObject:aKey atIndex:anIndex]; + dictionary[aKey] = anObject; +} + +- (id)keyAtIndex:(NSUInteger)anIndex +{ + return array[anIndex]; +} + +- (NSString *)descriptionWithLocale:(id)locale indent:(NSUInteger)level +{ + NSMutableString *indentString = [NSMutableString string]; + NSUInteger i, count = level; + for (i = 0; i < count; i++) + { + [indentString appendFormat:@" "]; + } + + NSMutableString *description = [NSMutableString string]; + [description appendFormat:@"%@{\n", indentString]; + for (NSObject *key in self) + { + [description appendFormat:@"%@ %@ = %@;\n", + indentString, + DescriptionForObject(key, locale, level), + DescriptionForObject(self[key], locale, level)]; + } + [description appendFormat:@"%@}\n", indentString]; + return description; +} + +@end diff --git a/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.h b/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.h new file mode 100644 index 0000000..ad6d0ad --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.h @@ -0,0 +1,19 @@ +// +// PicoSOAPReader.h +// Pico +// +// Created by bulldog on 13-3-13. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLReader.h" + +@interface PicoSOAPReader : PicoXMLReader + +// Convert binary data to soap object +-(id)fromData:(NSData *)data withSOAPClass:(Class)soapClazz innerClass:(Class)innerClazz; + +// Convert string to soap object +-(id)fromString:(NSString *)string withSOAPClass:(Class)clazz innerClass:(Class)innerClazz; + +@end diff --git a/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.m b/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.m new file mode 100644 index 0000000..9fe54da --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/PicoSOAPReader.m @@ -0,0 +1,120 @@ +// +// PicoSOAPReader.m +// Pico +// +// Created by bulldog on 13-3-13. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoSOAPReader.h" +#import "GDataXMLNode.h" +#import "PicoBindingSchema.h" +#import "PicoPropertySchema.h" +#import "PicoClassSchema.h" +#import "PicoConstants.h" +#import "PicoConverter.h" +#import "PicoXMLElement.h" +#import "SOAP11Envelope.h" +#import "SOAP12Envelope.h" +#import "SOAP11Body.h" +#import "SOAP12Body.h" +#import "SOAP11Fault.h" +#import "SOAP12Fault.h" + +#import "PicoXMLElement.h" + +@interface PicoXMLReader (Private) + +-(void)read:(id)value element:(GDataXMLElement *)element; + +-(void)readAnyElement:(id)value element:(GDataXMLElement *)element; + +-(BOOL)readAnyElement:(id)value element:(GDataXMLElement *)element bindClass:(Class) clazz; + +@end + + +@implementation PicoSOAPReader + +static NSString *SOAP11_NS = @"http://schemas.xmlsoap.org/soap/envelope/"; +static NSString *SOAP12_NS = @"http://www.w3.org/2003/05/soap-envelope"; + +static NSString *INNER_CLASS_KEY = @"innerClass"; + +// Convert binary data to object of specific class +-(id)fromData:(NSData *)data withSOAPClass:(Class)soapClazz innerClass:(Class)innerClazz { + + BOOL soap11 = (soapClazz == [SOAP11Envelope class]); + BOOL soap12 = (soapClazz == [SOAP12Envelope class]); + + if (!soap11 && !soap12) { + @throw [NSException exceptionWithName:@"ReaderException" reason:[NSString stringWithFormat:@"can't read non-soap class : %@", NSStringFromClass(soapClazz)] userInfo:nil]; + } + + NSError *error; + GDataXMLDocument *doc = [[GDataXMLDocument alloc] initWithData:data error:&error]; + + if (!doc) { + @throw [NSException exceptionWithName:@"ReaderException" reason:[NSString stringWithFormat:@"fail to parse xml data , Error : %@", error] userInfo:[error userInfo]]; + } + + GDataXMLElement *rootElement = [doc rootElement]; + PicoBindingSchema *bs = [PicoBindingSchema fromClass:soapClazz]; + PicoClassSchema *cs = bs.classSchema; + NSString *xmlName = cs.xmlName; + if ([xmlName length] == 0) { + xmlName = bs.className; + } + NSString *rootName = [rootElement localName]; + if (![xmlName isEqualToString: rootName]) { + @throw [NSException exceptionWithName:@"ReaderException" reason:[NSString stringWithFormat:@"root name mismatch , xml name : %@, root name : %@", xmlName, rootName] userInfo:nil]; + } + + // soap version check + NSString *soapNs = [rootElement URI]; + if (soap11 && [soapNs isEqualToString:SOAP12_NS]) { + @throw [NSException exceptionWithName:@"ReaderException" reason:@"Expecting SOAP 1.1 response, but got SOAP 1.2 response" userInfo:nil]; + } else if (soap12 && [soapNs isEqualToString:SOAP11_NS]) { + @throw [NSException exceptionWithName:@"ReaderException" reason:@"Expecting SOAP 1.2 response, but got SOAP 1.1 response" userInfo:nil]; + } + + NSMutableDictionary *threadDictionary = [[NSThread currentThread] threadDictionary]; + threadDictionary[INNER_CLASS_KEY] = innerClazz; + + id obj = [soapClazz new]; + + [super read: obj element: rootElement]; + + return obj; +} + +-(void)readAnyElement:(id)value element:(GDataXMLElement *)element { + PicoBindingSchema *bs = [PicoBindingSchema fromObject:value]; + PicoPropertySchema *anyPs = bs.anyElementSchema; + if (!anyPs) return; + + BOOL soap11 = [value isMemberOfClass:[SOAP11Body class]]; + BOOL soap12 = [value isMemberOfClass:[SOAP12Body class]]; + + if (soap11 || soap12) { + NSMutableDictionary *threadDictionary = [[NSThread currentThread] threadDictionary]; + Class innerClazz = threadDictionary[INNER_CLASS_KEY]; + + BOOL success = [super readAnyElement:value element:element bindClass:innerClazz]; + if (!success) { + Class faultClass = soap11? [SOAP11Fault class] : [SOAP12Fault class]; + [super readAnyElement:value element:element bindClass:faultClass]; + } + + } else { + [super readAnyElement:value element:element]; + } +} + +-(id)fromString:(NSString *)string withSOAPClass:(Class)clazz innerClass:(Class)innerClazz { + NSData *data = [string dataUsingEncoding: CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding)) allowLossyConversion:NO]; + + return [self fromData:data withSOAPClass:clazz innerClass:innerClazz]; +} + +@end diff --git a/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.h b/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.h new file mode 100644 index 0000000..12733d0 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.h @@ -0,0 +1,13 @@ +// +// PicoSOAPWriter.h +// Pico +// +// Created by bulldog on 13-3-14. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLWriter.h" + +@interface PicoSOAPWriter : PicoXMLWriter + +@end diff --git a/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.m b/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.m new file mode 100644 index 0000000..4222132 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/PicoSOAPWriter.m @@ -0,0 +1,114 @@ +// +// PicoSOAPWriter.m +// Pico +// +// Created by bulldog on 13-3-14. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoSOAPWriter.h" +#import "XMLWriter.h" +#import "PicoBindingSchema.h" +#import "PicoClassSchema.h" +#import "PicoConfig.h" +#import "SOAP11Envelope.h" +#import "SOAP12Envelope.h" +#import "SOAP11Body.h" +#import "SOAP12Body.h" + +@interface PicoXMLWriter (Private) + +-(void)writeObject:(XMLWriter *)xmlWriter source:(id)source; + +@end + +@implementation PicoSOAPWriter + +static NSString *SOAP_PREFIX = @"soapenv"; +static NSString *XSI_PREFIX = @"xsi"; +static NSString *XSI_NAMESPACE = @"http://www.w3.org/2001/XMLSchema-instance"; +static NSString *XSD_PREFIX = @"xsd"; +static NSString *XSD_NAMESPACE = @"http://www.w3.org/2001/XMLSchema"; + +-(NSString *)toString:(id)obj { + + if (obj == nil) { + @throw [NSException exceptionWithName:@"WriterException" reason:@"Can't write nil object." userInfo:nil]; + } + + if (![obj isMemberOfClass:[SOAP11Envelope class]] && ![obj isMemberOfClass:[SOAP12Envelope class]]) { + @throw [NSException exceptionWithName:@"WriterException" reason:[NSString stringWithFormat:@"can't write non-soap object of type : %@", NSStringFromClass([obj class])] userInfo:nil]; + } + + XMLWriter *xmlWriter = [[XMLWriter alloc] init]; + _autoPrefixCount = 0; + + [xmlWriter writeStartDocumentWithEncodingAndVersion:self.config.encoding version:@"1.0"]; + + + PicoBindingSchema *bindingSchema = [PicoBindingSchema fromObject:obj]; + PicoClassSchema *classSchema = [bindingSchema classSchema]; + NSString *xmlName = classSchema.xmlName; + NSString *namespace = classSchema.nsURI; + + // set soap prefix + [xmlWriter setPrefix:SOAP_PREFIX namespaceURI:namespace]; + [xmlWriter setPrefix:XSI_PREFIX namespaceURI:XSI_NAMESPACE]; + [xmlWriter setPrefix:XSD_PREFIX namespaceURI:XSD_NAMESPACE]; + + NSString *innerNamespace = [self findInnerClassNamespace:obj]; + // set default namespace without prefix + if (innerNamespace.length > 0 && ![xmlWriter getPrefix:innerNamespace]) { + [xmlWriter setDefaultNamespace:innerNamespace]; + } + + [xmlWriter writeStartElementWithNamespace:namespace localName:xmlName]; + + [super writeObject:xmlWriter source:obj]; + + [xmlWriter writeEndElementWithNamespace:namespace localName:xmlName]; + + [xmlWriter writeEndDocument]; + + NSString *xmlString = [xmlWriter toString]; + xmlString = [NSMutableString stringWithString:xmlString]; + + return xmlString; + +} + +-(NSString *) findInnerClassNamespace:(id)obj { + id innerObj = nil; + if ([obj isMemberOfClass:[SOAP11Envelope class]]) { + SOAP11Envelope *soap11Envelope = obj; + SOAP11Body *soap11Body = soap11Envelope.body; + if (soap11Body && soap11Body.any.count > 0) { + innerObj = (soap11Body.any)[0]; + } + } else { //soap 12 + SOAP12Envelope *soap12Envelope = obj; + SOAP12Body *soap12Body = soap12Envelope.body; + if (soap12Body && soap12Body.any.count > 0) { + innerObj = (soap12Body.any)[0]; + } + } + if (innerObj) { + PicoBindingSchema *innerBindingSchema = [PicoBindingSchema fromObject:innerObj]; + PicoClassSchema *innerClassSchema = [innerBindingSchema classSchema]; + NSString *innerNamespace = innerClassSchema.nsURI; + return innerNamespace; + } + return nil; +} + +-(NSData *)toData:(id)obj { + + NSString *xmlString = [self toString:obj]; + + NSData *data = [xmlString dataUsingEncoding: CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding)) allowLossyConversion:NO]; + + return data; + +} + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.h b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.h new file mode 100644 index 0000000..91aa922 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.h @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP11Body : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.m b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.m new file mode 100644 index 0000000..9352458 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Body.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP11Body.h" +#import "OrderedDictionary.h" + +@implementation SOAP11Body + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Body" nsUri:@"http://schemas.xmlsoap.org/soap/envelope/"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.h b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.h new file mode 100644 index 0000000..81aabd3 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.h @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP11Detail : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.m b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.m new file mode 100644 index 0000000..fc5c517 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Detail.m @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP11Detail.h" +#import "OrderedDictionary.h" + +@implementation SOAP11Detail + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.h b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.h new file mode 100644 index 0000000..50add06 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.h @@ -0,0 +1,51 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP11Header; +@class SOAP11Body; + +/** + (public class) + +*/ +@interface SOAP11Envelope : NSObject { + +@private + SOAP11Header *_header; + SOAP11Body *_body; + NSMutableArray *_any; + +} + + +/** + (public property) + + type : class SOAP11Header +*/ +@property (nonatomic, strong) SOAP11Header *header; + +/** + (public property) + + type : class SOAP11Body +*/ +@property (nonatomic, strong) SOAP11Body *body; + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.m b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.m new file mode 100644 index 0000000..60c8a49 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Envelope.m @@ -0,0 +1,42 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP11Envelope.h" +#import "SOAP11Header.h" +#import "SOAP11Body.h" +#import "OrderedDictionary.h" + +@implementation SOAP11Envelope + +@synthesize header = _header; +@synthesize body = _body; +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Envelope" nsUri:@"http://schemas.xmlsoap.org/soap/envelope/"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Header" propertyName:@"header" type:PICO_TYPE_OBJECT clazz:[SOAP11Header class]]; + map[@"header"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Body" propertyName:@"body" type:PICO_TYPE_OBJECT clazz:[SOAP11Body class]]; + map[@"body"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.h b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.h new file mode 100644 index 0000000..dc32b4d --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.h @@ -0,0 +1,59 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP11Detail; + +/** + + Fault reporting structure + + +*/ +@interface SOAP11Fault : NSObject { + +@private + NSString *_faultcode; + NSString *_faultstring; + NSString *_faultactor; + SOAP11Detail *_detail; + +} + + +/** + (public property) + + type : NSString, wrapper for primitive qname +*/ +@property (nonatomic, strong) NSString *faultcode; + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *faultstring; + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *faultactor; + +/** + (public property) + + type : class SOAP11Detail +*/ +@property (nonatomic, strong) SOAP11Detail *detail; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.m b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.m new file mode 100644 index 0000000..27337c2 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Fault.m @@ -0,0 +1,44 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP11Fault.h" +#import "SOAP11Detail.h" +#import "OrderedDictionary.h" + +@implementation SOAP11Fault + +@synthesize faultcode = _faultcode; +@synthesize faultstring = _faultstring; +@synthesize faultactor = _faultactor; +@synthesize detail = _detail; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Fault" nsUri:@"http://schemas.xmlsoap.org/soap/envelope/"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"faultcode" propertyName:@"faultcode" type:PICO_TYPE_QNAME clazz:nil]; + map[@"faultcode"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"faultstring" propertyName:@"faultstring" type:PICO_TYPE_STRING clazz:nil]; + map[@"faultstring"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"faultactor" propertyName:@"faultactor" type:PICO_TYPE_STRING clazz:nil]; + map[@"faultactor"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"detail" propertyName:@"detail" type:PICO_TYPE_OBJECT clazz:[SOAP11Detail class]]; + map[@"detail"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.h b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.h new file mode 100644 index 0000000..eb7740a --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.h @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP11Header : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.m b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.m new file mode 100644 index 0000000..fa7da2e --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP11/SOAP11Header.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP11Header.h" +#import "OrderedDictionary.h" + +@implementation SOAP11Header + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Header" nsUri:@"http://schemas.xmlsoap.org/soap/envelope/"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.h new file mode 100644 index 0000000..0ae5957 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.h @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP12Body : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.m new file mode 100644 index 0000000..5bae2c3 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Body.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Body.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Body + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Body" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.h new file mode 100644 index 0000000..4983fbd --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.h @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP12Detail : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.m new file mode 100644 index 0000000..1170a8d --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Detail.m @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Detail.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Detail + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.h new file mode 100644 index 0000000..76e7573 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.h @@ -0,0 +1,42 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12Body; +@class SOAP12Header; + +/** + (public class) + +*/ +@interface SOAP12Envelope : NSObject { + +@private + SOAP12Header *_header; + SOAP12Body *_body; + +} + + +/** + (public property) + + type : class SOAP12Header +*/ +@property (nonatomic, strong) SOAP12Header *header; + +/** + (public property) + + type : class SOAP12Body +*/ +@property (nonatomic, strong) SOAP12Body *body; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.m new file mode 100644 index 0000000..b038710 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Envelope.m @@ -0,0 +1,39 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Envelope.h" +#import "SOAP12Body.h" +#import "SOAP12Header.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Envelope + +@synthesize header = _header; +@synthesize body = _body; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Envelope" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Header" propertyName:@"header" type:PICO_TYPE_OBJECT clazz:[SOAP12Header class]]; + map[@"header"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Body" propertyName:@"body" type:PICO_TYPE_OBJECT clazz:[SOAP12Body class]]; + map[@"body"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.h new file mode 100644 index 0000000..ec9d38e --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.h @@ -0,0 +1,69 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12Faultreason; +@class SOAP12Detail; +@class SOAP12Faultcode; + +/** + + Fault reporting structure + + +*/ +@interface SOAP12Fault : NSObject { + +@private + SOAP12Faultcode *_code; + SOAP12Faultreason *_reason; + NSString *_node; + NSString *_role; + SOAP12Detail *_detail; + +} + + +/** + (public property) + + type : class SOAP12Faultcode +*/ +@property (nonatomic, strong) SOAP12Faultcode *code; + +/** + (public property) + + type : class SOAP12Faultreason +*/ +@property (nonatomic, strong) SOAP12Faultreason *reason; + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *node; + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *role; + +/** + (public property) + + type : class SOAP12Detail +*/ +@property (nonatomic, strong) SOAP12Detail *detail; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.m new file mode 100644 index 0000000..7d79728 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Fault.m @@ -0,0 +1,49 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Fault.h" +#import "SOAP12Faultreason.h" +#import "SOAP12Detail.h" +#import "SOAP12Faultcode.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Fault + +@synthesize code = _code; +@synthesize reason = _reason; +@synthesize node = _node; +@synthesize role = _role; +@synthesize detail = _detail; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Fault" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Code" propertyName:@"code" type:PICO_TYPE_OBJECT clazz:[SOAP12Faultcode class]]; + map[@"code"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Reason" propertyName:@"reason" type:PICO_TYPE_OBJECT clazz:[SOAP12Faultreason class]]; + map[@"reason"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Node" propertyName:@"node" type:PICO_TYPE_STRING clazz:nil]; + map[@"node"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Role" propertyName:@"role" type:PICO_TYPE_STRING clazz:nil]; + map[@"role"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Detail" propertyName:@"detail" type:PICO_TYPE_OBJECT clazz:[SOAP12Detail class]]; + map[@"detail"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.h new file mode 100644 index 0000000..43123f0 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.h @@ -0,0 +1,41 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12Subcode; + +/** + (public class) + +*/ +@interface SOAP12Faultcode : NSObject { + +@private + NSString *_value; + SOAP12Subcode *_subcode; + +} + + +/** + (public property) + + type: string constant in SOAP12FaultcodeEnum.h +*/ +@property (nonatomic, strong) NSString *value; + +/** + (public property) + + type : class SOAP12Subcode +*/ +@property (nonatomic, strong) SOAP12Subcode *subcode; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.m new file mode 100644 index 0000000..2e028ab --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultcode.m @@ -0,0 +1,37 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Faultcode.h" +#import "SOAP12Subcode.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Faultcode + +@synthesize value = _value; +@synthesize subcode = _subcode; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Value" propertyName:@"value" type:PICO_TYPE_ENUM clazz:nil]; + map[@"value"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Subcode" propertyName:@"subcode" type:PICO_TYPE_OBJECT clazz:[SOAP12Subcode class]]; + map[@"subcode"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h new file mode 100644 index 0000000..f77f53c --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h @@ -0,0 +1,15 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import + + +extern NSString *const SOAP12FaultcodeEnum_TNS_DATA_ENCODING_UNKNOWN; + +extern NSString *const SOAP12FaultcodeEnum_TNS_MUST_UNDERSTAND; + +extern NSString *const SOAP12FaultcodeEnum_TNS_RECEIVER; + +extern NSString *const SOAP12FaultcodeEnum_TNS_SENDER; + +extern NSString *const SOAP12FaultcodeEnum_TNS_VERSION_MISMATCH; diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m new file mode 100644 index 0000000..52a2a8f --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m @@ -0,0 +1,15 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import "SOAP12FaultcodeEnum.h" + + +NSString *const SOAP12FaultcodeEnum_TNS_DATA_ENCODING_UNKNOWN = @"tns:DataEncodingUnknown"; + +NSString *const SOAP12FaultcodeEnum_TNS_MUST_UNDERSTAND = @"tns:MustUnderstand"; + +NSString *const SOAP12FaultcodeEnum_TNS_RECEIVER = @"tns:Receiver"; + +NSString *const SOAP12FaultcodeEnum_TNS_SENDER = @"tns:Sender"; + +NSString *const SOAP12FaultcodeEnum_TNS_VERSION_MISMATCH = @"tns:VersionMismatch"; diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.h new file mode 100644 index 0000000..6f3361e --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.h @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12Reasontext; + +/** + (public class) + +*/ +@interface SOAP12Faultreason : NSObject { + +@private + NSMutableArray *_text; + +} + + +/** + (public property) + + entry type : class SOAP12Reasontext +*/ + +@property (nonatomic, strong) NSMutableArray *text; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.m new file mode 100644 index 0000000..5e9e2e4 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Faultreason.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Faultreason.h" +#import "SOAP12Reasontext.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Faultreason + +@synthesize text = _text; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT_ARRAY xmlName:@"Text" propertyName:@"text" type:PICO_TYPE_OBJECT clazz:[SOAP12Reasontext class]]; + map[@"text"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.h new file mode 100644 index 0000000..5e7f345 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.h @@ -0,0 +1,35 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + + Elements replacing the wildcard MUST be namespace qualified, but can be in the targetNamespace + + +*/ +@interface SOAP12Header : NSObject { + +@private + NSMutableArray *_any; + +} + + +/** + (public property) + + entry type : PicoAnyElement, wrapper for primitive anyelement +*/ + +@property (nonatomic, strong) NSMutableArray *any; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.m new file mode 100644 index 0000000..8dfa8ed --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Header.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Header.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Header + +@synthesize any = _any; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Header" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil]; + map[@"any"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h new file mode 100644 index 0000000..c5d4028 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h @@ -0,0 +1,32 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP12NotUnderstoodType : NSObject { + +@private + NSString *_qname; + +} + + +/** + (public property) + + type : NSString, wrapper for primitive qname +*/ +@property (nonatomic, strong) NSString *qname; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m new file mode 100644 index 0000000..9274dd4 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12NotUnderstoodType.h" +#import "OrderedDictionary.h" + +@implementation SOAP12NotUnderstoodType + +@synthesize qname = _qname; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"NotUnderstood" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ATTRIBUTE xmlName:@"qname" propertyName:@"qname" type:PICO_TYPE_QNAME clazz:nil]; + map[@"qname"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.h new file mode 100644 index 0000000..23b8e5c --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.h @@ -0,0 +1,40 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP12Reasontext : NSObject { + +@private + NSString *_value; + NSString *_lang; + +} + + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *value; + +/** + (public property) + + type : NSString, wrapper for primitive string +*/ +@property (nonatomic, strong) NSString *lang; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.m new file mode 100644 index 0000000..6eef2f4 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Reasontext.m @@ -0,0 +1,36 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Reasontext.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Reasontext + +@synthesize value = _value; +@synthesize lang = _lang; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_VALUE xmlName:nil propertyName:@"value" type:PICO_TYPE_STRING clazz:nil]; + map[@"value"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ATTRIBUTE xmlName:@"lang" propertyName:@"lang" type:PICO_TYPE_STRING clazz:nil]; + map[@"lang"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.h new file mode 100644 index 0000000..5e01763 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.h @@ -0,0 +1,41 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12Subcode; + +/** + (public class) + +*/ +@interface SOAP12Subcode : NSObject { + +@private + NSString *_value; + SOAP12Subcode *_subcode; + +} + + +/** + (public property) + + type : NSString, wrapper for primitive qname +*/ +@property (nonatomic, strong) NSString *value; + +/** + (public property) + + type : class SOAP12Subcode +*/ +@property (nonatomic, strong) SOAP12Subcode *subcode; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.m new file mode 100644 index 0000000..779aace --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12Subcode.m @@ -0,0 +1,37 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12Subcode.h" +#import "SOAP12Subcode.h" +#import "OrderedDictionary.h" + +@implementation SOAP12Subcode + +@synthesize value = _value; +@synthesize subcode = _subcode; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Value" propertyName:@"value" type:PICO_TYPE_QNAME clazz:nil]; + map[@"value"] = ps; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Subcode" propertyName:@"subcode" type:PICO_TYPE_OBJECT clazz:[SOAP12Subcode class]]; + map[@"subcode"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h new file mode 100644 index 0000000..c6b8334 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h @@ -0,0 +1,32 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + + +/** + (public class) + +*/ +@interface SOAP12SupportedEnvType : NSObject { + +@private + NSString *_qname; + +} + + +/** + (public property) + + type : NSString, wrapper for primitive qname +*/ +@property (nonatomic, strong) NSString *qname; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m new file mode 100644 index 0000000..72ca5a6 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m @@ -0,0 +1,33 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12SupportedEnvType.h" +#import "OrderedDictionary.h" + +@implementation SOAP12SupportedEnvType + +@synthesize qname = _qname; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + return nil; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ATTRIBUTE xmlName:@"qname" propertyName:@"qname" type:PICO_TYPE_QNAME clazz:nil]; + map[@"qname"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.h b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.h new file mode 100644 index 0000000..6a9b52b --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.h @@ -0,0 +1,34 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoConstants.h" +#import "PicoBindable.h" + + +@class SOAP12SupportedEnvType; + +/** + (public class) + +*/ +@interface SOAP12UpgradeType : NSObject { + +@private + NSMutableArray *_supportedEnvelope; + +} + + +/** + (public property) + + entry type : class SOAP12SupportedEnvType +*/ + +@property (nonatomic, strong) NSMutableArray *supportedEnvelope; + + +@end diff --git a/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.m b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.m new file mode 100644 index 0000000..cb3d5b2 --- /dev/null +++ b/Pods/PicoKit/Pod/SOAP/SOAP12/SOAP12UpgradeType.m @@ -0,0 +1,35 @@ +// Generated by xsd compiler for ios/objective-c +// DO NOT CHANGE! + +#import +#import "SOAP12UpgradeType.h" +#import "SOAP12SupportedEnvType.h" +#import "OrderedDictionary.h" + +@implementation SOAP12UpgradeType + +@synthesize supportedEnvelope = _supportedEnvelope; + +// class meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(PicoClassSchema *)getClassMetaData { + PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Upgrade" nsUri:@"http://www.w3.org/2003/05/soap-envelope"]; + return cs; +} + +// property meta-data method +// note: this method is only for internal use, DO NOT CHANGE! ++(NSMutableDictionary *)getPropertyMetaData { + NSMutableDictionary *map = [OrderedDictionary dictionary]; + + PicoPropertySchema *ps = nil; + ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT_ARRAY xmlName:@"SupportedEnvelope" propertyName:@"supportedEnvelope" type:PICO_TYPE_OBJECT clazz:[SOAP12SupportedEnvType class]]; + map[@"supportedEnvelope"] = ps; + + return map; +} + + + + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoSOAPClient.h b/Pods/PicoKit/Pod/WebService/PicoSOAPClient.h new file mode 100644 index 0000000..f2ac6d4 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoSOAPClient.h @@ -0,0 +1,72 @@ +// +// PicoSOAPClient.h +// Pico +// +// Created by bulldog on 13-3-15. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import +#import "PicoBindable.h" +#import "PicoSOAPRequestOperation.h" +#import "PicoConfig.h" + +@interface PicoSOAPClient : AFHTTPRequestOperationManager + +/** + Target endpoint url, mandatory + */ +@property (readonly, nonatomic, strong) NSURL *endpointURL; + +/** + SOAP version used, default to SOAP11 + */ +@property (readwrite, nonatomic, assign) PicoSOAPVersion soapVersion; + +/** + Should request/response be output for debugging + */ +@property (readwrite, nonatomic, assign) BOOL debug; + +/** + Configurations like encoding, date/number formatter, etc. + Defaults will be used if not set explicitly. + */ +@property (readwrite, nonatomic, strong) PicoConfig *config; + +/** + Custom soap headers, following types are acceptable in the array: + 1. class conforms to `PicoBindable` protocol + 2. `PicoXMLElement` class + */ +@property (readwrite, nonatomic, strong) NSMutableArray *customSoapHeaders; + +/** + Additional parameters that will be appended as query string at the end of the request url + */ +@property (readwrite, nonatomic, strong) NSMutableDictionary *additionalParameters; + +/** + HTTP request timeout settting + */ +@property (readwrite, nonatomic, assign) NSTimeInterval timeoutInverval; + +/** + + */ +- (instancetype)initWithEndpointURL:(NSURL *)URL NS_DESIGNATED_INITIALIZER; + +- (void) setDefaultHeader:(NSString*)header value:(NSString*)value; + +- (PicoSOAPRequestOperation *)PicoSOAPRequestOperationWithRequest:(NSURLRequest *)request + success:(void (^)(PicoSOAPRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoSOAPRequestOperation *operation, NSError *error))failure; + +/** + + */ +- (void)invoke:(id)requestObject responseClass:(Class)responseClazz + success:(void (^)(PicoSOAPRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoSOAPRequestOperation *operation, NSError *error, id soapFault))failure; + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoSOAPClient.m b/Pods/PicoKit/Pod/WebService/PicoSOAPClient.m new file mode 100644 index 0000000..a5bc4f1 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoSOAPClient.m @@ -0,0 +1,206 @@ +// +// PicoSOAPClient.m +// Pico +// +// Created by bulldog on 13-3-15. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoSOAPClient.h" +#import "SOAP11Fault.h" +#import "SOAP12Fault.h" +#import "PicoSOAPWriter.h" +#import "SOAP11Envelope.h" +#import "SOAP11Body.h" +#import "SOAP12Envelope.h" +#import "SOAP12Body.h" +#import "SOAP11Header.h" +#import "SOAP12Header.h" + +enum { + PicoSOAPParameterEncoding = 10 +}; + +@interface PicoSOAPClient () + +@property (readwrite, nonatomic, strong) NSURL *endpointURL; + +@end + +@implementation PicoSOAPClient + +@synthesize endpointURL = _endpointURL; +@synthesize soapVersion = _soapVersion; +@synthesize debug = _debug; +@synthesize config = _config; +@synthesize customSoapHeaders = _customSoapHeaders; +@synthesize additionalParameters = _additionalParameters; + +- (instancetype)initWithEndpointURL:(NSURL *)URL { + NSParameterAssert(URL); + + self = [super initWithBaseURL:URL]; + if (!self) { + return nil; + } + + self.soapVersion = SOAP11; // defaut to soap 11 + + _config = [[PicoConfig alloc] init]; // default config + + self.responseSerializer = [AFHTTPResponseSerializer serializer]; + [self setDefaultHeader:@"Accept" value:@"text/xml"]; + [self setDefaultHeader:@"Content-Type" value:@"text/xml"]; + + self.endpointURL = URL; + + self.timeoutInverval = 60; + + return self; +} + +- (instancetype)initWithBaseURL:(NSURL *)url { + return [self initWithEndpointURL:url]; +} + +- (void) setDefaultHeader:(NSString*)header value:(NSString*)value { + [self.requestSerializer setValue:value forHTTPHeaderField:header]; +} + +- (PicoSOAPRequestOperation *)PicoSOAPRequestOperationWithRequest:(NSURLRequest *)request + success:(void (^)(PicoSOAPRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoSOAPRequestOperation *operation, NSError *error))failure { + PicoSOAPRequestOperation *operation = [[PicoSOAPRequestOperation alloc] initWithRequest:request]; + operation.responseSerializer = self.responseSerializer; + operation.shouldUseCredentialStorage = self.shouldUseCredentialStorage; + operation.credential = self.credential; + operation.securityPolicy = self.securityPolicy; + + [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + success((PicoSOAPRequestOperation*)operation, responseObject); + } failure:^(AFHTTPRequestOperation *operation, NSError *error) { + failure((PicoSOAPRequestOperation*)operation, error); + }]; + + operation.completionQueue = self.completionQueue; + operation.completionGroup = self.completionGroup; + + operation.soapVersion = self.soapVersion; + operation.debug = self.debug; + operation.config = self.config; + + return operation; +} + +- (void)invoke:(id)requestObject responseClass:(Class)responseClazz + success:(void (^)(PicoSOAPRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoSOAPRequestOperation *operation, NSError *error, id soapFault))failure { + + NSParameterAssert(self.config); + + @try { + NSMutableURLRequest *request = [self requestWithMethod:@"POST" requestObject:requestObject]; + request.timeoutInterval = self.timeoutInverval; + + PicoSOAPRequestOperation *picoOperation = [self PicoSOAPRequestOperationWithRequest:request success:^(PicoSOAPRequestOperation *operation, id responseObject) { + + if (responseObject) { + if ([responseObject isMemberOfClass:[SOAP11Fault class]] || [responseObject isMemberOfClass:[SOAP12Fault class]]) { + if (failure) { + failure(operation, nil, responseObject); // soap fault + } + } else { + if (success) { + success(operation, responseObject); + } + } + } else { + if (failure) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Empty response" forKey:NSLocalizedDescriptionKey]; + NSError *error = [NSError errorWithDomain:PicoErrorDomain code:ReaderError userInfo:userInfo]; + failure(operation, error, nil); + } + } + } failure:^(PicoSOAPRequestOperation *operation, NSError *error) { + if (failure) { + failure(operation, error, nil); + } + }]; + + picoOperation.responseClazz = responseClazz; + + if (self.debug) { + NSLog(@"Request HTTP Headers : \n%@", [request allHTTPHeaderFields]); + } + + [self.operationQueue addOperation:picoOperation]; + + } @catch (NSException* ex) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Error to build request" forKey:NSLocalizedDescriptionKey]; + [userInfo setValue:ex.reason forKey:NSLocalizedFailureReasonErrorKey]; + [userInfo setValue:ex forKey:NSUnderlyingErrorKey]; + NSError *error = [NSError errorWithDomain:PicoErrorDomain code:WriterError userInfo:userInfo]; + if (self.debug) { + NSLog(@"Error to build request : \n%@", [error localizedDescription]); + } + if (failure) { + failure(nil, error, nil); + } + return; + } +} + +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method requestObject:(id)requestObject { + NSAssert(requestObject != nil, @"Expect non-nil request object"); + NSAssert([[requestObject class] conformsToProtocol:@protocol(PicoBindable)], @"Expect request object conforms to PicoBindable protocol"); + + NSMutableURLRequest *request = [self.requestSerializer requestWithMethod:method + URLString:self.endpointURL.absoluteString + parameters:self.additionalParameters + error:nil]; + if (self.debug) { + NSLog(@"Sending request to : %@", request.URL.absoluteString); + } + + PicoSOAPWriter *soapWriter = [[PicoSOAPWriter alloc] initWithConfig:self.config]; + + // marshall to soap message + NSData *soapData = nil; + if (self.soapVersion == SOAP11) { + SOAP11Envelope *soap11Envelope = [[SOAP11Envelope alloc] init]; + SOAP11Body *soap11Body = [[SOAP11Body alloc] init]; + soap11Envelope.body = soap11Body; + soap11Envelope.body.any = [NSMutableArray arrayWithObject:requestObject]; + if (self.customSoapHeaders.count > 0) { + SOAP11Header *soap11Header = [[SOAP11Header alloc] init]; + soap11Header.any = self.customSoapHeaders; + soap11Envelope.header = soap11Header; + } + soapData = [soapWriter toData:soap11Envelope]; + } else { + SOAP12Envelope *soap12Envelope = [[SOAP12Envelope alloc] init]; + SOAP12Body *soap12Body = [[SOAP12Body alloc] init]; + soap12Envelope.body = soap12Body; + soap12Envelope.body.any = [NSMutableArray arrayWithObject:requestObject]; + if (self.customSoapHeaders.count > 0) { + SOAP12Header *soap12Header = [[SOAP12Header alloc] init]; + soap12Header.any = self.customSoapHeaders; + soap12Envelope.header = soap12Header; + } + soapData = [soapWriter toData:soap12Envelope]; + } + + NSAssert(soapData != nil, @"Expect success soap marshalling"); + + if (self.debug) { + NSLog(@"Request message:"); + NSString *message = [[NSString alloc] initWithData:soapData encoding:CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding))]; + NSLog(@"%@", message); + } + + request.HTTPBody = soapData; + + return request; +} + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.h b/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.h new file mode 100644 index 0000000..9e538b5 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.h @@ -0,0 +1,71 @@ +// +// PicoRequestOperation.h +// Pico +// +// Created by bulldog on 13-3-15. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import +#import "PicoConstants.h" +#import "PicoConfig.h" + +/** + `PicoSOAPRequestOperation` is a subclass of `AFHTTPRequestOperation` for Pico SOAP binding support. + + ## Acceptable Content Types + + By default, `PicoSOAPRequestOperation` accepts the following MIME types, which includes the official standard, `application/soap+xml`, as well as other commonly-used types: + + - `application/soap+xml` + - `text/xml` + */ +@interface PicoSOAPRequestOperation : AFHTTPRequestOperation + +///---------------------------- +/// @name Getting Response Data +///---------------------------- + +/** + A Pico bindable object constructed from the response data. If an error occurs while parsing, `nil` will be returned, and the `error` property will be set to the error. + */ +@property (readonly, nonatomic, strong) id responseObj; + +/** + Target Pico binding class + */ +@property (readwrite, nonatomic, strong) Class responseClazz; + +/** + SOAP version + */ +@property (readwrite, nonatomic, assign) PicoSOAPVersion soapVersion; + +/** + output debug info, such as response soap message + */ +@property (readwrite, nonatomic, assign) BOOL debug; + +/** + Configurations like encoding, date/number formatter, etc + */ +@property (readwrite, nonatomic, strong) PicoConfig *config; + +///---------------------------------- +/// @name Creating Request Operations +///---------------------------------- + +/** + Creates and returns an `PicoRequestOperation` object and sets the specified success and failure callbacks. + + @param urlRequest The request object to be loaded asynchronously during execution of the operation + @param success A block object to be executed when the operation finishes successfully. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the Pico bindable object created from the response data of request. + @param failure A block object to be executed when the operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as Pico bindable. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the error describing the network or parsing error that occurred. + + @return A new Pico request operation + */ +//+ (PicoSOAPRequestOperation *)PicoRequestOperationWithRequest:(NSURLRequest *)urlRequest +// success:(void (^)(NSURLRequest *request, NSHTTPURLResponse *response, id responseObj))success +// failure:(void (^)(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id responseObj))failure; + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.m b/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.m new file mode 100644 index 0000000..9e29089 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoSOAPRequestOperation.m @@ -0,0 +1,142 @@ +// +// PicoRequestOperation.m +// Pico +// +// Created by bulldog on 13-3-15. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoSOAPRequestOperation.h" +#import "PicoSOAPReader.h" +#import "SOAP11Envelope.h" +#import "SOAP12Envelope.h" +#import "SOAP11Body.h" +#import "SOAP12Body.h" + +static dispatch_queue_t ls_soap_request_operation_processing_queue; +static dispatch_queue_t soap_request_operation_processing_queue() { + if (ls_soap_request_operation_processing_queue == NULL) { + ls_soap_request_operation_processing_queue = dispatch_queue_create("com.leansoft.pico.networking.soap-request.processing", 0); + } + + return ls_soap_request_operation_processing_queue; +} + +@interface PicoSOAPRequestOperation () +@property (readwrite, nonatomic, strong) NSError *PicoError; +@property (readwrite, nonatomic, strong) id responseObj; +@end + +@implementation PicoSOAPRequestOperation + +@synthesize responseObj = _responseObj; +@synthesize PicoError = _PicoError; +@synthesize responseClazz = _responseClazz; +@synthesize soapVersion = _soapVersion; +@synthesize debug = _debug; +@synthesize config = _config; + +-(id)responseObj { + if (!_responseObj && [self isFinished] && [self.responseData length] > 0 && !self.PicoError) { + + if (self.debug) { + NSLog(@"Response message : "); + NSString *message = [[NSString alloc] initWithData:self.responseData encoding:CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding))]; + NSLog(@"%@", message); + } + + PicoSOAPReader *soapReader = nil; + @try { + // unmarshall to object + soapReader = [[PicoSOAPReader alloc] initWithConfig:self.config]; + if (self.soapVersion == SOAP11) { + SOAP11Envelope *soap11Envelope = [soapReader fromData:self.responseData withSOAPClass:[SOAP11Envelope class] innerClass:self.responseClazz]; + if (soap11Envelope && soap11Envelope.body && soap11Envelope.body.any.count > 0) { + self.responseObj = (soap11Envelope.body.any)[0]; + } + } else { + SOAP12Envelope *soap12Envelope = [soapReader fromData:self.responseData withSOAPClass:[SOAP12Envelope class] innerClass:self.responseClazz]; + if (soap12Envelope && soap12Envelope.body && soap12Envelope.body.any.count > 0) { + self.responseObj = (soap12Envelope.body.any)[0]; + } + } + } @catch (NSException *ex) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Error to read soap response" forKey:NSLocalizedDescriptionKey]; + [userInfo setValue:ex.reason forKey:NSLocalizedFailureReasonErrorKey]; + [userInfo setValue:ex forKey:NSUnderlyingErrorKey]; + self.PicoError = [NSError errorWithDomain:PicoErrorDomain code:ReaderError userInfo:userInfo]; + + if (self.debug) { + NSLog(@"Error to read response message : \n%@", [self.PicoError localizedDescription]); + } + + } + } + + return _responseObj; +} + +- (NSError *)error { + if (_PicoError) { + return _PicoError; + } else { + return [super error]; + } +} + +#pragma mark - AFHTTPRequestOperation + ++ (NSSet *)acceptableContentTypes { + return [NSSet setWithObjects:@"application/soap+xml", @"text/xml", nil]; +} + +- (void)setCompletionBlockWithSuccess:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + __weak typeof(self) weakSelf = self; + + self.completionBlock = ^ { + if ([weakSelf isCancelled]) { + return; + } + + if (weakSelf.error) { + if (weakSelf.debug) { + NSLog(@"Response HTTP Error:\n%@", [weakSelf.error localizedDescription]); + } + if (failure) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + failure(weakSelf, weakSelf.error); + }); + } + } else { + if (weakSelf.debug) { + if (weakSelf.response) { + NSLog(@"Response HTTP status : \n%ld", (long)[weakSelf.response statusCode]); + NSLog(@"Response HTTP headers : \n%@", [weakSelf.response allHeaderFields]); + } + } + + dispatch_async(soap_request_operation_processing_queue(), ^{ + id obj = weakSelf.responseObj; + + if (weakSelf.PicoError) { + if (failure) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + failure(weakSelf, weakSelf.error); + }); + } + } else { + if (success) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + success(weakSelf, obj); + }); + } + } + }); + } + + }; +} + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoXMLClient.h b/Pods/PicoKit/Pod/WebService/PicoXMLClient.h new file mode 100644 index 0000000..4f8d6db --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoXMLClient.h @@ -0,0 +1,60 @@ +// +// PicoXMLClient.h +// Pico +// +// Created by bulldog on 13-3-18. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import +#import "PicoBindable.h" +#import "PicoXMLRequestOperation.h" +#import "PicoConfig.h" + +@interface PicoXMLClient : AFHTTPRequestOperationManager + +/** + Target endpoint url, mandatory + */ +@property (readonly, nonatomic, strong) NSURL *endpointURL; + +/** + Should request/response be output for debugging + */ +@property (readwrite, nonatomic, assign) BOOL debug; + +/** + Configurations like encoding, date/number formatter, etc. + Defaults will be used if not set explicitly. + */ +@property (readwrite, nonatomic, strong) PicoConfig *config; + +/** + Additional parameters that will be appended as query string at the end of the request url + */ +@property (readwrite, nonatomic, strong) NSMutableDictionary *additionalParameters; + +/** + HTTP request timeout settting + */ +@property (readwrite, nonatomic, assign) NSTimeInterval timeoutInverval; + +/** + + */ +- (instancetype)initWithEndpointURL:(NSURL *)URL NS_DESIGNATED_INITIALIZER; + +- (void) setDefaultHeader:(NSString*)header value:(NSString*)value; + +- (PicoXMLRequestOperation *)PicoXMLRequestOperationWithRequest:(NSURLRequest *)request + success:(void (^)(PicoXMLRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoXMLRequestOperation *operation, NSError *error))failure; + +/** + + */ +- (void)invoke:(id)requestObject responseClass:(Class)responseClazz + success:(void (^)(PicoXMLRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoXMLRequestOperation *operation, NSError *error))failure; + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoXMLClient.m b/Pods/PicoKit/Pod/WebService/PicoXMLClient.m new file mode 100644 index 0000000..dd4ac88 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoXMLClient.m @@ -0,0 +1,167 @@ +// +// PicoXMLClient.m +// Pico +// +// Created by bulldog on 13-3-18. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLClient.h" +#import "PicoXMLWriter.h" + +enum { + PicoXMLParameterEncoding = 11 +}; + +@interface PicoXMLClient () + +@property (readwrite, nonatomic, strong) NSURL *endpointURL; + +@end + +@implementation PicoXMLClient + +@synthesize endpointURL = _endpointURL; +@synthesize debug = _debug; +@synthesize config = _config; +@synthesize additionalParameters = _additionalParameters; + +- (instancetype)initWithEndpointURL:(NSURL *)URL { + NSParameterAssert(URL); + + self = [super initWithBaseURL:URL]; + if (!self) { + return nil; + } + + _config = [[PicoConfig alloc] init]; // default config + + self.responseSerializer = [AFHTTPResponseSerializer serializer]; + [self setDefaultHeader:@"Accept" value:@"text/xml"]; + [self setDefaultHeader:@"Content-Type" value:@"text/xml"]; + + self.endpointURL = URL; + + self.timeoutInverval = 60; + + return self; +} + +- (instancetype)initWithBaseURL:(NSURL *)url { + return [self initWithEndpointURL:url]; +} + +- (void) setDefaultHeader:(NSString*)header value:(NSString*)value { + [self.requestSerializer setValue:value forHTTPHeaderField:header]; +} + +- (PicoXMLRequestOperation *)PicoXMLRequestOperationWithRequest:(NSURLRequest *)request + success:(void (^)(PicoXMLRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoXMLRequestOperation *operation, NSError *error))failure { + + PicoXMLRequestOperation *operation = [[PicoXMLRequestOperation alloc] initWithRequest:request]; + operation.responseSerializer = self.responseSerializer; + operation.shouldUseCredentialStorage = self.shouldUseCredentialStorage; + operation.credential = self.credential; + operation.securityPolicy = self.securityPolicy; + + [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) { + success((PicoXMLRequestOperation*)operation, responseObject); + } failure:^(AFHTTPRequestOperation *operation, NSError *error) { + failure((PicoXMLRequestOperation*)operation, error); + }]; + + operation.completionQueue = self.completionQueue; + operation.completionGroup = self.completionGroup; + + operation.debug = self.debug; + operation.config = self.config; + + return operation; +} + +- (void)invoke:(id)requestObject responseClass:(Class)responseClazz + success:(void (^)(PicoXMLRequestOperation *operation, id responseObject))success + failure:(void (^)(PicoXMLRequestOperation *operation, NSError *error))failure { + + NSParameterAssert(self.config); + + @try { + NSMutableURLRequest *request = [self requestWithMethod:@"POST" requestObject:requestObject]; + request.timeoutInterval = self.timeoutInverval; + + PicoXMLRequestOperation *picoOperation = [self PicoXMLRequestOperationWithRequest:request success:^(PicoXMLRequestOperation *operation, id responseObject) { + + if (operation.responseObj) { + if (success) { + success(operation, operation.responseObj); + } + } else { + if (failure) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Empty response" forKey:NSLocalizedDescriptionKey]; + NSError *error = [NSError errorWithDomain:PicoErrorDomain code:ReaderError userInfo:userInfo]; + failure(operation, error); + } + } + } failure:^(PicoXMLRequestOperation *operation, NSError *error) { + if (failure) { + failure(operation, operation.error); + } + } ]; + + picoOperation.responseClazz = responseClazz; + picoOperation.debug = self.debug; + picoOperation.config = self.config; + + if (self.debug) { + NSLog(@"Request HTTP Headers : \n%@", [request allHTTPHeaderFields]); + } + + [self.operationQueue addOperation:picoOperation]; + + } @catch (NSException* ex) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Error to build request" forKey:NSLocalizedDescriptionKey]; + [userInfo setValue:ex.reason forKey:NSLocalizedFailureReasonErrorKey]; + [userInfo setValue:ex forKey:NSUnderlyingErrorKey]; + NSError *error = [NSError errorWithDomain:PicoErrorDomain code:WriterError userInfo:userInfo]; + if (self.debug) { + NSLog(@"Error to build request : \n%@", [error localizedDescription]); + } + if (failure) { + failure(nil, error); + } + return; + } +} + +- (NSMutableURLRequest *)requestWithMethod:(NSString *)method requestObject:(id)requestObject { + NSAssert(requestObject != nil, @"Expect non-nil request object"); + NSAssert([[requestObject class] conformsToProtocol:@protocol(PicoBindable)], @"Expect request object conforms to PicoBindable protocol"); + + NSMutableURLRequest *request = [self.requestSerializer requestWithMethod:method + URLString:self.endpointURL.absoluteString + parameters:self.additionalParameters + error:nil]; + if (self.debug) { + NSLog(@"Sending request to : %@", request.URL.absoluteString); + } + + PicoXMLWriter *xmlWriter = [[PicoXMLWriter alloc] initWithConfig:self.config]; + // marshall to xml message + NSData *xmlData = [xmlWriter toData:requestObject]; + + NSAssert(xmlData != nil, @"Expect success soap marshalling"); + + if (self.debug) { + NSLog(@"Request message:"); + NSString *message = [[NSString alloc] initWithData:xmlData encoding:CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding))]; + NSLog(@"%@", message); + } + + request.HTTPBody = xmlData; + + return request; +} + + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.h b/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.h new file mode 100644 index 0000000..df85f58 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.h @@ -0,0 +1,48 @@ +// +// PicoXMLRequestOperation.h +// Pico +// +// Created by bulldog on 13-3-18. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import +#import "PicoConstants.h" +#import "PicoConfig.h" + +/** + `PicoXMLRequestOperation` is a subclass of `AFHTTPRequestOperation` for Pico XML binding support. + + ## Acceptable Content Types + + By default, `PicoSOAPRequestOperation` accepts the following MIME types: + + - `text/xml` + */ +@interface PicoXMLRequestOperation : AFHTTPRequestOperation + +///---------------------------- +/// @name Getting Response Data +///---------------------------- + +/** + A Pico bindable object constructed from the response data. If an error occurs while parsing, `nil` will be returned, and the `error` property will be set to the error. + */ +@property (readonly, nonatomic, strong) id responseObj; + +/** + Target Pico binding class + */ +@property (readwrite, nonatomic, strong) Class responseClazz; + +/** + output debug info, such as response xml message + */ +@property (readwrite, nonatomic, assign) BOOL debug; + +/** + Configurations like encoding, date/number formatter, etc + */ +@property (readwrite, nonatomic, strong) PicoConfig *config; + +@end diff --git a/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.m b/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.m new file mode 100644 index 0000000..018fb91 --- /dev/null +++ b/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.m @@ -0,0 +1,129 @@ +// +// PicoXMLRequestOperation.m +// Pico +// +// Created by bulldog on 13-3-18. +// Copyright (c) 2013 LeanSoft Technology. All rights reserved. +// + +#import "PicoXMLRequestOperation.h" +#import "PicoXMLReader.h" + +static dispatch_queue_t ls_xml_request_operation_processing_queue; +static dispatch_queue_t xml_request_operation_processing_queue() { + if (ls_xml_request_operation_processing_queue == NULL) { + ls_xml_request_operation_processing_queue = dispatch_queue_create("com.leansoft.pico.networking.xml-request.processing", 0); + } + + return ls_xml_request_operation_processing_queue; +} + +@interface PicoXMLRequestOperation () +@property (readwrite, nonatomic, strong) NSError *PicoError; +@property (readwrite, nonatomic, strong) id responseObj; +@end + +@implementation PicoXMLRequestOperation + +@synthesize responseObj = _responseObj; +@synthesize PicoError = _PicoError; +@synthesize responseClazz = _responseClazz; +@synthesize debug = _debug; +@synthesize config = _config; + +-(id)responseObj { + if (!_responseObj && [self isFinished] && [self.responseData length] > 0 && !self.PicoError) { + + if (self.debug) { + NSLog(@"Response message : "); + NSString *message = [[NSString alloc] initWithData:self.responseData encoding:CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)self.config.encoding))]; + NSLog(@"%@", message); + } + + PicoXMLReader *xmlReader = nil; + @try { + // unmarshall to object + xmlReader = [[PicoXMLReader alloc] initWithConfig:self.config]; + self.responseObj = [xmlReader fromData:self.responseData withClass:self.responseClazz]; + } @catch (NSException *ex) { + NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithObject:@"Error to read xml response" forKey:NSLocalizedDescriptionKey]; + [userInfo setValue:ex.reason forKey:NSLocalizedFailureReasonErrorKey]; + [userInfo setValue:ex forKey:NSUnderlyingErrorKey]; + self.PicoError = [NSError errorWithDomain:PicoErrorDomain code:ReaderError userInfo:userInfo]; + + if (self.debug) { + NSLog(@"Error to read response message : \n%@", [self.PicoError localizedDescription]); + } + } + } + + return _responseObj; +} + +- (NSError *)error { + if (_PicoError) { + return _PicoError; + } else { + return [super error]; + } +} + +#pragma mark - AFHTTPRequestOperation + ++ (NSSet *)acceptableContentTypes { + return [NSSet setWithObjects:@"text/xml", nil]; +} + +- (void)setCompletionBlockWithSuccess:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success + failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure +{ + __weak typeof(self) weakSelf = self; + + self.completionBlock = ^ { + if ([weakSelf isCancelled]) { + return; + } + + if (weakSelf.error) { + + if (weakSelf.debug) { + NSLog(@"Response HTTP Error:\n%@", [weakSelf.error localizedDescription]); + } + + if (failure) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + failure(weakSelf, weakSelf.error); + }); + } + } else { + + if (weakSelf.debug) { + if (weakSelf.response) { + NSLog(@"Response HTTP headers : \n%@", [weakSelf.response allHeaderFields]); + } + } + + dispatch_async(xml_request_operation_processing_queue(), ^{ + id obj = weakSelf.responseObj; + + if (weakSelf.PicoError) { + if (failure) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + failure(weakSelf, weakSelf.error); + }); + } + } else { + if (success) { + dispatch_async(weakSelf.completionQueue ? weakSelf.completionQueue : dispatch_get_main_queue(), ^{ + success(weakSelf, obj); + }); + } + } + }); + } + + }; +} + + +@end diff --git a/Pods/PicoKit/Pod/XMLWriter/XMLWriter.h b/Pods/PicoKit/Pod/XMLWriter/XMLWriter.h new file mode 100644 index 0000000..4f1133f --- /dev/null +++ b/Pods/PicoKit/Pod/XMLWriter/XMLWriter.h @@ -0,0 +1,147 @@ +/*************************************************************************** + * + * XMLWriter: An XML stream writer for iOS. + * This file is part of the XSWI library - http://code.google.com/p/xswi/ + * + * Copyright (C) 2010 by Thomas Rørvik Skjølberg + * + * 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. + ****************************************************************************/ + +#import + +// xml stream writer +@protocol XMLStreamWriter + +- (void) writeStartDocument; +- (void) writeStartDocumentWithVersion:(NSString*)version; +- (void) writeStartDocumentWithEncodingAndVersion:(NSString*)encoding version:(NSString*)version; + +- (void) writeStartElement:(NSString *)localName; + +- (void) writeEndElement; // automatic end element (mirrors previous start element at the same level) +- (void) writeEndElement:(NSString *)localName; + +- (void) writeEmptyElement:(NSString *)localName; + +- (void) writeEndDocument; // write any remaining end elements + +- (void) writeAttribute:(NSString *)localName value:(NSString *)value; + +- (void) writeCharacters:(NSString*)text; +- (void) writeComment:(NSString*)comment; +- (void) writeProcessingInstruction:(NSString*)target data:(NSString*)data; +- (void) writeCData:(NSString*)cdata; + +// return the written xml string buffer +- (NSMutableString*) toString; +// return the written xml as data, set to the encoding used in the writeStartDocumentWithEncodingAndVersion method (UTF-8 per default) +- (NSData*) toData; + +// flush the buffers, if any +- (void) flush; +// close the writer and buffers, if any +- (void) close; + +@end + +// xml stream writer with namespace support +@protocol NSXMLStreamWriter + +- (void) writeStartElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName; +- (void) writeEndElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName; +- (void) writeEmptyElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName; + +- (void) writeAttributeWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName value:(NSString *)value; + +// set a namespace and prefix +- (void)setPrefix:(NSString*)prefix namespaceURI:(NSString *)namespaceURI; +// write (and set) a namespace and prefix +- (void) writeNamespace:(NSString*)prefix namespaceURI:(NSString *)namespaceURI; + +// set the default namespace (empty prefix) +- (void)setDefaultNamespace:(NSString*)namespaceURI; +// write (and set) the default namespace +- (void) writeDefaultNamespace:(NSString*)namespaceURI; + +- (NSString*)getPrefix:(NSString*)namespaceURI; +- (NSString*)getNamespaceURI:(NSString*)prefix; + +@end + +@interface XMLWriter : NSObject { + + // the current output buffer + NSMutableString* writer; + + // the target encoding + NSString* encoding; + + // the number current levels + int level; + // is the element open, i.e. the end bracket has not been written yet + BOOL openElement; + // does the element contain characters, cdata, comments + BOOL emptyElement; + + // the element stack. one per element level + NSMutableArray* elementLocalNames; + NSMutableArray* elementNamespaceURIs; + + // the namespace array. zero or more namespace attributes can be defined per element level + NSMutableArray* namespaceURIs; + // the namespace count. one per element level + NSMutableArray* namespaceCounts; + // the namespaces which have been written to the stream + NSMutableArray* namespaceWritten; + + // mapping of namespace URI to prefix and visa versa. Corresponds in size to the namespaceURIs array. + NSMutableDictionary* namespaceURIPrefixMap; + NSMutableDictionary* prefixNamespaceURIMap; + + // tag indentation + NSString* indentation; + // line break + NSString* lineBreak; + + // if true, then write elements without children as instead of + BOOL automaticEmptyElements; +} + +@property (nonatomic, strong, readwrite) NSString* indentation; +@property (nonatomic, strong, readwrite) NSString* lineBreak; +@property (nonatomic, assign, readwrite) BOOL automaticEmptyElements; +@property (nonatomic, readonly) int level; + +// helpful for formatting, special needs +// write linebreak, if any +- (void) writeLinebreak; +// write indentation, if any +- (void) writeIndentation; +// write end of start element, so that the start tag is complete +- (void) writeCloseStartElement; + +// write any outstanding namespace declaration attributes in a start element +- (void) writeNamespaceAttributes; +// write escaped text to the stream +- (void) writeEscape:(NSString*)value; +// wrote unescaped text to the stream +- (void) write:(NSString*)value; + +@end diff --git a/Pods/PicoKit/Pod/XMLWriter/XMLWriter.m b/Pods/PicoKit/Pod/XMLWriter/XMLWriter.m new file mode 100644 index 0000000..f6c09f7 --- /dev/null +++ b/Pods/PicoKit/Pod/XMLWriter/XMLWriter.m @@ -0,0 +1,741 @@ +/*************************************************************************** + * + * XMLWriter: An XML stream writer for iOS. + * This file is part of the XSWI library - http://code.google.com/p/xswi/ + * + * Copyright (C) 2010 by Thomas Rørvik Skjølberg + * + * 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. + ****************************************************************************/ + +#import "XMLWriter.h" + +#define NSBOOL(_X_) ((_X_) ? (id)kCFBooleanTrue : (id)kCFBooleanFalse) + +@interface XMLWriter (UtilityMethods) +// methods for internal use only +// pop the namespace stack, removing any namespaces which become out-of-scope +- (void) popNamespaceStack; +// push the namespace stack, denoting the namespaces whihch are in-scope +- (void) pushNamespaceStack; + +// add namespace and local name to the top of the element stack +- (void) pushElementStack:(NSString*)namespaceURI localName:(NSString*)localName; +// remove the top member of the element stack +- (void) popElementStack; + +// write close element, optionally as empty element +- (void) writeCloseElement:(BOOL)empty; +// write namespace attribute to stream +- (void) writeNamespaceToStream:(NSString*)prefix namespaceURI:(NSString*)namespaceURI; +// write a length of text to the stream with escaping +- (void) writeEscapeCharacters:(const UniChar*)characters length:(int)length; +@end + + +static NSString *const EMPTY_STRING = @""; +static NSString *const XML_NAMESPACE_URI = @"http://www.w3.org/XML/1998/namespace"; +static NSString *const XML_NAMESPACE_URI_PREFIX = @"xml"; +static NSString *const XMLNS_NAMESPACE_URI = @"http://www.w3.org/2000/xmlns/"; +static NSString *const XMLNS_NAMESPACE_URI_PREFIX = @"xmlns"; +static NSString *const XSI_NAMESPACE_URI = @"http://www.w3.org/2001/XMLSchema/"; +static NSString *const XSI_NAMESPACE_URI_PREFIX = @"xsi"; + +@implementation XMLWriter + +@synthesize automaticEmptyElements, indentation, lineBreak, level; + +- (XMLWriter*) init { + self = [super init]; + if (self != nil) { + // intialize variables + writer = [[NSMutableString alloc] init]; + level = 0; + openElement = NO; + emptyElement = NO; + + elementLocalNames = [[NSMutableArray alloc]init]; + elementNamespaceURIs = [[NSMutableArray alloc]init]; + + namespaceURIs = [[NSMutableArray alloc]init]; + namespaceCounts = [[NSMutableArray alloc]init]; + namespaceWritten = [[NSMutableArray alloc]init]; + + namespaceURIPrefixMap = [[NSMutableDictionary alloc] init]; + prefixNamespaceURIMap = [[NSMutableDictionary alloc] init]; + + // load default custom behaviour + indentation = @"\t"; + lineBreak = @"\n"; + automaticEmptyElements = YES; + + // setup default xml namespaces. assume both are previously known. + [namespaceCounts addObject:@2]; + [self setPrefix:XML_NAMESPACE_URI_PREFIX namespaceURI:XML_NAMESPACE_URI]; + [self setPrefix:XMLNS_NAMESPACE_URI_PREFIX namespaceURI:XMLNS_NAMESPACE_URI]; + } + return self; +} + +- (void) pushNamespaceStack { + // step namespace count - add the current namespace count + NSNumber* previousCount = [namespaceCounts lastObject]; + if([namespaceURIs count] == [previousCount intValue]) { + // the count is still the same + [namespaceCounts addObject:previousCount]; + } else { + // the count has changed, save the it + NSNumber* count = @((int)[namespaceURIs count]); + + [namespaceCounts addObject:count]; + } +} + +- (void) writeNamespaceAttributes { + if(openElement) { + // write namespace attributes in the namespace stack + NSNumber* previousCount = [namespaceCounts lastObject]; + for(int i = [previousCount intValue]; i < [namespaceURIs count]; i++) { + + // did we already write this namespace? + id written = namespaceWritten[i]; + if(written == NSBOOL(NO)) { + // write namespace + NSString* namespaceURI = namespaceURIs[i]; + NSString* prefix = namespaceURIPrefixMap[namespaceURI]; + + [self writeNamespaceToStream:prefix namespaceURI:namespaceURI]; + + namespaceWritten[i] = NSBOOL(YES); + } else { + // already written namespace + } + } + } else { + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"No open start element" userInfo:NULL]); + } +} + +- (void) popNamespaceStack { + // step namespaces one level down + if([namespaceCounts lastObject] != namespaceCounts[([namespaceCounts count] - 2)]) { + // remove namespaces which now are out of scope, i.e. between the current and the previus count + NSNumber* previousCount = [namespaceCounts lastObject]; + NSNumber* currentCount = namespaceCounts[([namespaceCounts count] - 2)]; + for(int i = [previousCount intValue] - 1; i >= [currentCount intValue]; i--) { + NSString* removedNamespaceURI = namespaceURIs[i]; + NSString* removedPrefix = namespaceURIPrefixMap[removedNamespaceURI]; + + [prefixNamespaceURIMap removeObjectForKey:removedPrefix]; + [namespaceURIPrefixMap removeObjectForKey:removedNamespaceURI]; + + [namespaceURIs removeLastObject]; + + [namespaceWritten removeLastObject]; + } + } else { + // not necessary to remove any namespaces + } + [namespaceCounts removeLastObject]; +} + +- (void)setPrefix:(NSString*)prefix namespaceURI:(NSString *)namespaceURI { + if(!namespaceURI) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"Namespace cannot be NULL" userInfo:NULL]); + } + if(!prefix) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"Prefix cannot be NULL" userInfo:NULL]); + } + if(namespaceURIPrefixMap[namespaceURI]) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Name namespace %@ has already been set", namespaceURI] userInfo:NULL]); + } + if(prefixNamespaceURIMap[prefix]) { + // raise exception + if([prefix length]) { + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Prefix %@ has already been set", prefix] userInfo:NULL]); + } else { + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"Default namespace has already been set" userInfo:NULL]); + } + } + + // increase the namespaces and add prefix mapping + [namespaceURIs addObject:namespaceURI]; + namespaceURIPrefixMap[namespaceURI] = prefix; + prefixNamespaceURIMap[prefix] = namespaceURI; + + if(openElement) { // write the namespace now + [self writeNamespaceToStream:prefix namespaceURI:namespaceURI]; + + [namespaceWritten addObject:NSBOOL(YES)]; + } else { + // write the namespace as the next start element is closed + [namespaceWritten addObject:NSBOOL(NO)]; + } +} + +- (NSString*)getPrefix:(NSString*)namespaceURI { + return namespaceURIPrefixMap[namespaceURI]; +} + +- (void) pushElementStack:(NSString*)namespaceURI localName:(NSString*)localName { + // save for end elements + [elementLocalNames addObject:localName]; + if(namespaceURI) { + [elementNamespaceURIs addObject:namespaceURI]; + } else { + [elementNamespaceURIs addObject:EMPTY_STRING]; + } +} + +- (void) popElementStack { + // remove element traces + [elementNamespaceURIs removeLastObject]; + [elementLocalNames removeLastObject]; +} + +- (void) writeStartDocument { + [self writeStartDocumentWithEncodingAndVersion:NULL version:NULL]; +} + +- (void) writeStartDocumentWithVersion:(NSString*)version { + [self writeStartDocumentWithEncodingAndVersion:NULL version:version]; +} + +- (void) writeStartDocumentWithEncodingAndVersion:(NSString*)aEncoding version:(NSString*)version { + if([writer length] != 0) { + // raise exception - Starting document which is not empty + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"Document has already been started" userInfo:NULL]); + } else { + [self write:@""]; + + } +} + +- (void) writeEndDocument { + while (level > 0) { + [self writeEndElement]; + } +} + +- (void) writeStartElement:(NSString *)localName { + [self writeStartElementWithNamespace:NULL localName:localName]; +} + +- (void) writeCloseStartElement { + if(openElement) { + [self writeCloseElement:NO]; + } else { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"No open start element" userInfo:NULL]); + } +} + +- (void) writeCloseElement:(BOOL)empty { + [self writeNamespaceAttributes]; + [self pushNamespaceStack]; + + if(empty) { + [self write:@" />"]; + } else { + [self write:@">"]; + } + + openElement = NO; +} + +- (void) writeEndElement:(NSString *)localName { + [self writeEndElementWithNamespace:NULL localName:localName]; +} + +- (void) writeEndElement { + if(openElement && automaticEmptyElements) { + // go for + [self writeCloseElement:YES]; // write empty end element + + [self popNamespaceStack]; + [self popElementStack]; + + emptyElement = YES; + openElement = NO; + + level -= 1; + } else { + NSString* namespaceURI = [elementNamespaceURIs lastObject]; + NSString* localName = [elementLocalNames lastObject]; + + if(namespaceURI == EMPTY_STRING) { + [self writeEndElementWithNamespace:NULL localName:localName]; + } else { + [self writeEndElementWithNamespace:namespaceURI localName:localName]; + } + } +} + +- (void) writeStartElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName { + if(openElement) { + [self writeCloseElement:NO]; + } + + [self writeLinebreak]; + [self writeIndentation]; + + [self write:@"<"]; + if(namespaceURI) { + NSString* prefix = namespaceURIPrefixMap[namespaceURI]; + + if(!prefix) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Unknown namespace URI %@", namespaceURI] userInfo:NULL]); + } + + if([prefix length]) { + [self write:prefix]; + [self write:@":"]; + } + } + [self write:localName]; + + [self pushElementStack:namespaceURI localName:localName]; + + openElement = YES; + emptyElement = YES; + level += 1; + +} + +- (void) writeEndElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName { + if(level <= 0) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"Cannot write more end elements than start elements." userInfo:NULL]); + } + + level -= 1; + + if(openElement) { + // go for + [self writeCloseElement:NO]; + } else { + if(emptyElement) { + // go for linebreak + indentation + + [self writeLinebreak]; + [self writeIndentation]; + } else { + // go for characters + } + } + + // write standard end element + [self write:@""]; + + [self popNamespaceStack]; + [self popElementStack]; + + emptyElement = YES; + openElement = NO; +} + +- (void) writeEmptyElement:(NSString *)localName { + if(openElement) { + [self writeCloseElement:NO]; + } + + [self writeLinebreak]; + [self writeIndentation]; + + [self write:@"<"]; + [self write:localName]; + [self write:@" />"]; + + emptyElement = YES; + openElement = NO; +} + +- (void) writeEmptyElementWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName { + if(openElement) { + [self writeCloseElement:NO]; + } + + [self writeLinebreak]; + [self writeIndentation]; + + [self write:@"<"]; + + if(namespaceURI) { + NSString* prefix = namespaceURIPrefixMap[namespaceURI]; + + if(!prefix) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Unknown namespace URI %@", namespaceURI] userInfo:NULL]); + } + + if([prefix length]) { + [self write:prefix]; + [self write:@":"]; + } + } + + [self write:localName]; + [self write:@" />"]; + + emptyElement = YES; + openElement = NO; +} + +- (void) writeAttribute:(NSString *)localName value:(NSString *)value { + [self writeAttributeWithNamespace:NULL localName:localName value:value]; +} + +- (void) writeAttributeWithNamespace:(NSString *)namespaceURI localName:(NSString *)localName value:(NSString *)value { + if(openElement) { + [self write:@" "]; + + if(namespaceURI) { + NSString* prefix = namespaceURIPrefixMap[namespaceURI]; + if(!prefix) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Unknown namespace URI %@", namespaceURI] userInfo:NULL]); + } + + if([prefix length]) { + [self write:prefix]; + [self write:@":"]; + } + } + [self write:localName]; + [self write:@"=\""]; + [self writeEscape:value]; + [self write:@"\""]; + } else { + // raise expection + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"No open start element" userInfo:NULL]); + } +} + +- (void)setDefaultNamespace:(NSString*)namespaceURI { + [self setPrefix:EMPTY_STRING namespaceURI:namespaceURI]; +} + +- (void) writeNamespace:(NSString*)prefix namespaceURI:(NSString *)namespaceURI { + if(openElement) { + [self setPrefix:prefix namespaceURI:namespaceURI]; + } else { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"No open start element" userInfo:NULL]); + } +} + +- (void) writeDefaultNamespace:(NSString*)namespaceURI { + [self writeNamespace:EMPTY_STRING namespaceURI:namespaceURI]; +} + +- (NSString*)getNamespaceURI:(NSString*)prefix { + return prefixNamespaceURIMap[prefix]; +} + +-(void) writeNamespaceToStream:(NSString*)prefix namespaceURI:(NSString*)namespaceURI { + if(openElement) { // write the namespace now + [self write:@" "]; + + NSString* xmlnsPrefix = [self getPrefix:XMLNS_NAMESPACE_URI]; + if(!xmlnsPrefix) { + // raise exception + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Cannot declare namespace without namespace %@", XMLNS_NAMESPACE_URI] userInfo:NULL]); + } + + [self write:xmlnsPrefix]; // xmlns + if([prefix length]) { + // write xmlns:prefix="namespaceURI" attribute + + [self write:@":"]; // colon + [self write:prefix]; // prefix + } else { + // write xmlns="namespaceURI" attribute + } + [self write:@"=\""]; + [self writeEscape:namespaceURI]; + [self write:@"\""]; + } else { + @throw([NSException exceptionWithName:@"XMLWriterException" reason:@"No open start element" userInfo:NULL]); + } +} + +- (void) writeCharacters:(NSString*)text { + if(openElement) { + [self writeCloseElement:NO]; + } + + [self writeEscape:text]; + + emptyElement = NO; +} + +- (void) writeComment:(NSString*)comment { + if(openElement) { + [self writeCloseElement:NO]; + } + [self write:@""]; + + emptyElement = NO; +} + +- (void) writeProcessingInstruction:(NSString*)target data:(NSString*)data { + if(openElement) { + [self writeCloseElement:NO]; + } + [self write:@""]; + + emptyElement = NO; +} + +- (void) writeCData:(NSString*)cdata { + if(openElement) { + [self writeCloseElement:NO]; + } + [self write:@""]; + + emptyElement = NO; +} + +- (void) write:(NSString*)value { + [writer appendString:value]; +} + +- (void) writeEscape:(NSString*)value { + + const UniChar *characters = CFStringGetCharactersPtr((CFStringRef)value); + + if (characters) { + // main flow + [self writeEscapeCharacters:characters length:(int)[value length]]; + } else { + // we need to read/copy the characters for some reason, from the docs of CFStringGetCharactersPtr: + // A pointer to a buffer of Unicode character or NULL if the internal storage of the CFString does not allow this to be returned efficiently. + // Whether or not this function returns a valid pointer or NULL depends on many factors, all of which depend on how the string was created and its properties. In addition, the function result might change between different releases and on different platforms. So do not count on receiving a non- NULL result from this function under any circumstances (except when the object is created with CFStringCreateMutableWithExternalCharactersNoCopy). + + // we dont need the whole data length at once + NSMutableData *data = [NSMutableData dataWithLength:256 * sizeof(UniChar)]; + + if(!data) { + // raise exception - no more memory + @throw([NSException exceptionWithName:@"XMLWriterException" reason:[NSString stringWithFormat:@"Could not allocate data buffer of %i unicode characters", 256] userInfo:NULL]); + } + + int count = 0; + do { + int length; + if(count + 256 < [value length]) { + length = 256; + } else { + length = (int)[value length] - count; + } + + [value getCharacters:[data mutableBytes] range:NSMakeRange(count, length)]; + + [self writeEscapeCharacters:[data bytes] length:length]; + + count += length; + } while(count < [value length]); + + // buffers autorelease + } +} + +- (void)writeEscapeCharacters:(const UniChar*)characters length:(int)length { + int rangeStart = 0; + int rangeLength = 0; + + for(int i = 0; i < length; i++) { + + UniChar c = characters[i]; + if (c <= 0xd7ff) { + if (c >= 0x20) { + switch (c) { + case 34: { + // write range if any + if(rangeLength) { + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } + [self write:@"""]; + + break; + } + // quot + case 38: { + // write range if any + if(rangeLength) { + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } + [self write:@"&"]; + + break; + } + // amp; + case 60: { + // write range if any + if(rangeLength) { + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } + + [self write:@"<"]; + + break; + } + // lt; + case 62: { + // write range if any + if(rangeLength) { + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } + + [self write:@">"]; + + break; + } + // gt; + default: { + // valid + rangeLength++; + + // note: we dont need to escape char 39 for ' because we use double quotes exclusively + + continue; + } + } + + // set range start to next + rangeLength = 0; + rangeStart = i + 1; + + } else { + if (c == '\n' || c == '\r' || c == '\t') { + // valid; + rangeLength++; + + continue; + } else { + // invalid, skip + } + } + } else if (c < 0xE000) { + // invalid, skip + } else if (c <= 0xFFFD) { + // valid + rangeLength++; + + continue; + } else { + // invalid, skip + } + + // write range if any + if(rangeLength) { + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } + + // set range start to next + rangeLength = 0; + rangeStart = i + 1; + } + + // write range if any + if(rangeLength) { + // main flow will probably write all characters here + CFStringAppendCharacters((CFMutableStringRef)writer, characters + rangeStart, rangeLength); + } +} + +- (void)writeLinebreak { + if(lineBreak) { + [self write:lineBreak]; + } +} + +- (void)writeIndentation { + if(indentation) { + for (int i = 0; i < level; i++ ) { + [self write:indentation]; + } + } +} + +- (void) flush { + // do nothing +} + +- (void) close { + // do nothing +} + +- (NSMutableString*) toString { + return writer; +} + +- (NSData*) toData { + if(encoding) { + return [writer dataUsingEncoding: CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)encoding)) allowLossyConversion:NO]; + } else { + return [writer dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO]; + } +} + +@end diff --git a/Pods/PicoKit/README.md b/Pods/PicoKit/README.md new file mode 100644 index 0000000..5e00b8f --- /dev/null +++ b/Pods/PicoKit/README.md @@ -0,0 +1,158 @@ +# PicoKit + +[![CI Status](http://img.shields.io/travis/maxep/PicoKit.svg?style=flat)](https://travis-ci.org/maxep/PicoKit) +[![Version](https://img.shields.io/cocoapods/v/PicoKit.svg?style=flat)](http://cocoadocs.org/docsets/PicoKit) +[![License](https://img.shields.io/cocoapods/l/PicoKit.svg?style=flat)](http://cocoadocs.org/docsets/PicoKit) +[![Platform](https://img.shields.io/cocoapods/p/PicoKit.svg?style=flat)](http://cocoadocs.org/docsets/PicoKit) + +A light Web Service client framework targeting iOS platform. + +##_Note_ +_PicoKit is initially a fork of [pico](https://github.com/bulldog2011/pico)._ + +_[Pico](https://github.com/bulldog2011/pico) (and related projects: [mxjc](https://github.com/bulldog2011/mxjc), [mwsc](https://github.com/bulldog2011/mwsc) & [nano](https://github.com/bulldog2011/nano)) has been developed by [bulldog2011](http://bulldog2011.github.com) but stayed as is from 2013. As it is very well designed and implemented, I decided to fork it and upgrade it to support ARC and be available through [CocoaPods](https://cocoapods.org/)._ + +## Feature Highlight + +1. Support WSDL driven development, [code generator](https://github.com/maxep/max-ws) tool is provided to auto-genearte strongly typed proxy from WSDL. +2. Support SOAP 1.1/1.2 and XML based web service. +3. Support automatic SOAP/XML to Objective-C object binding, performance is better than iOS native XML parser. +4. Built on popular and mature [AFNetworking](https://github.com/AFNetworking/AFNetworking) library for iOS. +5. Has been verified with industrial level Web Service like Amazon ECommerce Web Serivce and eBay Finding/Shopping/Trading Web Service. +6. Support asychronous service invocation, flexible HTTP/SOAP header setting, timeout setting, encoding setting, logging, etc. + +## The Big Picture +![The Big Picture](docsrc/big_picture.png) + +## Installation + +PicoKit is available through [CocoaPods](http://cocoapods.org). To install +it, simply add the following line to your Podfile: + +``` +pod 'PicoKit' +```` + +#### Old fashioned way: +Include the whole Pico source in your project. If you use this option, make sure: + +1. In Target Build Setting, add the `-ObjC` flag to your "Other Linker flags". +2. In Target Build Setting, add `/usr/include/libxml2` to your "Header Search Paths" +3. In Target Build Phases, link binary with library `libxml2.dylib` + +## WSDL Driven Development Flow +1. Generate Objective-C proxy from WSDL +2. Create new iOS project, add PicoKit and generated proxy into your project +4. Implement appliction logic and UI, call proxy to invoke web service as needed. + +## Example Usage +After the service proxy is generated from wsdl, service invocation through Pico runtime is extremely easy: + +``` objective-c + + // start progress activity + [self.view makeToastActivity]; + + // Get shared service client + StockQuoteServiceClient *client = [StockQuoteServiceClient sharedClient]; + client.debug = YES; // enable request/response message logging + + // Build request object + GetQuote *request = [[GetQuote alloc] init]; + request.symbol = _symbolText.text; + + // make API call and register callbacks + [client getQuote:request success:^(GetQuoteResponse *responseObject) { + + // stop progress activity + [self.view hideToastActivity]; + + // show result + _resultText.text = responseObject.getQuoteResult; + } failure:^(NSError *error, id soapFault) { + + // stop progress activity + [self.view hideToastActivity]; + + if (error) { // http or parsing error + [self.view makeToast:[error localizedDescription] duration:3.0 position:@"center" title:@"Error"]; + } else if (soapFault) { + SOAP11Fault *soap11Fault = (SOAP11Fault *)soapFault; + [self.view makeToast:soap11Fault.faultstring duration:3.0 position:@"center" title:@"SOAP Fault"]; + } + }]; +``` + +## Sample List +All samples are in the [Examples](Examples) folder, following samples are included: + +* StockQuote - Demo app using [StockQueue](http://www.webservicex.net/ws/WSDetails.aspx?CATID=2&WSID=9) SOAP web serivce from webserviceX.NET. +* CurrencyConverter - Demo app using [CurrencyConverter](http://www.webservicex.net/ws/WSDetails.aspx?CATID=2&WSID=10) SOAP web service from webserviceX.NET. +* BarCode - Demo app using [BarcodeGenerator](http://www.webservicex.net/ws/WSDetails.aspx?CATID=8&WSID=76) SOAP web serivce from webserviceX.NET +* Weather - Demo app using [Weather](http://wsf.cdyne.com/WeatherWS/Weather.asmx) SOAP web serivce from wsf.cdyne.com +* AWSECommerce - Hello world like sample using [Amazon Product Advertising API](https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html) SOAP call. +* AWSECDemoApp - Sample Amazon Book search and purchase app using Amazon Product Advertising API. +* eBayFinding - Hello world like sample using [eBay Finding API](https://www.x.com/developers/ebay/products/finding-api) SOAP call. +* eBayShopping - Hello world like sample using [eBay Shopping API](https://www.x.com/developers/ebay/products/shopping-api) XML call. +* eBayDemoApp - Sample eBay Search App using both eBay Finding API and eBay Shopping API. + +## Documentation +1. [Wsdl Driven Development on iOS - the Big Picture](http://bulldog2011.github.com/blog/2013/03/25/wsdl-driven-development-on-ios-the-big-picture/) +2. [Pico Tutorial 1 - A StockQuote Sample](http://bulldog2011.github.com/blog/2013/03/27/pico-tutorial-a-stockquote-sample/) +3. [Pico Tutorial 2 - A CurrencyConverter Sample](http://bulldog2011.github.com/blog/2013/03/28/pico-tutorial-2-a-currency-converter-sample/) +4. [Pico Tutorial 3 - Hello eBay Finding Service](http://bulldog2011.github.com/blog/2013/03/29/pico-tutorial-3-hello-ebay-finding/) +5. [Pico Tutorial 4 - Hello eBay Shopping Service](http://bulldog2011.github.com/blog/2013/03/30/pico-tutorial-4-hello-ebay-shopping/) +6. [Pico Tutoiral 5 - Hello Amazon Product Advertising API](http://bulldog2011.github.com/blog/2013/03/31/pico-tutoiral-5-hello-amazon-product-advertising-api/) +7. [Pico and eBay Trading API integration How To](http://bulldog2011.github.com/blog/2013/04/01/pico-and-ebay-trading-api-integration-how-to/) +8. [Easy Web Service on iOS with Pico[ppt]](http://www.slideshare.net/yang75108/easy-web-serivce-on-ios-with-pico) + +## Mapping between XML Schema Types and Objective-C Types + +| XML Schema Data Types | Objective-C Data Types | +|-------------------------------|-------------------------------| +| xsd:base64Binary | NSData | +| xsd:boolean | NSNumber | +| xsd:byte | NSNumber | +| xsd:date | NSDate | +| xsd:dateTime | NSDate | +| xsd:decimal | NSNumber | +| xsd:double | NSNumber | +| xsd:duration | NSString | +| xsd:float | NSNumber | +| xsd:g | NSDate | +| xsd:hexBinary | NSData | +| xsd:int | NSNumber | +| xsd:integer | NSNumber | +| xsd:long | NSNumber | +| xsd:NOTATION | NSString | +| xsd:Qname | NSString | +| xsd:short | NSNumber | +| xsd:string | NSString | +| xsd:time | NSDate | +| xsd:unsignedByte | NSNumber | +| xsd:unsignedInt | NSNumber | +| xsd:unsignedShort | NSNumber | + +## Version History + +| Version | Date | Description | +|-----------------------|-----------------------|-----------------------| +|[0.5.0](https://github.com/bulldog2011/pico/releases/tag/v0.5.0)|March 25, 2013 |Initial version| +|~~[0.6.0](https://github.com/maxep/PicoKit/releases/tag/v0.6.0)~~|~~April 8, 2015~~|~~ARC & CocoaPods support~~| +|[0.6.1](https://github.com/maxep/PicoKit/releases/tag/v0.6.1)|April 10, 2015 |ARC & CocoaPods support| +|[0.7.0](https://github.com/maxep/PicoKit/releases/tag/v0.7.0)|August 10, 2015 |Upgrade to AFNetworking 2.5.4| +|[0.7.1](https://github.com/maxep/PicoKit/releases/tag/v0.7.1)|September 29, 2015 |Upgrade to iOS9 & AFNetworking 2.6.0| + +## Current Limitation +1. Only Document/Literal style Web Service is support, RPC style Web Serivice is not supported. +2. SOAP attachment is not supported + +## Related project +1. [Pico proxy for Amazon Product Advertising API](https://github.com/bulldog2011/PicoAWSECommerceServiceClient) +2. [Pico proxy for eBay Finding API](https://github.com/bulldog2011/PicoEBayFindingClient) +3. [Pico proxy for eBay Shopping API](https://github.com/bulldog2011/PicoEBayShoppingClient) +4. [Pico proxy for eBay Trading API](https://github.com/bulldog2011/PicoEBayTradingClient) + +## License + +PicoKit is available under the MIT license. See the [LICENSE](LICENSE) file for more info. diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 06258eb..458f62f 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -7,483 +7,726 @@ objects = { /* Begin PBXBuildFile section */ - 007E3BF0BF2A2854408ACF7433E709E8 /* FBSDKSendButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C09ECA7A1D4E39B59707C2BBCCFA72AE /* FBSDKSendButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 020A65A3E154C0B31D1B0351BD8FFEDA /* FBSDKShareOpenGraphAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8C961059630A4710A51B63E77C7166 /* FBSDKShareOpenGraphAction.m */; }; - 020FAA49E54F3DFA0D24A2D4508306BD /* BSImagePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 074666F512EE438B13AA9E58016D5764 /* BSImagePicker-dummy.m */; }; - 0276287E0E8F78A9E56AB05E8DCD3DE1 /* FBSDKAppGroupAddDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 489A35D242969C1E44FED7F42241982F /* FBSDKAppGroupAddDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 030313BB11CFB89FE56022AE56DFBFE1 /* SWRevealViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A6FA2A392C919EB362600EAF8949D6A /* SWRevealViewController-dummy.m */; }; - 0339052284A47A46E7821D754BB990DF /* FBSDKLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C94BA028E584EB0BCB6128F43BFDB85 /* FBSDKLoginManager.m */; }; - 0354AFAE7420F7E18D47C9E19BB5F0AE /* FBSDKGraphRequestConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B799862E6D27A87E62087D5C721A71D /* FBSDKGraphRequestConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 03E71DCD3453CC52D1503B92195F5091 /* FBSDKAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = DC75847399876CDA58AB6D155B8B6E22 /* FBSDKAppLinkResolver.m */; }; - 04C3A0DB3D6632E53AF7FE845B45A3CD /* FBSDKAppLinkUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = A74DED87D6572B81079AC5978E308C8A /* FBSDKAppLinkUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05A44D5EA4323E675B7335D56AA64EE3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 567F503770CF61BE79C2E1751B9251D0 /* Alamofire.framework */; }; - 05FB221AC2755579479BBCD40E251230 /* FBSDKLikeBoxBorderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 96225DC450AAD892FB05C3505015895D /* FBSDKLikeBoxBorderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0619608E3A27C40EF5E457083D82E018 /* AlamofireSwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50A792ECB8AF43DED6E4C88AFA7B8D3 /* AlamofireSwiftyJSON.swift */; }; - 0691210EC4FFD58AE2E28EC918813988 /* OAuthSwiftURLHandlerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD43EA0E0F580401449137B75CA5A8C /* OAuthSwiftURLHandlerType.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 06A4A4AF7AFC580A244A78B2C7999E94 /* FBSDKLikeActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 947C7CF8D13DD272C34EAC17D688FF53 /* FBSDKLikeActionController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06B3CC660A3B863A48757A30E5343758 /* FBSDKGraphRequestBody.m in Sources */ = {isa = PBXBuildFile; fileRef = A1300BC8F2586C188E564C086A3DBA8A /* FBSDKGraphRequestBody.m */; }; - 08C57BA7C4611C12262FD7D63BEE8C1E /* FBSDKErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F85846DD3E423756586063E4709D1B5 /* FBSDKErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08DAC2F4AEE5BBA86F713F32A79E24AF /* FBSDKLoginUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D449C964012C71CF2F1634115426DDB /* FBSDKLoginUtility.m */; }; - 095406039B4D371E48D08B38A2975AC8 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCA443A27C6C94B24F73AEB9B6B2860F /* Error.swift */; }; - 096FB1973BA9EC2D4C1D8DF698133F1D /* OAuthSwiftClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = B42B3E70D5EEF8CFD0B43AE4DEBC5EFC /* OAuthSwiftClient.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 09CA89656321616AB2CF649279B400C1 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A91E39A71A6A9250E003756420C869 /* FBSDKGraphErrorRecoveryProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A7D3F6374E8E2B7E8CB9B2D3E83A83A /* FBSDKBridgeAPIProtocolWebV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D1F0C2758F3377EB56AD6B70AD9E31F /* FBSDKBridgeAPIProtocolWebV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8703E4AF0023F131B79866B4B705D4 /* FBSDKBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = C2417AB9A025F84684E47E88C1BC08A3 /* FBSDKBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AAEA700978D1406CFC13FFEF8E72BB4 /* FBSDKMessengerIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD7CCB6792182DD4227D2463ECB14EE /* FBSDKMessengerIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE1D7C5C2AE6ACE895F6B267FC9DA7F /* CameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C5ACA0DCDF125E916672B9D869B5DDB /* CameraCell.swift */; }; - 0B74B022BF109C2753A56CD082E10C61 /* FBSDKAccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BD69B6755759E2317F5C2E4D31CCBB0 /* FBSDKAccessToken.m */; }; - 0B8052279201BD94A1829862BFC57B2B /* FBSDKShareOpenGraphValueContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A919B72478A17620F59FD497656264B5 /* FBSDKShareOpenGraphValueContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BC8CA9D876F0078A71FA6DA7E96B4F5 /* add_photo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A752183093FFB2DEA5ADF6FEB2B34F85 /* add_photo@2x.png */; }; - 0BDC4DAA1B69B3349079C5432DE9AB58 /* FBSDKWebDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D7F48A0DF39B55921FABEAF6D1D831B /* FBSDKWebDialog.m */; }; - 0C11E95A97B2D6541603C23A850EC4EF /* FBSDKShareButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F2893A29CDE9E46883B855EB5076A8 /* FBSDKShareButton.m */; }; - 0C153B7AC6B54E7BC47F6C1F02F97703 /* SWRevealViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F1099EB7F8574D950BC2F249B59132 /* SWRevealViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D79E48F5B7F8FCAC2E90DBBCE5FA98F /* FBSDKKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 74155F71266D75256737B79453D89972 /* FBSDKKeychainStore.m */; }; - 0D9C01E9CFFF23D0BD3C3B9A73D48C16 /* FBSDKMessengerIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = FEFA9D0FEB4A4C75DBB6D48AB9A7C9CE /* FBSDKMessengerIcon.m */; }; - 0EEF80A8836783073DB22A229E6DA59E /* FBSDKLikeActionControllerCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B848E82108125EC326D47AB31A2F22C /* FBSDKLikeActionControllerCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F1C84A2FE906A408036822AA11DE763 /* ZoomAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B521064CDB4147936190E4AFFCAFECD /* ZoomAnimator.swift */; }; - 0F6FD8711C8484D95F5B586274678491 /* FBSDKAccessTokenCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = 75776C83CEA1021EE206F357065A5D4E /* FBSDKAccessTokenCaching.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F7824F41301AFB6FAB5725D85BB111A /* FBSDKBridgeAPICrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE8B1280DDF3E2A4C5C90889E9CAD86 /* FBSDKBridgeAPICrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FB1CE9AB76B77BEFC2F5DD025EB6032 /* FBSDKLoginUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 649842685524827C5A5DEFE8E2176519 /* FBSDKLoginUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FED72D02DF25255150B8301A353949A /* FBSDKAudioResourceLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D1EF2B7569E44BFCFAAD97352F88C43B /* FBSDKAudioResourceLoader.m */; }; - 10113E207516DDCAC19E3B2FED7E12C4 /* LocksmithError.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAF19A60B1F095512C96C03D35BE819B /* LocksmithError.swift */; }; - 101C7F4C186E883172ABF5F6E3E1F7FF /* Pods-VendooTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A543CE70E5133398E8F1067F58D68C /* Pods-VendooTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1110C890C028A60D617B28184DFF9968 /* FBSDKLikeBoxBorderView.m in Sources */ = {isa = PBXBuildFile; fileRef = CD9267006DA0E35298E9396AABEC8B97 /* FBSDKLikeBoxBorderView.m */; }; - 11D89502D964832FC217751339F7E7EF /* FBSDKShareOpenGraphValueContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 608E3ABD377E82496A5337A79A221D08 /* FBSDKShareOpenGraphValueContainer.m */; }; - 1200A152A08388893BFA023980C2CF48 /* FBSDKLoginManagerLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C663C1A94947DC754F5917C985A23E /* FBSDKLoginManagerLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1360C072C79DBA6E4B292B7A05B73ACB /* FBSDKAppGroupJoinDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD0550ABCF9C421265864FAFF072379 /* FBSDKAppGroupJoinDialog.m */; }; - 139FE4B378AF69FD65DF73C921B131AD /* BFCancellationToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 24866B7E01F0D0B56791D75DB796B482 /* BFCancellationToken.m */; }; - 13EB929F72B356FC41F08CCF85D5D0C1 /* Locksmith-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA9D82577DC9D1232A8084E5A58EBE2 /* Locksmith-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1434A073055312B7CE4FB95A1605C0A5 /* FBSDKTimeSpentData.m in Sources */ = {isa = PBXBuildFile; fileRef = D7DFBDA3180EF00443EAF69DD71FFAFB /* FBSDKTimeSpentData.m */; }; - 1466EF30D00D1177D0DE725B8D61C061 /* FBSDKURLOpening.h in Headers */ = {isa = PBXBuildFile; fileRef = CD63648FF0505F7CF7AFA8A015F0139A /* FBSDKURLOpening.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1495BCB330D338CEF2E39D10082B941C /* LocksmithAccessibleOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2DD3E17B44CBCFB305A36E92FF96030 /* LocksmithAccessibleOption.swift */; }; - 14CCB9B9C95EBBD456D7E4EABD82E0BF /* FBSDKLoginCompletion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4982F8F1A67FBF21500301D2ED686222 /* FBSDKLoginCompletion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15157568822DD94ED8A8F3A24BCF47C0 /* FBSDKAccessTokenCacheV3_17.h in Headers */ = {isa = PBXBuildFile; fileRef = EB259F7DF0ADA129965FDEAD7B452A3E /* FBSDKAccessTokenCacheV3_17.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156E7E46571EB8762B7507B951FC499B /* FBSDKProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F77A73860E4CC16A3D7909ABD371A2B /* FBSDKProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 15EDAC05EB1C7ADBF13CDE7ECEB68CF7 /* FBSDKLikeButton+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 796A60127F07661498934C4B1F59F171 /* FBSDKLikeButton+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16102E4E35FAA0FC4161282FECE56469 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BAD57A11B70C897CC5BBDF0F8343761 /* Timeline.swift */; }; - 180BFD5C4CF58060C6E4673D16922EF9 /* FBSDKGameRequestContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A183C715041E6B90628D05EAEF64B3 /* FBSDKGameRequestContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1877520854C1B04C797C8FD94308AB48 /* FBSDKDynamicFrameworkLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 00585ED6A1E3ADC4B1994D9C52CB75CB /* FBSDKDynamicFrameworkLoader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 188A670E26DA49268A133953AF0BF038 /* FBSDKShareOpenGraphValueContainer+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3576CAD60037909CEC7337D1032EE1B8 /* FBSDKShareOpenGraphValueContainer+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1DBDBFC387F891086033E7C529931C /* FBSDKCheckmarkIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A2338515D2F2F6F202A29F5805FCC6E /* FBSDKCheckmarkIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A41AA1660DA17FD9EEE7CC544D1C0A4 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = E253AA9DDF4247F2A171F3E1EF35B36D /* _FBSDKTemporaryErrorRecoveryAttempter.m */; }; - 1C12F2E4F1172545BB500BE11DC82D2C /* OAuth2Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = C642432897993B50FBB5C89BDE82CE6B /* OAuth2Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1C33FD78005932356FF3E937998CBCC5 /* BSGridCollectionViewLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCC6C6024CBFE7AFD347F0EF2814B7B /* BSGridCollectionViewLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1CF8B8AD6CAA603A95B2C395AB4057B6 /* FBSDKIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 102531FFA6A4A73B60BE15B1DBC2101C /* FBSDKIcon.m */; }; - 1D289D03369E7C05652B06DBA8CC3860 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 1D716404A2353ADA0326C44132D1EFD9 /* FBSDKAppEventsStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C6A76B7934E11453ADC3EF3002AD8A /* FBSDKAppEventsStateManager.m */; }; - 1DCFCA14CBF89C36D853B87417E126E6 /* BFCancellationTokenSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 23F17D991038A432C69A54A10A996371 /* BFCancellationTokenSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FFE8A6DDCA9246D3EA98372EAD63780 /* UIImageViewModeScaleAspect-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C40B150A72DE55C306B15C57167AF3 /* UIImageViewModeScaleAspect-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 23772EC6E0C5B91318B4350D87BDCE6B /* FBSDKGraphRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 82675B7575195852CE5569845110C28D /* FBSDKGraphRequest.m */; }; - 23A39BC45B1EFDA73CC4A3C6D0792885 /* Pods-Vendoo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EBEA79B4C2F3D8E52CF265ABC735AB5 /* Pods-Vendoo-dummy.m */; }; - 242E73B2F0842E1CF5348D2BC765DE8A /* FBSDKGraphRequestDataAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 310A08853EFDDC0E46DF9D3C1AB0C08A /* FBSDKGraphRequestDataAttachment.m */; }; - 24600483CE2FB9BBDED179CCC892F3F8 /* BFExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EEDCFEAF51272FF38ACF0E280CD319 /* BFExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 246B33E8266726E300011481E9237428 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 24874650BA474E95829A5FCF9FC7E70E /* FBSDKCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A9055B74C0D7BA3FC38D2A71D1D43C /* FBSDKCrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24DB7D4E986A59B0E032E4F83A69536A /* FBSDKAppGroupJoinDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DFFB7866D23E56DAD81C5AC4FA3678B /* FBSDKAppGroupJoinDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 27475CD6178BFAF6C02F071E7D6B8695 /* FBSDKTestUsersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1BF16F3FC60A2E31302FEAB3EC5656 /* FBSDKTestUsersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 27591714E6846BFD95B8FBBEC15F97D1 /* FBSDKShareOpenGraphContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A2822B4B35937899E996FBBE5686F7 /* FBSDKShareOpenGraphContent.m */; }; - 27AFC2D1A21EAE366618898F50287183 /* FBSDKAppGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E66B0CA1D0CE47F01ED37FB8B0B0C06 /* FBSDKAppGroupContent.m */; }; - 27B378AAF73A1EBB45FFD7EA38D37247 /* FBSDKLoginManagerLoginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 9139E797B9DD8806512CB1B143F3A007 /* FBSDKLoginManagerLoginResult.m */; }; - 2866B55F0B1E204001EF16753AFD3426 /* FBSDKHashtag.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BBEBB8FF0BC75C5D51499B3D5A85B84 /* FBSDKHashtag.m */; }; - 290E7890207984177124BD5F84F0D04C /* FBSDKURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C8EAAB36169AFCA3D293ECB1F507F4E0 /* FBSDKURLConnection.m */; }; - 291FE1D4F4658AE8249A7AA798367A07 /* OAuthSwiftHTTPRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A97A75036D889273A7E5A183268DBE /* OAuthSwiftHTTPRequest.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 29D5072854A624ECD53A502670BE3498 /* FBSDKServerConfigurationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7344AD8B08164EEC7FE43F081D1BFCF7 /* FBSDKServerConfigurationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BD969D274F4CC68A4E73E74135AAAB6 /* FBSDKAccessTokenCacheV3_17.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D0BA59E7B6E322356BDBA5A4A13C66 /* FBSDKAccessTokenCacheV3_17.m */; }; - 2C1DCEEF93879DDE6AD0C2F2BC350C0A /* FBSDKLikeDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = A52BC5DBEC25748270082E0734AFBF4C /* FBSDKLikeDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C737796AAD49FE609E7FB0CCF8A263C /* Bolts.m in Sources */ = {isa = PBXBuildFile; fileRef = 65B02BB38EC53DDB0CCEB2EA4FA4860C /* Bolts.m */; }; - 2D328AD191D951FE755FCF0F4FBFD86F /* add_photo.png in Resources */ = {isa = PBXBuildFile; fileRef = 0E70F017E5CF0CFA3D444BCEB3CACF58 /* add_photo.png */; }; - 2D3405986FC586FA6C0A5E0B6BA7E64E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65CFD899AB7F08E9D9E85D71B99AF379 /* Validation.swift */; }; - 2E5AA7B66CE7F0DB9CEFC25F55C41124 /* FBSDKServerConfigurationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FF34EF9AD5646F68DC259202336F9C6 /* FBSDKServerConfigurationManager.m */; }; - 2E8C5651C2D34FAD23D4395363E80A3F /* FBSDKAppEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = FB62E7B6205255E836FA08D344D2FF5D /* FBSDKAppEvents.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F9492A82F7B9F44D6452E5A1DFB986E /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 04284A439C8B4AC0CBA14CA4B8270F58 /* _FBSDKTemporaryErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA0E03C590839B4243AB5B91DD749AF /* FBSDKShareVideoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 89F08BE14793B3EA58B3AD92AE96A07A /* FBSDKShareVideoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2FB79A55DE2E9F7ABB3B4C7871CD0C5B /* OAuth1Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB3B42F37F833F7170CC38A6583B9FD7 /* OAuth1Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2FF1B23AA41F471B163257FEF07E3B95 /* FBSDKProfilePictureView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A96153A48825817291791F039CA46BC /* FBSDKProfilePictureView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2FFADE6D19B6BED1A0650D0CEC6EC9A1 /* FBSDKBridgeAPIProtocolType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1872ADAF509392B8CAD989661AC908 /* FBSDKBridgeAPIProtocolType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 309BA559E28A032D7AB8DA1BFB1ED288 /* arrow_down@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6AE20D4830FE4654C5D7177640373842 /* arrow_down@1x.png */; }; - 31694BB1A321078621424E065953D9DD /* FBSDKServerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 50398AACB5DCECEA07598D46262F60C1 /* FBSDKServerConfiguration.m */; }; - 3249F988C94C1B64192C42A11902D850 /* FBSDKLoginError.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C75E364438BD4A2A91EFA34C2EC4F5 /* FBSDKLoginError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 334A9EB0A89E519A4CD425EF39DCDA2F /* FBSDKLoginManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 94DFF4BE2F56F696B7AF138F842DB762 /* FBSDKLoginManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 343843D298290E746FF42BFC7EEB9AA9 /* BFAppLinkNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C61F87C58C6A6FE77802A33C76C0B4 /* BFAppLinkNavigation.m */; }; - 349308F0D458195CBF3C7D9078D59547 /* FBSDKDialogConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B27661861AC166A62F7292B060A1BFE /* FBSDKDialogConfiguration.m */; }; - 34CCDCA848A701466256BC2927DA8856 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD4653F9EF5387CFD789FA4ED63FF612 /* NetworkReachabilityManager.swift */; }; - 36EC0F3B99211C490C358637095E707F /* FBSDKUIUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 982F2721D6A780FBA5FE26976E687F06 /* FBSDKUIUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3708AA48F1D26CB56F88BB6FEC72DE36 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07D413BD2B46425A6A1570F69E06C663 /* Bolts.framework */; }; - 3727D92D4B6CF5B09E53F33C773876D2 /* FBSDKMonotonicTime.m in Sources */ = {isa = PBXBuildFile; fileRef = C1CA78786A0DC12B5DC7109736F0BAF6 /* FBSDKMonotonicTime.m */; }; - 375E8C355CB9A979E9F03DAEE9703171 /* FBSDKShareOpenGraphAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8178B458BE535BB1F89EBD46A95E14 /* FBSDKShareOpenGraphAction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3823A8BFFA8A36D1F2B1D718A1057719 /* FBSDKSystemAccountStoreAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB4966A17805B570E55239F70E8086B /* FBSDKSystemAccountStoreAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 384AB7595557A39CB10CBD9CB467D24D /* FBSDKLiking.h in Headers */ = {isa = PBXBuildFile; fileRef = F11558B5B3AC9BE785C8E35879597413 /* FBSDKLiking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 385E8CF0234426575581CCA6F53DD434 /* FBSDKGameRequestFrictionlessRecipientCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FE68BF533DCCFE85E4DA6016E0D8FC13 /* FBSDKGameRequestFrictionlessRecipientCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387B78488B01402C1A6A04A4485972AA /* FBSDKShareUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2D479798E817CFCD34A83767459319 /* FBSDKShareUtility.m */; }; - 3889F62AA2888DB03BBCA7D588BF6255 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAA01DE0111A9F506F2FB39CE5E3169C /* Photos.framework */; }; - 38EF43F03EBACFE40F480F4F8BC20FD5 /* BFURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 3487F9F0834A2984F7A6CBBFE77832C0 /* BFURL.m */; }; - 39CC77EEA7D338BAC4838DF5A0042FA1 /* BSImagePicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = DC61298D95492056180D4E82292683B9 /* BSImagePicker.bundle */; }; - 39E4FA2B5D0B8EFD4F9B953111DA1CFC /* BFWebViewAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB835A81494D3C2D0A0B220A8832F7 /* BFWebViewAppLinkResolver.m */; }; - 3A01CE59DF9D68D5F2623F88E522A33E /* FBSDKGameRequestFrictionlessRecipientCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A43E138280037788B9779E42E7F26840 /* FBSDKGameRequestFrictionlessRecipientCache.m */; }; - 3A31EE2CDC26FC7889C0059514E91C3D /* FBSDKButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A9008D2C5B0F8B7778C46F17423B567 /* FBSDKButton.m */; }; - 3B629068F4BE1D7821957056F25E33C1 /* Locksmith-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D60BEEDE547DC959C87DCE5C2A337F9D /* Locksmith-dummy.m */; }; - 3D6D69351FD8DF6501A8144FF882C074 /* BFAppLink.m in Sources */ = {isa = PBXBuildFile; fileRef = FD9D2CF433AB125F0F2DBE488512280A /* BFAppLink.m */; }; - 3D75C1A03F08AB28F30D41A9E3E5389E /* FBSDKAccessTokenCacheV4.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D969E26C97DE3830657256C23CE423 /* FBSDKAccessTokenCacheV4.m */; }; - 3DB7D1D261D974F55FDB4DD7AAC42861 /* FBSDKErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9005C358A54C7976DB11F820376783D0 /* FBSDKErrorRecoveryAttempter.m */; }; - 3EA077D046DCD950DCAC4BCD2C1C3233 /* FBSDKShareUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E529C1567A298A27D4C2347B639E96 /* FBSDKShareUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA8F215C9C1432D74E5CCA4834AA8C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991E400F5F8D69F5A3F934C47D1BCB33 /* ResponseSerialization.swift */; }; - 3F17A710798B958949B20EC8D0CCFAC0 /* FBSDKMessageDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEAD1F5161DF65F4720143F881D2784 /* FBSDKMessageDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3FD0D93AD926C94818225AA013D70FDF /* FBSDKShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0FB6610DC6E2EE881A7DC1A27AE08B /* FBSDKShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40014FF9B9A69253E2C34E8EAF771BA2 /* UIImageViewModeScaleAspect-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 147C50DF4618A2768681CE1518C192B2 /* UIImageViewModeScaleAspect-dummy.m */; }; - 406804221AD8D7EC71E4CC582AF7B1C2 /* FBSDKAppGroupContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D2C392D522C846CCD8DA11C2063034A4 /* FBSDKAppGroupContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4081EA628AF0B73AC51FFB9D7AB3B89E /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 065D53220074C0C7F3881F4382724E6F /* Manager.swift */; }; - 4091FBB9624025711B56808DA069BB99 /* FBSDKAccessTokenCacheV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 593AB69DED4AEFE1CEDA10CADD30A12F /* FBSDKAccessTokenCacheV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 409F5BE5BDBB1D3850F4D62D5504D662 /* BFTaskCompletionSource.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5B9669CD4CEF740D2D480081DC9727 /* BFTaskCompletionSource.m */; }; - 4142B023AD5F064B77F97768E6CE29C5 /* Alamofire-SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF640AED47FA26774752EF8D52D21EBA /* Alamofire-SwiftyJSON-dummy.m */; }; - 4151A1A3483D663770E5AC8E08E89474 /* FBSDKGraphRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B24C65D035024B4009D1610DDA85698 /* FBSDKGraphRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4157F58C771B24EB545FBB57552535B2 /* FBSDKGameRequestDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D1860D7A5238ACC9C6038E11D199E7 /* FBSDKGameRequestDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 41A00F5CF45C7D1B97225996C473293F /* OAuthSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8D1A1E332DFDF95E8E370C8940881D /* OAuthSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 42890EFA1A9960C220BFA8647831E467 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C7E41DB504B5085893E87016F3220F8 /* Security.framework */; }; - 42F44AD72DA11C66072D46BEC5DF08B2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 443CD693458E72E577CD457C3F55D9DD /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33E1AD8B8BF1ABC79CAA7A95CC8704B8 /* FBSDKCoreKit.framework */; }; - 4546E3FB56F3693D2893B773F71C3097 /* BSImagePicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBC6109805EA4248DE2E19CE824D9A4 /* BSImagePicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46485D36E37F397B7F56EE76B3382C85 /* Dictionary_Initializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5ECCE32286C17193FDAB658F298D8D7 /* Dictionary_Initializers.swift */; }; - 46E961BEA7247217652A5F012F82FECC /* FBSDKTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1FCBBBBE8561B3A94CEDD05E76B5987 /* FBSDKTooltipView.m */; }; - 484BA6D52FA1AAB3CE29A0A41F3F6EAB /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07D413BD2B46425A6A1570F69E06C663 /* Bolts.framework */; }; - 48D8F32EC0B32EEE9FA0B8F60E447887 /* FBSDKPaymentObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = A86AF9A2EF93E594325C866E6D47CAFC /* FBSDKPaymentObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49239C6CF815B92F2DF5B5D79FB9B5AF /* FBSDKTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF1A4CB76EA84CE3085BBB9C9668594 /* FBSDKTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A538EABA423805871FA5434EDA89D9C /* TYMActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = A10218D8B31AC8814359543B426DB575 /* TYMActivityIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B42AB3B0147E10869BABB83CC9D1770 /* FBSDKIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 49E8704CC714CCD7BB22ECC051374143 /* FBSDKIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B4B2B87CA851CEDEDF6AC671EC8D862 /* FBSDKKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 117B725E5F86F0C275D2D9877C3C200E /* FBSDKKeychainStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C1AD82A4DEEE0D1D2B34913ABBBC311 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */ = {isa = PBXBuildFile; fileRef = 0481D060F297511141C86A7373CFC26A /* FBSDKBridgeAPIProtocolWebV2.m */; }; - 4C1D00D2AAB1C6C511FF8F5FC76698D1 /* FBSDKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5F547944D3F031CA55532A5C29A8AB /* FBSDKColor.m */; }; - 4DA130F813859583C3363088029A470E /* _FBSDKLoginRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = A963EED82F576FEA291A7D41EA855FA6 /* _FBSDKLoginRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DCE84710050E8583735F97ADC84FCA7 /* BFAppLinkReturnToRefererController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7941E4F5171B1B346547196159B7F021 /* BFAppLinkReturnToRefererController.m */; }; - 4E23C0C3C5CF154075BDE3E79D2EAC43 /* SHA1.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8BED27F246E70ED0FBB0137173A333B /* SHA1.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4F3AF2A36297BA61978025EE89C7FE97 /* FBSDKAppEventsUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = E7954DF8AA6F3D2E5974439B648823E6 /* FBSDKAppEventsUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514B1324C72A235480C29BBC3AD1C250 /* BFAppLinkTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = A22A44A17DA26A3B0EC4CA6E006CFE44 /* BFAppLinkTarget.m */; }; - 518927A77B9F0D1E5D960E22694EEFE7 /* BSImagePickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F62499A17E949433ED6392AD5830F9F /* BSImagePickerViewController.swift */; }; - 518C27917941491F2434FDE54E13684E /* FBSDKWebDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = B005E7104367C75FF2F67F81434D99B0 /* FBSDKWebDialogView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519324787413E43E08A6A85B7D0E72AF /* CameraCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C74938FAAF8997FDD495A4FE80C88E5 /* CameraCollectionViewDataSource.swift */; }; - 52681368D4EB6EE79BE9FEF151AC185F /* FBSDKShareDialogMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8923C60E9F94D742D3E09828D91D0EAD /* FBSDKShareDialogMode.m */; }; - 537E710078694948A4693E42674ED1B9 /* FBSDKAccessToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0D17FD15E6DFF97362D33AEC4326C3 /* FBSDKAccessToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53AE57B03773935906E27EAE7D903A75 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54C7096A93492BE25FCD41B622F90137 /* Settings.swift */; }; - 53C50C8277DD48BD3D6B9A6CAF9B226A /* OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51CABEFFE4D4CA365C2BE1A9DFEC042E /* OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 543069E7AFC0805EF1CB25199D201424 /* UIImageViewModeScaleAspect.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 843C8694F530D4A2885C27905C175FF5 /* UIImageViewModeScaleAspect.framework */; }; - 5493E80E04D895A735853EA349C4AAE3 /* BFCancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 87A2AE4A4B440B1E19C1CCD0DB7E28CD /* BFCancellationToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 54D00A6EF2E46F4A4672CF5FB6492E1E /* Pods-VendooUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED1D2220615A13294FD6AEC63793DA67 /* Pods-VendooUITests-dummy.m */; }; - 55844A207DAD926A4DAFC046046450B5 /* FBSDKServerConfigurationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FDC82380588290CC983685C24A9BEF /* FBSDKServerConfigurationManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5611FBD348B8C8A4FFF9875FF2F5BDA6 /* FBSDKGraphRequestMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = A71AC4C06ED50F6E1C0D138D5488CCDF /* FBSDKGraphRequestMetadata.m */; }; - 57FA7FEEEF914BE0BF48A58ED1880B22 /* FBSDKAccessTokenCacheV3_21.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A2B615A6D122C23E743AE0723C10D70 /* FBSDKAccessTokenCacheV3_21.m */; }; - 59837E92C1E6B0650A77FC8664DF9DA9 /* FBSDKWebDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C2B4DA54AE1DC17D644FDA1E22DA6B1 /* FBSDKWebDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B4A11C6CEB352D03892AF9828AB52B /* FBSDKBridgeAPIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F638C0DC2035DDD0C99EFA5D2CB04C0 /* FBSDKBridgeAPIResponse.m */; }; - 59EAD820352D00DF2ECA0A4E92F4BA0D /* SWRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E001D62028040BFBE01777DFA9CFD9C5 /* SWRevealViewController.m */; }; - 5A40CE0717F4DFAF776F12F835401D72 /* FBSDKShareError.h in Headers */ = {isa = PBXBuildFile; fileRef = 865087E2141F346423CE18A38514C82C /* FBSDKShareError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BC19E6E0F199276003F0AF96838BCE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = B65BCE37CAB750EAEFE28F575BDCCC7E /* Upload.swift */; }; - 5C9BDDBB790ACE3711E8AD09A13E0FB2 /* LocksmithSecurityClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68BF04DB97D03BE014CA5EFA5213898 /* LocksmithSecurityClass.swift */; }; - 5CB05FBCB32D21E194B5ECF680CB6AE0 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61CAAEFC2E3CD7D22729B1A9187B1E22 /* Download.swift */; }; - 5DB28EB181DDB2482EAB7052C0FFDD4A /* FBSDKShareKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 602327647D485001C987606923812A24 /* FBSDKShareKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA916E98A026DD4FC5E05EF9B921F0F /* FBSDKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C8CD7E5F23E765659BE7C6397DAABE2C /* FBSDKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F26B65B4A4711EB4BC2BC9BC48FF041 /* BFAppLinkReturnToRefererController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F451A818A81CE1CA2997B22E2F824A8 /* BFAppLinkReturnToRefererController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F984685580DDF4C89B490D699CCCDBB /* Pods-VendooTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D58E7F41DDEFC4928A1F0F58E051454 /* Pods-VendooTests-dummy.m */; }; - 605DA560C2D69698B1BA8DF3C5FF74C2 /* NSData+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 047043BA5ED1DFFAA5FF9EFB9BE03583 /* NSData+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 60A2123AE07346F415CA44359F873F10 /* FBSDKAppEventsUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = EC9756846F12CD66E7DD424EC3747FF8 /* FBSDKAppEventsUtility.m */; }; - 60CAF8D6E879B1585D61B55EE807A113 /* BFTask+Exceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D0B5FD4BF9A0FCF2244EF888F8B2E5 /* BFTask+Exceptions.m */; }; - 60D1BCD436C3EBA8135B3AFC9130CB11 /* ComposedCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B1F143DEED52672FF770D256AD406F /* ComposedCollectionViewDataSource.swift */; }; - 612A5931CEEFDFA056FE645BDD784469 /* Locksmith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 977A77D81A88A77122FFA1749EAFD6DB /* Locksmith.swift */; }; - 6167D4C5CA1DF7E209EE66CD5E706DB5 /* FBSDKLikeObjectType.h in Headers */ = {isa = PBXBuildFile; fileRef = DEECAAB37A6681AD4FAB57CA6E7837D0 /* FBSDKLikeObjectType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61B3E8B44D6F2EA17EDE942B24371232 /* BSGridCollectionViewLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5834D092F8D0171E162692CB9CE409E /* BSGridCollectionViewLayout-dummy.m */; }; - 6200682BC2425BD28680140B8EF3851E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 62E8346F03C03E7F4D631361F325689E /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6B54C15DCB9A7BA20CDE7BFA5AA373 /* Response.swift */; }; - 652EE84BA55F2A6BD325768B753565D8 /* BFExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 846B4EBC0175F58BE1532936CBFE5775 /* BFExecutor.m */; }; - 65AD76A5209F07993BCCF096FA03E254 /* FBSDKLikeControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6962FBDE51D8EE80C263B9AAC3E73544 /* FBSDKLikeControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6607F176EF0C2BDF9BCC417DD295D59D /* FBSDKBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = FF7944625454B89BEC43950C629C0CFD /* FBSDKBase64.m */; }; - 66533D7A594AA93C8C43EF1BCE668A74 /* FBSDKAppInviteContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6909C0A42D79A9E7E20C15555B7D3AF6 /* FBSDKAppInviteContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6745F3DFC6CCC37EA42C4930668DA40F /* FBSDKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B15BA2F96A1B552097D87B1811F8BA /* FBSDKColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67C9843DC2B4557A9EE0C5D01604A0E7 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 3801439DB12503E7AEE6DAE4126062F6 /* FBSDKBridgeAPIProtocolNativeV1.m */; }; - 6817DE148CDBD0D314AFC83255A645E4 /* FBSDKLoginTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0695B1CE2AB89CBD00AF988F55F4AA28 /* FBSDKLoginTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 683FC99BAEA8DDE9EBEE2EC93F949B36 /* FBSDKLoginManagerLoginResult+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 539A45FF2820C0397EFA4E7CC7593DAA /* FBSDKLoginManagerLoginResult+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C148EE56D18F37FF7AAB71AF7F585C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 6A8B92B5BDFBEE6BD3F70901FB71A0B1 /* BFTask+Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C17713B1BE88DBC925AACAFAA39431DE /* BFTask+Exceptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B7DD32A130E3052BBB254E95E8897F5 /* FBSDKGameRequestContent.m in Sources */ = {isa = PBXBuildFile; fileRef = A60B16716C97852AB1160B56E65418AF /* FBSDKGameRequestContent.m */; }; - 6BC497E6FA97D13CEFE6919C46F7EFF4 /* FBSDKLikeBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = 894B1052D8FE7F7E8F3E7D9FD7596337 /* FBSDKLikeBoxView.m */; }; - 6CBA87B13DCF3BB31FBC3F1CC4BBB7C6 /* FBSDKTriStateBOOL.m in Sources */ = {isa = PBXBuildFile; fileRef = A278B2F70AF954A065AE9C303067A04C /* FBSDKTriStateBOOL.m */; }; - 6E2B6054F217E3D01C59665D011B09B1 /* BFMeasurementEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AB2860D5960EAA904307CF3042B0F4 /* BFMeasurementEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E5FF658A31E46A6FEBD04A1D1D89608 /* SWRevealViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BAE11C2962723A078F03352E1BE903 /* SWRevealViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EF01843152A0624110E6E8CAB0BCA51 /* FBSDKContainerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBC1A264CFE6A49DCF38544FB6A0F2A /* FBSDKContainerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F59181990A639365B6BDCE65407275A /* FBSDKBridgeAPIRequest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 390305A498AAE4FA6384C23885D35381 /* FBSDKBridgeAPIRequest+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F852F8B67F8A20BB296716E1AEE0AB7 /* FBSDKShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF8FF7F1F5A41A485B53F14572555D88 /* FBSDKShareKit-dummy.m */; }; - 6F8F81979B066F27456733EB3BDD21FF /* FBSDKBridgeAPIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 372F83A049E110D3040FD608B0821469 /* FBSDKBridgeAPIRequest.m */; }; - 6FB287DB5361328A1AAFC6D644E94B07 /* FBSDKLogo.m in Sources */ = {isa = PBXBuildFile; fileRef = 66E96A6BEBE3696A76E3490F422AE22D /* FBSDKLogo.m */; }; - 6FBD31B0BB27AAEFFFFDB275DD3AE781 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = F3DC348F8E164E9470500E7CB23F1C0B /* FBSDKGraphErrorRecoveryProcessor.m */; }; - 7002E8961D24E86FD580DBAE8ECB8D5E /* FBSDKApplicationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F6736D9F0B1505FFFFE7AC412FD10B /* FBSDKApplicationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7008126788B83DF17DEFE2568CA741A3 /* FBSDKCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = E7FE9051E610568618F17E68647F27BE /* FBSDKCrypto.m */; }; - 7333194276505D454DACD2603FEE0271 /* BFCancellationTokenRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = B6166152F208DD96BC186D561AE2B763 /* BFCancellationTokenRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7384AFE0F0221D2843EF6451D653C441 /* FBSDKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC0B01FFCB35DD68C88FACD120209CB /* FBSDKError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74022FE229C24EF067CBA98969CEE134 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6C70240235B773AB077A864465CAB7 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74D81A016D09E77EC6592AF70252A6FD /* add_photo@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 5CF391926CFB207F583FD6914621B8F3 /* add_photo@3x.png */; }; - 75BAFB5D292A5AC28EBAC6EA8D73CFC6 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07D413BD2B46425A6A1570F69E06C663 /* Bolts.framework */; }; - 763D43357E0BE90EA6462FC331E8302F /* FBSDKUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 65565131FFA5724E2E45C2EDA504D7EC /* FBSDKUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 763F76FF18569C1C701FA8B251DA3AFE /* FBSDKLoginManagerLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 25214FC370DBA9171E505277714C6DAE /* FBSDKLoginManagerLogger.m */; }; - 767C65F9CCCCA6B6E0A43C04594899BC /* FBSDKLoginConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A84FAB7F0AEEDB73B4F1C1A2754EB4DA /* FBSDKLoginConstants.m */; }; - 76F96A14F0A8DBF44BD7E419DAF7B877 /* FBSDKLikeButtonPopWAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3BA5332F468A9B5097D7C52556D260 /* FBSDKLikeButtonPopWAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771AD42E937BEEC7A076A4BF17648EF8 /* FBSDKButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABB4A1B059F2C3DB988E439B0663CED /* FBSDKButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 77BF46EE1E54C91A7080408F8767A3DF /* FBSDKShareVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB9E8B88091771CF8F46E704F83D60A /* FBSDKShareVideo.m */; }; - 78086867BF7BBED7E16245632C4E84CA /* FBSDKLoginError.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6AC5173F7217ABF3809A93327DD1B8 /* FBSDKLoginError.m */; }; - 7996B7702DB8A5159CD112BE8CFA5224 /* FBSDKCoreKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE86188A6FCBF74B3DDF80DAF762D8D /* FBSDKCoreKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B3DE66F98097DCC94CF2F0E963AF686 /* TYMActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05077CAB156AE33EC587C987ECDC5CB9 /* TYMActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 7B48852C4D848FA2DA416A98F6425869 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1557F9A73BCA4280CFF38131D0CC8DFF /* ServerTrustPolicy.swift */; }; - 7BB98E50240143972C28AA9A13EBC3D5 /* BFAppLinkResolving.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D2032BA6AF5FA88BD87D90D636C72B /* BFAppLinkResolving.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C01D468C87DE13E87024F391334136E /* PhotoCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A057AA22CFCA210BB84AC4A5B093722 /* PhotoCollectionViewDataSource.swift */; }; - 7C0A600BF8CCA0567E34D7525B1E3885 /* FBSDKSettings+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C36E333F288C77A5DB664E62FC9606CC /* FBSDKSettings+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C7E248D341E116E1A7B8C16A8F58C6B /* BFTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E60FE64092695C063A33536C0DA25435 /* BFTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7D8F17E4DCB3809E8BD5AB5CBF4DAD24 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 7E0FB67B25F1F754BFD01E4D1D01C131 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEDB7FCF970C84E7527FEE289032673D /* CoreGraphics.framework */; }; - 7E4FFCA3E9CBDF739BAC1B866B13E17B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8055667DA374E73C342D2DD45A6F89A /* UIKit.framework */; }; - 7E9100394CBFFADF64B26C6F4373F78E /* FBSDKAppInviteDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F468D2D85E60F7B77ADF876970CE0F /* FBSDKAppInviteDialog.m */; }; - 7ED5EB3F1C101076506DB68E0BC5B6AB /* FBSDKAppEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = DD236ABE38E9FECEE2D4CF2EEB68502E /* FBSDKAppEvents.m */; }; - 7F70DD03F9ACE65B00724DCA0309602D /* FBSDKAppEventsState.m in Sources */ = {isa = PBXBuildFile; fileRef = D83DCEFBF3B74BBF36975295642693E7 /* FBSDKAppEventsState.m */; }; - 808E738E1648120C1045BB75BB8AC058 /* FBSDKCheckmarkIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = B64DF11C8BD499A4782241F992AA7E92 /* FBSDKCheckmarkIcon.m */; }; - 808ECA8D577A4288E2F06046DE517EED /* Albums.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CDC250023FB068DF3790C6FE60C27D7B /* Albums.storyboard */; }; - 812CC9954198FB632F3670E2D554898F /* FBSDKShareConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 288D9E5050F0E674F404A205AD3EAD7D /* FBSDKShareConstants.m */; }; - 8170C4AC05E84ED31A9D33A4CD205D2C /* BFWebViewAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0286AC40763D10FB43674412311E2DA5 /* BFWebViewAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82008ED885D5AB3464812191AB960057 /* FBSDKShareVideoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EA03B9137A04087367F68DFB797902 /* FBSDKShareVideoContent.m */; }; - 820EC949704070BF53850AC06B4CF665 /* TYMActivityIndicatorView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08AAC66ECED2E479C06BEA3F3C1C6417 /* TYMActivityIndicatorView-dummy.m */; }; - 828A250670EEC2897DACA767080A8CA7 /* FBSDKLoginManagerLoginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 36858D379ABF898862C0CC535C04F330 /* FBSDKLoginManagerLoginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8347B4DF59FC5B188430E56C185F2364 /* Dictionary+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7A8D06D1CD34DC280BD5683F6957575 /* Dictionary+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 85E8D739830AC6F6E98D7B43A2932099 /* String+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 493EA3001F82D4B6A91B88080CC1E4CF /* String+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 86627AB26AAD2D5D5B60FD98BF9F3BE1 /* FBSDKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B64745B9C832249713091DC0D800E /* FBSDKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 86A4C9883826DA7856397C1EE3441257 /* FBSDKShareLinkContent.m in Sources */ = {isa = PBXBuildFile; fileRef = BDD20D1858222BBBBFCDD1E9E6494BE1 /* FBSDKShareLinkContent.m */; }; - 86ACEBDE1686451F2370C05812756E23 /* FBSDKConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 587E054373A1A6251BBFA320F1C5E777 /* FBSDKConstants.m */; }; - 86C7B4DC7245C1E31565C74EBC34B5A8 /* FBSDKLoginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E40926780CBF827123D55435033CAB24 /* FBSDKLoginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 871DEEBCCD0B2F702C162DF9F6AD1F30 /* OAuthSwiftCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1444C252F858D5B70E6613EB1A27425 /* OAuthSwiftCredential.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 878FB8F86BAE97E0179D51D1569FBB60 /* BSImagePickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = A009960F5CE077103C2136FDF71707FA /* BSImagePickerSettings.swift */; }; - 87FB0D874B72B2C3475F51AB24F61817 /* FBSDKAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 519E05B853D79A208722EF4CB5011EB3 /* FBSDKAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 885EA75AEF9C1C5631087D67494599F1 /* FBSDKLikeControl.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD2E42A6319CD9E3F0A34D1037E1418 /* FBSDKLikeControl.m */; }; - 892A266BC8D285F22E625625249E757A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 89553EB9F15F76B70F62E8F69BB1684C /* AlbumTableViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 153D1C677A1493BBD4CE01B8DE923330 /* AlbumTableViewDataSource.swift */; }; - 89B59BD52908BA3B2EEED23398CF79E6 /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33E1AD8B8BF1ABC79CAA7A95CC8704B8 /* FBSDKCoreKit.framework */; }; - 89DB4F68F200EACC31577431D7AAB64A /* FBSDKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C2DC012AC8044C478D4048744B178BE /* FBSDKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B661D874626A9D1A8B4C34B6A17C479 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C68F495B7D884C7BC1E249C8DA53550 /* SwiftyJSON.swift */; }; - 8BB11C8D9F58C1E81A26BD7EE74093D1 /* FBSDKShareAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 47BEFCC11356F38906F17BD5C394F6A0 /* FBSDKShareAPI.m */; }; - 8BF401C38065E3AC9BD840243F4DD820 /* FBSDKAppGroupAddDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 074E31C7E72CB0A28336BD0B2B3C9B86 /* FBSDKAppGroupAddDialog.m */; }; - 8C7CABBE4EC64C461AF9AE36EA44C050 /* FBSDKShareMediaContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8757B8C83282F0EAFB61326094B507 /* FBSDKShareMediaContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D7EA0A6E5D522BC65CACC0BA7D23B0E /* SelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A4112D7F49026838195AFF9C399AAE /* SelectionView.swift */; }; - 8DA408A27B20CFD43FDA70C8FC647AC9 /* FBSDKLogo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDBA9CD01260465C28385EF473F325A /* FBSDKLogo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E678F3A93AF7E81BD5B4DE16E9FAC71 /* FBSDKMessageDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = D4DFC37175F17A9B211FCABE8479CBCD /* FBSDKMessageDialog.m */; }; - 8EB11202167FCDDF1257AAAB1D1FB244 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4353290ADBE9EFE332DFDE3890A3F8AB /* Alamofire.swift */; }; - 8EDDCAE539DCE9EA7BCC1895C4C4A567 /* FBSDKSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 848CB23B7D7142592ADD551D8361E7AE /* FBSDKSettings.m */; }; - 8FD9899D436F154F3491C5D308B57B32 /* FBSDKSharingContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 612DCA919E91F9CD41BC8508DEC999B6 /* FBSDKSharingContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 917B32BDBDF0928BAFF4201C924BA155 /* FBSDKUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = EA5D3E2313791FD2EAC0E91B916A783A /* FBSDKUtility.m */; }; - 91C09AC2A52ED69A27C8D923139A006F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - 928AA17E8C87D9559CEC0F3EFD75EACD /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D2E2DF74BBF1B25658A15C2D14C38B /* FBSDKBridgeAPIProtocolNativeV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 932C49EB7BA256473D43C610DA6BF386 /* FBSDKProfile+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D012656C9A828B81C86CBFE14D38C5 /* FBSDKProfile+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93CB179F47B5E343CCF361D181638E2E /* FBSDKShareDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F2E1B94E40710E052D28853EED0B21 /* FBSDKShareDialog.m */; }; - 9469DF81ECB494E84675969B5E13374C /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 55CA6E736C9F7DC63AEEBF63B4C2A705 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 97CD6CF37BB5BE78C2A234AC897802B7 /* FBSDKLikeBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 04020163FF5B24AD27377748BC8095DF /* FBSDKLikeBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9817C864118A1756B997A687DC14B84A /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10EFD9326532CBF3A652E975458D4CA2 /* SwiftyJSON-dummy.m */; }; - 98AF6E202E68E9B4F22202842DC0D619 /* FBSDKSharePhotoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2E459AE017AF237B83ABD87D07644 /* FBSDKSharePhotoContent.m */; }; - 98CCDEA46756A3A8A0FC9B9472E682B2 /* PhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FE7450DC72C8EE682287452D97D4D7 /* PhotoCell.swift */; }; - 9991B7ED54593BD5F26EF68DC59E1D4B /* FBSDKLikeActionControllerCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 900C71B8EEDA1FC7F1B63B41300A448D /* FBSDKLikeActionControllerCache.m */; }; - 99BCC2F48031C4DF19C25EC274DB057F /* FBSDKSharing.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D303DFDF96F1212BF6DB6B55685FB7 /* FBSDKSharing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 99FA28E0A77EBF35E1C94E6C5851DB44 /* BFCancellationTokenSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F9D53B5C1E6B52A37D1EC474EA9DAF /* BFCancellationTokenSource.m */; }; - 9AE3BB10BC5F5D2AE74A19D30917617A /* FBSDKDialogConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 056A50E41ACD45E5A241F1874759D8A6 /* FBSDKDialogConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AEF21BC71A0C2AF841513A013F197EC /* FBSDKApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F212EF02CAE8C4C1085FC42B289F2E43 /* FBSDKApplicationDelegate.m */; }; - 9B045FC64D2A32D380593AEA86A28904 /* Bolts.h in Headers */ = {isa = PBXBuildFile; fileRef = 40865343B41DE6056DC3EFBB6E81BB8B /* Bolts.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9C54F07A5D6128AEA08BE4131CCCF746 /* FBSDKPaymentObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F652D5887C997300B6B384F094AF3BA /* FBSDKPaymentObserver.m */; }; - 9E40001D7D2CAC32039C59FC0208A7CA /* Bolts-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8310D2F6EE6852D032E667DD27336189 /* Bolts-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9ED4B168116CB499803EC612E1DB1396 /* FBSDKGraphRequestConnection+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1E69121493656638A217E352916884 /* FBSDKGraphRequestConnection+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F6583620EA28E354C4A4F5891E087FA /* Pods-VendooUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF79BC0792545A7FE5B98E8EE5A6BAE4 /* Pods-VendooUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A0DF7E397B57D50B5E89228082DB4361 /* FBSDKShareMediaContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 346BFB52A6FE166A7644F1EA2D2F17F9 /* FBSDKShareMediaContent.m */; }; - A1A522460FB8F634AEA3F48F9C0FC7D4 /* NSDate+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7880F3320D04C201FD607D4928B457C0 /* NSDate+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A1A90659ED5B7540845C8185F8606FB9 /* FBSDKTypeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 966F52BCE6A299FDA79088511DFAF0A5 /* FBSDKTypeUtility.m */; }; - A28B68F8AF4A8ED3F8DEDF23CFCA8FEC /* FBSDKAccessTokenCacheV3.h in Headers */ = {isa = PBXBuildFile; fileRef = AC992D0918BFC1A52F94F18F146E330F /* FBSDKAccessTokenCacheV3.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3CE342B34D0DAA7BE2AA45BEF94CAFC /* BFAppLink_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EEAF1C38B82F546FC2E987DDE5BE1E6 /* BFAppLink_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A411DDDACF2FE64E4123D2654049E331 /* BFMeasurementEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7781103637255790BB03201581135E /* BFMeasurementEvent.m */; }; - A4229F7353B5AF589AD6BF2EAC31F1E7 /* UIButton+NoAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0951CEC1D6FCB0423CCD5CD47A8C488E /* UIButton+NoAnimation.swift */; }; - A484BD167B628487BBAAA674F5DB7B1A /* FBSDKCloseIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 1790F6F4C004F61B68BBF9E98AC671A5 /* FBSDKCloseIcon.m */; }; - A54F557F6175E445E98C30B98B5A3AD6 /* FBSDKSharePhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = AA627632BB4E6AF9AC1CB76F6D62EB84 /* FBSDKSharePhoto.m */; }; - A5C0CCB7592B4AB0554D304C79E2FF99 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - A69128071A53DBC4882CC8DC76782334 /* FBSDKLoginTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7563FF47193D1D8BAE56139D8D1EE1E5 /* FBSDKLoginTooltipView.m */; }; - A7E04563503B066374A95EDAFD8104DA /* FBSDKURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A56569177353F8896A4CA98F95A1694 /* FBSDKURLConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7E8650E83E1E1772F4EB92B563B4EED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - A85A43FC997D389D0F634DAC33DC4D7A /* TYMActivityIndicatorView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC2646324FA503B2A002538249794190 /* TYMActivityIndicatorView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A877EB9CF2930345DD962B4BC0D24959 /* BFTaskCompletionSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DAF450F014E35FD0336C9A78C4DCADF /* BFTaskCompletionSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A8E32D941D75EC298C7E256A3C6D31D4 /* Int+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49E72B8577A635603DBCB22B7F47E74B /* Int+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A972F072AE0487FC7C5135B086C51F7D /* OAuthWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C38784FF7BEBF18081122CEB322A50 /* OAuthWebViewController.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AA0B9C265F96CA310C674C330D4C5592 /* Locksmith.h in Headers */ = {isa = PBXBuildFile; fileRef = 26403593A6C217EE7E59810DD5176551 /* Locksmith.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA314156AC500125F4078EE968DB14C6 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCD79FB400792E3DBBE83BC113792B86 /* Result.swift */; }; - AB221C6A426CC9274B00DEB45A2A7693 /* FBSDKBridgeAPIProtocolWebV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D3DC244D1A3E747B9692BFD580EA4B9 /* FBSDKBridgeAPIProtocolWebV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABBC769244D3C1F076C3A7ABA6F2F330 /* FBSDKAppEventsDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = AF08E2ED6C33FDFB14F81A3FE3221CE6 /* FBSDKAppEventsDeviceInfo.m */; }; - ABE45433C4D5440C9B6331AF3C825B52 /* FBSDKGraphRequestDataAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 595C6C688A14F796BDDAC11D3561EBFA /* FBSDKGraphRequestDataAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC31F8B2FE473098E961C569C9F7216A /* NSIndexSet+NSIndexPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8F47426E921C346338816A886FAEAD /* NSIndexSet+NSIndexPath.swift */; }; - AD52B349A273F0EB40F823990A40D2CD /* FBSDKLoginConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F391C0D12A784F565EC1552F97B07A0 /* FBSDKLoginConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADF19C953CE2A7D0B72EC93A81FCCC26 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB3133F1AEA905BE7126A452DF153B94 /* Alamofire-dummy.m */; }; - AE4CF87C02C042DF13ED5B21C4FDC1E0 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4712F3D9080BCC05C5A73AC51038AF3A /* Stream.swift */; }; - AE88CF4A135C8C1E79FEBB43EE2B38F8 /* BFAppLinkReturnToRefererView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA9386492AC92260F438C39865D53BF /* BFAppLinkReturnToRefererView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B005B379F2878E1CDA454C1A87879442 /* FBSDKKeychainStoreViaBundleID.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBC6702BBB87A96B0484ADDF6716C4F /* FBSDKKeychainStoreViaBundleID.m */; }; - B0311FBDE031798111EC0E5DB55540BA /* FBSDKOrganicDeeplinkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4367B6DA4D1004FD4A9D7F67350A4185 /* FBSDKOrganicDeeplinkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1033B9D20ABC4D28DD47AE664FDFDBE /* FBSDKBridgeAPIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4965430D42EE44449BD839211B14CBBA /* FBSDKBridgeAPIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B34BBDBBA5577DEAB2F973B1CC7E2FD1 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BE906BE36F26EA382DF3448C0164804 /* Utils.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B52E11D4E947E41CE3A1E3221AB1BA6B /* FBSDKBoltsMeasurementEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7D50BD827D5D31C946A7E81340210D /* FBSDKBoltsMeasurementEventListener.m */; }; - B534C8C1D32294DB54F3C5CFFD5AAA9B /* FBSDKLoginButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B022207009D691594C86EDF5E4367A0 /* FBSDKLoginButton.m */; }; - B5F7715229A56E39CAC95B07A83E9B86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - B66A8B13B1A4DB797713351204E9754F /* FBSDKError.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A197FDDCD2FD3140F5233432C064D3 /* FBSDKError.m */; }; - B713790B233CC21726C5E02E7DA44516 /* FBSDKAccessTokenCacheV3_21.h in Headers */ = {isa = PBXBuildFile; fileRef = D4120DAD43A2DD22905D8EE5A4ED932D /* FBSDKAccessTokenCacheV3_21.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B733DCA91152DD923CC8317FBE6177AA /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE02C758654AB2888DD2337A0369A037 /* SwiftyJSON.framework */; }; - B74D40AC59FF4E03D30024F6CFE94BD1 /* FBSDKLikeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B8B0DA585E794AE8D2DD50B6A99586 /* FBSDKLikeButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B7AA8DD951A2A0FD0DC01B4EC91C8153 /* FBSDKGraphRequestConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 821C105E7B37A67F473C27DC5BE33ABB /* FBSDKGraphRequestConnection.m */; }; - B7E78BE631013A49254E1937486B9DD9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - B80E99999E2A245B701DC0731CB02ABC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - BC3B56D2ACA3877977DC9B7A85E9F214 /* HMAC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26DFAB28BA2294A94CD5364E7BA270B0 /* HMAC.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BC82780C5FED62B06DC51F6DCA0491B5 /* BFURL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EED591AA757A6FCEFA54E96E28A6D30 /* BFURL_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCAB58F8DE87B33E128B5C090EEB3E8E /* FBSDKShareAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = DD51F82902D19C076CE879D3C265923E /* FBSDKShareAPI.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD2ECAD3E71F4EE83864E6F14B67FBC2 /* FBSDKAccessTokenCacheV3.m in Sources */ = {isa = PBXBuildFile; fileRef = 629D29F9DF390FF1F77C146BA3772941 /* FBSDKAccessTokenCacheV3.m */; }; - BE41196F6A3903E59C3306FE3F8B43FE /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10B905ED7F63BEF70749F20B9BD9E1AA /* Notifications.swift */; }; - BF9787C62584C694E9263666FD94139F /* FBSDKMonotonicTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 586BDB44B6FD3A349451AA76505E44DE /* FBSDKMonotonicTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03AF5706175CAF471B117C5C5F60775 /* AlbumsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DB66E858784BB94825DC58A68DC73FE /* AlbumsViewController.swift */; }; - C05225EA8ACCF663097C4EC96E8E9887 /* BFAppLinkReturnToRefererView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E5404BA7A65D9B812D0B579ACAE32C0 /* BFAppLinkReturnToRefererView.m */; }; - C0C062FB06B5A469FCABC55C619ABB2F /* FBSDKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 152BCCF1CFA7E763815F5810D92C77D3 /* FBSDKInternalUtility.m */; }; - C0DB70AB368765DC64BFB5FEA75E0696 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9245421EE502846626B3F29FDB2FAB97 /* ParameterEncoding.swift */; }; - C1EEA41ECBE43FAF3E230A70F481C0D9 /* FBSDKTestUsersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC9C5A6A009014AB0BC52DD36222826 /* FBSDKTestUsersManager.m */; }; - C382AD64490D77D61B1A4318A031DC7C /* FBSDKTimeSpentData.h in Headers */ = {isa = PBXBuildFile; fileRef = B462D9F6E39FE8267C21A60C174E4AE3 /* FBSDKTimeSpentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C39613DBB90FF65789612725FC595542 /* FBSDKAppInviteDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FEE53D9E68500DF3C93E39CD3D6BDED /* FBSDKAppInviteDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C51B4865E5186E9BF6DB6BEFC9517EF1 /* FBSDKHashtag.h in Headers */ = {isa = PBXBuildFile; fileRef = 570EF570439698547CFD0918103B0FC8 /* FBSDKHashtag.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C52665EDC9F106BD8B2418D97AAEC357 /* FBSDKGraphRequestPiggybackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA5EA28E653B922762C6E060349477D /* FBSDKGraphRequestPiggybackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C583FF6D5F3A73498E46D8D80B21E3DB /* FBSDKLoginKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E1CFBAC345733CDF9D81CE659956FCFE /* FBSDKLoginKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C682BB7427AE5EF8582DC373EBBBA2E8 /* FBSDKCoreKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 8630F8225C102A413417B6B07A4F5D13 /* FBSDKCoreKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6C6E82D44C8E6F311129D11D9BB3C78 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 039C05F9C3BCBC8D702D0047CD702FEC /* PhotoCell.xib */; }; - C6F65A56D2A83EF7D2445EB1BC64B8D4 /* FBSDKMath.m in Sources */ = {isa = PBXBuildFile; fileRef = A77983C538FD722D81EC3D841C1E0D90 /* FBSDKMath.m */; }; - C7B6DD7C0456C50289A2C381DFE9FA3F /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95807CF52F27BCECF4EE6F1D9C392729 /* MultipartFormData.swift */; }; - C8A2479793F6D05DE6D8FA164EB7C00D /* Bolts-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD7F38060C10058D9FB08266437FF03 /* Bolts-dummy.m */; }; - C9239042BAF0562154A942D3598BEFAA /* FBSDKShareDialogMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6F7AE195176FE8089A0F90778840C9 /* FBSDKShareDialogMode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9A879CF614BAB80706EA977904B0BB9 /* FBSDKShareError.m in Sources */ = {isa = PBXBuildFile; fileRef = BA0DE4CF0C56BF6055AC9F74F721AE61 /* FBSDKShareError.m */; }; - C9B57D939AB4480C7A93482A12D87C4B /* FBSDKLoginCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E297C702F67E5D9A6A352C3104BB138 /* FBSDKLoginCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9BD44D9DC9D9E459BCB805875DC2306 /* FBSDKLikeActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = A5745BA5021C755277F1A3A3ED896463 /* FBSDKLikeActionController.m */; }; - CA08081E0B27DF4B55A911DD597BAD73 /* FBSDKApplicationDelegate+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 356FAE7ECA100C903CFCEB942B5376B2 /* FBSDKApplicationDelegate+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB51AB19914745F2250D9DB0D5C3C806 /* UIApplication+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = D441620CC602845E8AB77EF29A9F8287 /* UIApplication+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CB67930A4314E6E46A903F3489EB7608 /* FBSDKShareOpenGraphContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8593DD424DA11B636CB13941114645A8 /* FBSDKShareOpenGraphContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC2443BEF39BB4254C340BAA445BCBD5 /* LocksmithInternetAuthenticationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EB632DE0EA204AD6BAF7139F6B3F896 /* LocksmithInternetAuthenticationType.swift */; }; - CCEA26201F74E01FD9621E1CACAD85A8 /* GridCollectionViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8C6236ABFFD8A77AB460AAFB2C1522E /* GridCollectionViewLayout.swift */; }; - CDE764570B1C9BED83BD2F23533A3097 /* BFAppLinkReturnToRefererView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BEE32B89BD2CDA670B4D1507F00992E /* BFAppLinkReturnToRefererView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CDECDF26D5914B5118DA15DC06FABFDF /* FBSDKShareLinkContent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D95597CD9766285AF79187C1D127FAF5 /* FBSDKShareLinkContent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE0233C459CA5BF1F081257EB3655004 /* FBSDKLikeObjectType.m in Sources */ = {isa = PBXBuildFile; fileRef = AB8823A03E191C71883E441FC7E08C0B /* FBSDKLikeObjectType.m */; }; - CE9BEE1CFB831D54829132A6B365EDAF /* UIImageViewModeScaleAspect.m in Sources */ = {isa = PBXBuildFile; fileRef = 8518604B1DDA50C4A7334973D987D7D9 /* UIImageViewModeScaleAspect.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CFDAC1FC6D948576796D48F01601D00B /* FBSDKShareDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1940DF00D66DFDE7FE11EC605934F2AF /* FBSDKShareDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D0379DD1F84E1FA4302325370FC583C9 /* FBSDKCoreKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFEE98DAB1DFB8964A7A708B278CCC2 /* FBSDKCoreKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D05E51C8CEED91610DDE599FA220A58F /* FBSDKGameRequestDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 825440041869A6F73297E2C3A80B8FE2 /* FBSDKGameRequestDialog.m */; }; - D1D0521423FC9587DACE99599F3871BF /* FBSDKErrorConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CA3B2F59101138C7090208330C8A92 /* FBSDKErrorConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D20BAF8A10A6F2B9E2A7B6DD82C056F6 /* FBSDKShareOpenGraphObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E258B73A3759630B94AECA7A4FEE4480 /* FBSDKShareOpenGraphObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D234B23ACC5F69B9BE581EC70C15F8DE /* LocksmithInternetProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95248638D5A56898FE10483CF301310F /* LocksmithInternetProtocol.swift */; }; - D24E773D3868F2EFFD2C78431689CD1D /* UIViewController+BSImagePicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 723ECCDDCC515AB5DF944A0CB5D38E68 /* UIViewController+BSImagePicker.swift */; }; - D2C51CD71E1F27983032A23C1077A600 /* UIImageViewModeScaleAspect.h in Headers */ = {isa = PBXBuildFile; fileRef = 847B59EB48D8E27A629770FE018FC186 /* UIImageViewModeScaleAspect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2E7CA26EBA86717C6F9EF5F4988903C /* FBSDKWebDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = F474576E40301E26AD3948F02C4A08DE /* FBSDKWebDialogView.m */; }; - D347F65DE4E6C432B5182A7376869D0C /* FBSDKShareConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C8141614EF6669CCFA02483E2635A9 /* FBSDKShareConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3B8A9EFB1AFEFE16BE8C7F4FE410F20 /* FBSDKSendButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C6FCC98C3852492E9E49162158659C67 /* FBSDKSendButton.m */; }; - D40315620E9D700DC73323A8CED6612F /* OAuthSwiftMultipartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE2E6EB2A01419E699FEDC9FB1286BFD /* OAuthSwiftMultipartData.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - D441FFFC4FE2E90573DBF2477DDF8B6E /* FBSDKOrganicDeeplinkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 86734F85827ED40DF80B50C3E34715A4 /* FBSDKOrganicDeeplinkHelper.m */; }; - D47F5FD0F654ACB03A3948DB29B7EE2E /* FBSDKErrorRecoveryConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 465F04A17DBA63E2C076BF1CF0A261C8 /* FBSDKErrorRecoveryConfiguration.m */; }; - D5A52B04EF08F7245C8D6B9E42BB906A /* FBSDKShareDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B0821A122C8F1A370FB1CB606CA8DD /* FBSDKShareDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5BAF5FC42E9BCD77EFC85D72EB2BA14 /* FBSDKContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CC999ECAF7159164D07D9DA350E76CB3 /* FBSDKContainerViewController.m */; }; - D6230D411F4CD1882D9E8AB2EE498ACD /* CameraCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1BA542913C8A03B351A37D8EE0EA551C /* CameraCell.xib */; }; - D68373BD1C186BFF96F83919F47FBC09 /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2957F2B96367541C9992911375DEAD3F /* AlbumTitleView.swift */; }; - D6961FE567A047B2EE394D527EF414E0 /* FBSDKGraphRequestPiggybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FB1BAFCED2F024669E48A13C76E8B23 /* FBSDKGraphRequestPiggybackManager.m */; }; - D6A93D87E6D9F0596FF0B0FADA862421 /* FBSDKCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 670484F0A8B2B977BF70D2F460F5D072 /* FBSDKCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7A3DDFC81E5F492259FDA6E57748A59 /* FBSDKDynamicFrameworkLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E03E4D4068D5191AD0C43A607990EACE /* FBSDKDynamicFrameworkLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7E7CC8C8AB8DC9253A661C7374A9F93 /* FBSDKGraphRequestBody.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6A72177AE03D0D3FFAACB09A64122F /* FBSDKGraphRequestBody.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D80E3A1971AF7FDCE82F3241BA53B59B /* FBSDKLoginKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 50BB73F1953804776AE3B51434B4A808 /* FBSDKLoginKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D8E3EF0B890201C0DD54E9CF5527F88C /* BFAppLinkTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AAE1FAA427602B915E89F31BE922DFD /* BFAppLinkTarget.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D902EF709FC83BE17940BEF6CBB7F94C /* FBSDKViewImpressionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AFE88C9CA52195835FDA349B8BD0456 /* FBSDKViewImpressionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D922BBA12D7988EC41FB403F748BBFB8 /* AlbumCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAE367EE87BF153FFB5F6128EDF8A0EA /* AlbumCell.swift */; }; - D965808A254FA29240788115D19F782C /* FBSDKKeychainStoreViaBundleID.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0C0045C8C2051D47C6F90A915989D5 /* FBSDKKeychainStoreViaBundleID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9B2E2CE9E2DF615FE197377486BB214 /* BFCancellationTokenRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = B3256BD4C788B18CDBE7E1C8D56A1143 /* BFCancellationTokenRegistration.m */; }; - DA2F3DBB93F7A770AC12AA9769105CE3 /* FBSDKBridgeAPIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = D2FCE62A67FEB578FB2815B01E13EA31 /* FBSDKBridgeAPIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA62B1DACA061A8DE4B7BE418CE33E5D /* FBSDKCloseIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 876B4625B11E425B58C9AC9535433FD0 /* FBSDKCloseIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA9D0E08221846F34174BA9C7933C01 /* FBSDKErrorConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = C719DD6339632EB66A3CAE72B5B6E089 /* FBSDKErrorConfiguration.m */; }; - DB83FFC19AAC1D048DD3B89367D5890D /* FBSDKMaleSilhouetteIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = D93556F46740D98ECBCA680695466352 /* FBSDKMaleSilhouetteIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBC229BB03500121A5EB2162F9DD1E30 /* PhotosViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A591F168D1F2819D4B2FD74AAC4AC14C /* PhotosViewController.swift */; }; - DD203F22883C5445DDA618371EEFEC07 /* FBSDKSystemAccountStoreAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7912F4113AE8DD62E802CB866FDFD246 /* FBSDKSystemAccountStoreAdapter.m */; }; - DF89CBE6455EE673C13371ABD62DBC51 /* FBSDKAppEventsDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8074D60BE815B5CA7232FC7D727AD3F7 /* FBSDKAppEventsDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFC3DF985B5065268315681B81A235DE /* BFURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E7B97DC3EA06B40957CEF0B7D91DA2 /* BFURL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0095D397882896F3871DC2E380152D1 /* FBSDKSharePhotoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = FD08C8E1501053F9128D6C88AE55C609 /* FBSDKSharePhotoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E14B37AEE6265EC234F3676302B0DED6 /* PreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8BC9ACB06F42CA7669EE37ACD490CE3 /* PreviewViewController.swift */; }; - E2538D972FF83B2B65506DFEF1DBF704 /* FBSDKShareLinkContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F213DFE873FD0A34331A35D6F1F875 /* FBSDKShareLinkContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E25FA70C34718EADF86156088FDB44B9 /* NSURL+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = F510C9A8D0B8A523DFAD85725A15999B /* NSURL+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E2F415ECE30EBBDF2E791FA0A12ECC29 /* FBSDKBridgeAPIProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 739CA6E9C8A7BF2A1448A3B54EC17D75 /* FBSDKBridgeAPIProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2FF4576C5740EDF6E0E2A62495A9E5C /* FBSDKLikeControl+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B60A968F064418A22AC21AB3643E58A /* FBSDKLikeControl+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E33C52610245504BC91ADA56E67826B3 /* FBSDKSharingButton.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6C8BFBC2C98F3D4CCEE2512B693405 /* FBSDKSharingButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E35B1DA23A573B53C34A49472A6B448D /* arrow_down@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2445A04A9C256BB3BD64868C9AC215B8 /* arrow_down@3x.png */; }; - E39ED3657FEE321A20AE105D8BE1A340 /* BFAppLinkNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = F54CFBF87AEAC1E83DFEBDCB60482AFF /* BFAppLinkNavigation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3AE71AF80F5D8A842E69202847A0710 /* FBSDKAppInviteContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 90D28FCC8F6E75B2650EB26E715C0D44 /* FBSDKAppInviteContent.m */; }; - E3F3CBC9723823D11DCF58CDFA25AA77 /* BFTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E620664FFCA546D866EB4CCE3169560D /* BFTask.m */; }; - E42423F8227FE330F57E6CA7AA468D45 /* FBSDKServerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 31FDC0408245A5A640235A8331A74003 /* FBSDKServerConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5FFE022FD6699990599EEA6529BC636 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 011B426855F3AD1EDBA51DFCC7356304 /* FBSDKBridgeAPIProtocolWebV1.m */; }; - E6D504A4DEDA3BB58E7C6493EE96AFD9 /* FBSDKAppEvents+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E676AC1FA3482D6F980BFC914F4FA22 /* FBSDKAppEvents+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7EDF8AFADD549527BAA0FF0B813C44C /* FBSDKProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 09954C2EF6C77A3F9B3B13F5C568E64A /* FBSDKProfile.m */; }; - E9EEC6C8F1D68B18137981BE5EE2CF36 /* FBSDKAccessTokenCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AED76C491A5F8A6AEAB5B5B18FE8E8 /* FBSDKAccessTokenCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9FF502F63179B3E7EEA42FB3A31017A /* FBSDKMaleSilhouetteIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 175899CDEF776171B1712A088B6C559F /* FBSDKMaleSilhouetteIcon.m */; }; - EA9B123CC873F3B5BE785FDFA96B057F /* FBSDKTypeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FFB3BDA70B4188039760330C17F308D /* FBSDKTypeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE5D0F5B70E304DE8E8F3F5B14828B1 /* FBSDKGraphRequestMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 038DCD35AF2E4D43A7BDB46B7EF1DB22 /* FBSDKGraphRequestMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAEAFB7B18D1E49758EFAC0A89DC02A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - EB2670466E38D34F603B6BC0313A6742 /* FBSDKAppEventsStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D386E6050818511B409492006499F4C /* FBSDKAppEventsStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECC1A980B063554D6B4B8B75FCDEB777 /* FBSDKGraphRequest+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E623E7FFD7CF91879C1D9E565E9E9F /* FBSDKGraphRequest+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED82C98F2E9BFB80726F479E0DCC2154 /* TYMActivityIndicatorView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A5E3A93CD7001D355E1DD4DDB84A2486 /* TYMActivityIndicatorView.bundle */; }; - EDD254449CD8FF482448772C604D758A /* FBSDKLoginKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2867BE8B62EED56F2B08637171C4B73 /* FBSDKLoginKit-dummy.m */; }; - EF4FD235DD1FA69D7E3F07CE6BBE6A87 /* FBSDKSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA54A4EC8026DF17CBCD4D4CC6E3D83 /* FBSDKSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EFCC14FC93C089D3303B86350EC7E255 /* FBSDKAppLinkUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 619CB520EFECE118A9C289E3E1B551A6 /* FBSDKAppLinkUtility.m */; }; - EFE92E8D3813DD26E78E93EEAF6D7E7E /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5F93202835BAA301F3A04AC551D8A42 /* Request.swift */; }; - EFE98DF46B15DDE171B61A3F52D70D8A /* BSGridCollectionViewLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A34BB9DBD8BFBD180408D721C9FC5F7 /* BSGridCollectionViewLayout.framework */; }; - EFFD6E269F82360F54906FD396256E9C /* FBSDKAppEventsState.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5D976B59D850BD3A152D7A3DCFDF2A /* FBSDKAppEventsState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0D041A5A3F0412BE6AEAE23CDB0FBDD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - F12275031D131B6A70A0195761B1C7CA /* FBSDKVideoUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = D82299FA979F95F70A9302C7ECE7C1BA /* FBSDKVideoUploader.m */; }; - F133C9F1A15818518D0FB10A4ED0DD09 /* FBSDKButton+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C67E54A63A56CCE60847C6FA3EBF1F /* FBSDKButton+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1375F74031F3731A3D9F42A66A6327D /* FBSDKLikeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = B79530D590E94662B85BFBEDD3D22CEE /* FBSDKLikeButton.m */; }; - F1A619BA53B94B8F18245C7A7F17D52F /* FBSDKProfilePictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = F938D73A07A30E71EF4CB4237677BF2A /* FBSDKProfilePictureView.m */; }; - F25201F062BFBC0F8287681C1C60472E /* Pods-Vendoo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2447F5DBEE128CAF41B98AC7FA62B9AE /* Pods-Vendoo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F26DEEAD3638F33F87903B3B59BF61A6 /* FBSDKCoreKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E1910BE40252D644B8733445F7138F26 /* FBSDKCoreKit-dummy.m */; }; - F294B75539C74EDB0B55D2350874A225 /* FBSDKLoginButton.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF01CF08E8093240296C746BD42B9DC /* FBSDKLoginButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3959192ABF7A0AE04D1FB636B8A4CE2 /* FBSDKServerConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F51A11C71140CDF8FE797C94F87766 /* FBSDKServerConfiguration+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F8771CF43018CF648DF325FD6546E5 /* FBSDKSharePhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1C58FBC8D46FEADC084B36BB31E5E8 /* FBSDKSharePhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F4FBE138C1813F7970EA297413404BEA /* Alamofire-SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB85EFB024B4573B463572560164EC9 /* Alamofire-SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5F9597A3167E2AE7937E6CF4BD09AB8 /* FBSDKLoginCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 587ADAAB96453CCCE7250700B5B0382C /* FBSDKLoginCompletion.m */; }; - F61EBE50A04A7BDA0A9DD179F193012B /* OAuthSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 618ECCEC9BCD09F8899F23521B734CBD /* OAuthSwift-dummy.m */; }; - F6A635CE6CDD2D57711CCEC692128382 /* FBSDKShareButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C8A15982EEB3CE2E6DA7322C7CB00A /* FBSDKShareButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6B493A91D4972846A91292F2241F636 /* arrow_down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = BD76C21B5681D2A0A6E9FC0BCB016F64 /* arrow_down@2x.png */; }; - F7581524FBA63576F76650BAC9B15C04 /* FBSDKLoginKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A6E5C7F12A45D81A0E380CAC42E359 /* FBSDKLoginKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F759176BF99FB3C01BA3EEE8C6A40D2A /* BFAppLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F28C68F0202A4B8EC327676473C1978 /* BFAppLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F83D82020F9347F75495D09AA4F295AE /* BFMeasurementEvent_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D095F04810C64D707A11D98A7C416B /* BFMeasurementEvent_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F86F451F6AA6FB408A6DB5A117CB96BE /* FBSDKTriStateBOOL.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D39668D19B520F2D0D59135BFB85EFF /* FBSDKTriStateBOOL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8FB7A9780E2A40ACDA1F21C5969B527 /* FBSDKViewImpressionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = C1DEDCD30982A3D5FF7B3DADACC9EB7E /* FBSDKViewImpressionTracker.m */; }; - F968CDDC661EA2C602666CE712CEB7A4 /* FBSDKShareVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C39842A3D945B75A883E0368E349E1 /* FBSDKShareVideo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F98D25A874AA92FABCBF4A434A573933 /* FBSDKMath.h in Headers */ = {isa = PBXBuildFile; fileRef = BF18A807EDDCB404301BEA34E3A96E5A /* FBSDKMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9B9A77D836E30A07D84E3C3AB5FAE7A /* FBSDKVideoUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CF7BC3B9485BE695AF33C0B983466C /* FBSDKVideoUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9BA81C41C3DDABA6BEC897850E45D8D /* _FBSDKLoginRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 196BD4FA6EAC7DDC7D91D90CCDB2C2B1 /* _FBSDKLoginRecoveryAttempter.m */; }; - F9EC825DE6BCCD6AF4C67B4D855F6673 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - FA158C22016D2FC0737B76CFDDB52D0C /* FBSDKLikeDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = CA244E7A0D35D33D57C548DDF0AB0B22 /* FBSDKLikeDialog.m */; }; - FA16BCB39DED31DEB5EE3BBADB13E204 /* FBSDKBridgeAPICrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 60B4782E67D6262642548419F18E80D2 /* FBSDKBridgeAPICrypto.m */; }; - FA5911BDD42D4D5735385D2761FC41A7 /* FBSDKAccessTokenCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A1AF57D1ABD07CD95A06371FCADAFAA4 /* FBSDKAccessTokenCache.m */; }; - FAFAF3B263C62E610796FC8125B073C8 /* FBSDKErrorRecoveryConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1F4EAA1153A5002ACC7E79A05ABF2B /* FBSDKErrorRecoveryConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB7B76F9942AE0F7DEC11FAAEE4739B7 /* FBSDKLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2DEAD1D8707724838B84F7D63C9427 /* FBSDKLogger.m */; }; - FBE9ECC4946A8FAF7DB8B42B4D547C1D /* FBSDKAudioResourceLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DA1DC267E2A66C8752071214DF8C25 /* FBSDKAudioResourceLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC0C60F5ACDB5830427EE4D4D29415C6 /* AlbumTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5D4248B4248F09B04B1A091EDD65C941 /* AlbumTitleView.xib */; }; - FC4C7FA94B9B25828BC94A10E24CC21B /* FBSDKBoltsMeasurementEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B547061AE29C155294FD910F2E9C0AA4 /* FBSDKBoltsMeasurementEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC7F0A1FFB2641FAB705A0CF9EFC1303 /* FBSDKShareKit.h in Headers */ = {isa = PBXBuildFile; fileRef = CCED804762182AD2EC34151E37BCECE0 /* FBSDKShareKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC92F9CE355F65C3815CDAFBC4003B2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */; }; - FD7525FCB49FB135D59559C8A7D13D65 /* FBSDKLikeButtonPopWAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7B38A2ADB965EBA1F5E4B1C5484296 /* FBSDKLikeButtonPopWAV.m */; }; - FE9045BA12AD90F3D0F121FFAE699AD5 /* FBSDKMutableCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CB452D60719872A8D8D2A9E6B0033F /* FBSDKMutableCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FF0354628483B192A13C84851E9D523F /* FBSDKLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BC725275AA45A0885B33AEE67A027A34 /* FBSDKLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE20D61C3C5166CE50B2FA4BE2BC271 /* FBSDKShareOpenGraphObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FB3EF87C00E30203385004F25C6217B /* FBSDKShareOpenGraphObject.m */; }; + 0013F6DE7E2247675FA8325C0AB555B1 /* PicoConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */; }; + 007E3BF0BF2A2854408ACF7433E709E8 /* FBSDKSendButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 020A65A3E154C0B31D1B0351BD8FFEDA /* FBSDKShareOpenGraphAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */; }; + 020FAA49E54F3DFA0D24A2D4508306BD /* BSImagePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */; }; + 0222085A44991F96092B78FB418268B5 /* GDataXMLNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 0276287E0E8F78A9E56AB05E8DCD3DE1 /* FBSDKAppGroupAddDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 031C63FA655859684EA74B3087EAD27E /* SWRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */; }; + 0339052284A47A46E7821D754BB990DF /* FBSDKLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */; }; + 0354AFAE7420F7E18D47C9E19BB5F0AE /* FBSDKGraphRequestConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 03E71DCD3453CC52D1503B92195F5091 /* FBSDKAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */; }; + 04C3A0DB3D6632E53AF7FE845B45A3CD /* FBSDKAppLinkUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 05A44D5EA4323E675B7335D56AA64EE3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A04452A724860D85F3FC806E0147F14 /* Alamofire.framework */; }; + 05C70BF173BBB3BFB8572269DD13AD50 /* SOAP12Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */; }; + 05FB221AC2755579479BBCD40E251230 /* FBSDKLikeBoxBorderView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0619608E3A27C40EF5E457083D82E018 /* AlamofireSwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */; }; + 06808CCA8955675A9104F4B730FFFEFD /* OrderedDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */; }; + 0691210EC4FFD58AE2E28EC918813988 /* OAuthSwiftURLHandlerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 06A4A4AF7AFC580A244A78B2C7999E94 /* FBSDKLikeActionController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06B3CC660A3B863A48757A30E5343758 /* FBSDKGraphRequestBody.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */; }; + 07499EF9512559F0D0DAB19855FCB45D /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */; }; + 081A50535FCDF50D0118223459790167 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */; }; + 08290E6145C64072DFB0801316DE392D /* Pods-Vendoo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35773BF3F8D35D8635CE8E04D3381269 /* Pods-Vendoo-dummy.m */; }; + 08AFAB53FBB4A259D10CB27EC5CFE83E /* GDataXMLNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08C57BA7C4611C12262FD7D63BEE8C1E /* FBSDKErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08DAC2F4AEE5BBA86F713F32A79E24AF /* FBSDKLoginUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */; }; + 08DF92C398441AD329AE3D30BD424F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 0940D840A3055E3A6C3A1D9BCD8480C3 /* Pods-Vendoo-VendooUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8A9F7077071AC139E54B95C669CBE2 /* Pods-Vendoo-VendooUITests-dummy.m */; }; + 095406039B4D371E48D08B38A2975AC8 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */; }; + 096FB1973BA9EC2D4C1D8DF698133F1D /* OAuthSwiftClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 09CA89656321616AB2CF649279B400C1 /* FBSDKGraphErrorRecoveryProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A7D3F6374E8E2B7E8CB9B2D3E83A83A /* FBSDKBridgeAPIProtocolWebV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8703E4AF0023F131B79866B4B705D4 /* FBSDKBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9A3F9CCE438996942DA3B5A067BD01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 0AAEA700978D1406CFC13FFEF8E72BB4 /* FBSDKMessengerIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE1D7C5C2AE6ACE895F6B267FC9DA7F /* CameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */; }; + 0B74B022BF109C2753A56CD082E10C61 /* FBSDKAccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */; }; + 0B8052279201BD94A1829862BFC57B2B /* FBSDKShareOpenGraphValueContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BC8CA9D876F0078A71FA6DA7E96B4F5 /* add_photo@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */; }; + 0BDC4DAA1B69B3349079C5432DE9AB58 /* FBSDKWebDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */; }; + 0C11E95A97B2D6541603C23A850EC4EF /* FBSDKShareButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */; }; + 0D79E48F5B7F8FCAC2E90DBBCE5FA98F /* FBSDKKeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */; }; + 0D94C1A9F08091042D4566C5C7C5F88C /* SOAP11Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0D9C01E9CFFF23D0BD3C3B9A73D48C16 /* FBSDKMessengerIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */; }; + 0EEF80A8836783073DB22A229E6DA59E /* FBSDKLikeActionControllerCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F1C84A2FE906A408036822AA11DE763 /* ZoomAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */; }; + 0F25B917DA657DAC351C4AA787B5FB6A /* PicoPropertySchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */; }; + 0F6FD8711C8484D95F5B586274678491 /* FBSDKAccessTokenCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F7824F41301AFB6FAB5725D85BB111A /* FBSDKBridgeAPICrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FB1CE9AB76B77BEFC2F5DD025EB6032 /* FBSDKLoginUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FED72D02DF25255150B8301A353949A /* FBSDKAudioResourceLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */; }; + 10113E207516DDCAC19E3B2FED7E12C4 /* LocksmithError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */; }; + 1110C890C028A60D617B28184DFF9968 /* FBSDKLikeBoxBorderView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */; }; + 11D89502D964832FC217751339F7E7EF /* FBSDKShareOpenGraphValueContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */; }; + 1200A152A08388893BFA023980C2CF48 /* FBSDKLoginManagerLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127CB1D3B204EE69ADA315CE2626BA2E /* PicoSOAPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */; }; + 1360C072C79DBA6E4B292B7A05B73ACB /* FBSDKAppGroupJoinDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */; }; + 1389748BE24F9D2223187CB20D9A020C /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */; }; + 139FE4B378AF69FD65DF73C921B131AD /* BFCancellationToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */; }; + 13EB929F72B356FC41F08CCF85D5D0C1 /* Locksmith-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1434A073055312B7CE4FB95A1605C0A5 /* FBSDKTimeSpentData.m in Sources */ = {isa = PBXBuildFile; fileRef = C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */; }; + 1466EF30D00D1177D0DE725B8D61C061 /* FBSDKURLOpening.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1495BCB330D338CEF2E39D10082B941C /* LocksmithAccessibleOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */; }; + 14CCB9B9C95EBBD456D7E4EABD82E0BF /* FBSDKLoginCompletion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15157568822DD94ED8A8F3A24BCF47C0 /* FBSDKAccessTokenCacheV3_17.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156E7E46571EB8762B7507B951FC499B /* FBSDKProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1584E5A5BBCA3AA6E1ECD1E2C95D9830 /* SOAP11Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15EDAC05EB1C7ADBF13CDE7ECEB68CF7 /* FBSDKLikeButton+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16102E4E35FAA0FC4161282FECE56469 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */; }; + 17CBE972A85353EEC58B6CC0DBA34648 /* SOAP12NotUnderstoodType.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 180BFD5C4CF58060C6E4673D16922EF9 /* FBSDKGameRequestContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 183F3F433680B1AC95B7836E17DCFC99 /* FacebookOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */; }; + 185EEB501ACB365FFF762EED05F47DA7 /* PicoCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */; }; + 1877520854C1B04C797C8FD94308AB48 /* FBSDKDynamicFrameworkLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 188A670E26DA49268A133953AF0BF038 /* FBSDKShareOpenGraphValueContainer+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A15E1DAB1BF63371AE5ADFAED9169E5 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */; }; + 1A1DBDBFC387F891086033E7C529931C /* FBSDKCheckmarkIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A41AA1660DA17FD9EEE7CC544D1C0A4 /* _FBSDKTemporaryErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */; }; + 1C12F2E4F1172545BB500BE11DC82D2C /* OAuth2Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1C33FD78005932356FF3E937998CBCC5 /* BSGridCollectionViewLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C384C9C00881F5B98D441807AA11D67 /* PicoConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C5CA0323B22B50689F6252B44A93D80 /* JsonResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */; }; + 1CE5848A3307E495D6DFD6390CCB886E /* PicoConvertable.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1CF8B8AD6CAA603A95B2C395AB4057B6 /* FBSDKIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */; }; + 1D289D03369E7C05652B06DBA8CC3860 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 1D716404A2353ADA0326C44132D1EFD9 /* FBSDKAppEventsStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */; }; + 1DCFCA14CBF89C36D853B87417E126E6 /* BFCancellationTokenSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EA06503C7AF1CA5E13950E3E7D7830E /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */; }; + 1FFE8A6DDCA9246D3EA98372EAD63780 /* UIImageViewModeScaleAspect-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 23772EC6E0C5B91318B4350D87BDCE6B /* FBSDKGraphRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */; }; + 242E73B2F0842E1CF5348D2BC765DE8A /* FBSDKGraphRequestDataAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */; }; + 24600483CE2FB9BBDED179CCC892F3F8 /* BFExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 246B33E8266726E300011481E9237428 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 24874650BA474E95829A5FCF9FC7E70E /* FBSDKCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24DB7D4E986A59B0E032E4F83A69536A /* FBSDKAppGroupJoinDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 251B153287407A947B9F77303CB7F275 /* PicoNumberConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */; }; + 25437F3A03168A7FF5A5F5864F0DA732 /* AeroGearOAuth2-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 263150DA2DD0AA9AF442DA4068164DF8 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C49D5E408220FD79661F21912A9E0B1B /* CFNetwork.framework */; }; + 27475CD6178BFAF6C02F071E7D6B8695 /* FBSDKTestUsersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 27591714E6846BFD95B8FBBEC15F97D1 /* FBSDKShareOpenGraphContent.m in Sources */ = {isa = PBXBuildFile; fileRef = CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */; }; + 27840D8AC96D3180626B40D4AE7A715F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 27AFC2D1A21EAE366618898F50287183 /* FBSDKAppGroupContent.m in Sources */ = {isa = PBXBuildFile; fileRef = EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */; }; + 27B378AAF73A1EBB45FFD7EA38D37247 /* FBSDKLoginManagerLoginResult.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */; }; + 27B9305978AB08232BD1BAD3E5CF8FBB /* AuthzModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */; }; + 2866B55F0B1E204001EF16753AFD3426 /* FBSDKHashtag.m in Sources */ = {isa = PBXBuildFile; fileRef = 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */; }; + 290353FFD70C6FED0E88244849792541 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 290E7890207984177124BD5F84F0D04C /* FBSDKURLConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */; }; + 291FE1D4F4658AE8249A7AA798367A07 /* OAuthSwiftHTTPRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 298BABB267BFF3841CDC2D083BC4E8C5 /* PicoCacheEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */; }; + 29D5072854A624ECD53A502670BE3498 /* FBSDKServerConfigurationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B44537869F2E871DA87CFFA22DC331B /* PicoDataConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */; }; + 2BD969D274F4CC68A4E73E74135AAAB6 /* FBSDKAccessTokenCacheV3_17.m in Sources */ = {isa = PBXBuildFile; fileRef = 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */; }; + 2C1DCEEF93879DDE6AD0C2F2BC350C0A /* FBSDKLikeDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C737796AAD49FE609E7FB0CCF8A263C /* Bolts.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */; }; + 2D328AD191D951FE755FCF0F4FBFD86F /* add_photo.png in Resources */ = {isa = PBXBuildFile; fileRef = CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */; }; + 2D3405986FC586FA6C0A5E0B6BA7E64E /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */; }; + 2E4CAFABE35B8FC728822895A3A7581C /* XMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2E5AA7B66CE7F0DB9CEFC25F55C41124 /* FBSDKServerConfigurationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */; }; + 2E8C5651C2D34FAD23D4395363E80A3F /* FBSDKAppEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F37D130B5D76485C1A990F248DC8354 /* PicoSOAPClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F8DC41254534116CBADC7701C24B7EA /* SWRevealViewController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F9492A82F7B9F44D6452E5A1DFB986E /* _FBSDKTemporaryErrorRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FA0E03C590839B4243AB5B91DD749AF /* FBSDKShareVideoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FB79A55DE2E9F7ABB3B4C7871CD0C5B /* OAuth1Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2FF1B23AA41F471B163257FEF07E3B95 /* FBSDKProfilePictureView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FFADE6D19B6BED1A0650D0CEC6EC9A1 /* FBSDKBridgeAPIProtocolType.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 309BA559E28A032D7AB8DA1BFB1ED288 /* arrow_down@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */; }; + 316600E170EB0DDAAC598905501E274F /* TYMActivityIndicatorView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */; }; + 31694BB1A321078621424E065953D9DD /* FBSDKServerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */; }; + 3249F988C94C1B64192C42A11902D850 /* FBSDKLoginError.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32BE0FB08D9ECD2974197D862E320E36 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 334A9EB0A89E519A4CD425EF39DCDA2F /* FBSDKLoginManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 343843D298290E746FF42BFC7EEB9AA9 /* BFAppLinkNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */; }; + 349308F0D458195CBF3C7D9078D59547 /* FBSDKDialogConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */; }; + 34BEE08ED8F8B9B3B939D4D732CFBEFE /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34BFAC18A269D413F0C10F40601D4095 /* AeroGearHttp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34CCDCA848A701466256BC2927DA8856 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */; }; + 35053BA799D569D42234202DCE2DB786 /* SOAP11Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 356C94C2276AD2EFDC966E226C8BB5F4 /* PicoStringConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36463D62E47D3C86C700BE506CF20513 /* SOAP12Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */; }; + 36EC0F3B99211C490C358637095E707F /* FBSDKUIUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F127350534946859EEB412AFAA0702 /* SOAP12Faultcode.h in Headers */ = {isa = PBXBuildFile; fileRef = C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3708AA48F1D26CB56F88BB6FEC72DE36 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; + 3723F9F27EC35F88F58EA3BF27AC7338 /* PicoCacheEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3727D92D4B6CF5B09E53F33C773876D2 /* FBSDKMonotonicTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */; }; + 375E8C355CB9A979E9F03DAEE9703171 /* FBSDKShareOpenGraphAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3763DC15F50037130B37AFA9785E680D /* SOAP12Faultreason.m in Sources */ = {isa = PBXBuildFile; fileRef = B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */; }; + 3823A8BFFA8A36D1F2B1D718A1057719 /* FBSDKSystemAccountStoreAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 384AB7595557A39CB10CBD9CB467D24D /* FBSDKLiking.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3853FC6B534F1D3B97A5038666B97DA3 /* SOAP11Header.h in Headers */ = {isa = PBXBuildFile; fileRef = E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 385E8CF0234426575581CCA6F53DD434 /* FBSDKGameRequestFrictionlessRecipientCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387B78488B01402C1A6A04A4485972AA /* FBSDKShareUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */; }; + 3889F62AA2888DB03BBCA7D588BF6255 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E52CFB5C20763A830341CDF43564E66C /* Photos.framework */; }; + 38EF43F03EBACFE40F480F4F8BC20FD5 /* BFURL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */; }; + 39CC77EEA7D338BAC4838DF5A0042FA1 /* BSImagePicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */; }; + 39E4FA2B5D0B8EFD4F9B953111DA1CFC /* BFWebViewAppLinkResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */; }; + 3A01CE59DF9D68D5F2623F88E522A33E /* FBSDKGameRequestFrictionlessRecipientCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */; }; + 3A31EE2CDC26FC7889C0059514E91C3D /* FBSDKButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */; }; + 3A33BD9CFBB44FE323E109E255C76F49 /* Pods-Vendoo-VendooTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7F2F67EFB8A8B31FE8ED6A9104C3B0 /* Pods-Vendoo-VendooTests-dummy.m */; }; + 3ABF5C6E772B5706FEC84D0F880E9061 /* PicoXMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3AC3D4A319B72CA8EC9EE10DE609BF97 /* SOAP12Fault.h in Headers */ = {isa = PBXBuildFile; fileRef = D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B629068F4BE1D7821957056F25E33C1 /* Locksmith-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */; }; + 3D6D69351FD8DF6501A8144FF882C074 /* BFAppLink.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */; }; + 3D75C1A03F08AB28F30D41A9E3E5389E /* FBSDKAccessTokenCacheV4.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */; }; + 3DB7D1D261D974F55FDB4DD7AAC42861 /* FBSDKErrorRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */; }; + 3EA077D046DCD950DCAC4BCD2C1C3233 /* FBSDKShareUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EA8F215C9C1432D74E5CCA4834AA8C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */; }; + 3F17A710798B958949B20EC8D0CCFAC0 /* FBSDKMessageDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3FD0D93AD926C94818225AA013D70FDF /* FBSDKShareKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 40014FF9B9A69253E2C34E8EAF771BA2 /* UIImageViewModeScaleAspect-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */; }; + 401C2DDD1436B4AD6B3A43D775389EA4 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 406804221AD8D7EC71E4CC582AF7B1C2 /* FBSDKAppGroupContent.h in Headers */ = {isa = PBXBuildFile; fileRef = E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4081EA628AF0B73AC51FFB9D7AB3B89E /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */; }; + 4091FBB9624025711B56808DA069BB99 /* FBSDKAccessTokenCacheV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 409F5BE5BDBB1D3850F4D62D5504D662 /* BFTaskCompletionSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */; }; + 4126FC06B09C1514C4623BEF344EEDF2 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4142B023AD5F064B77F97768E6CE29C5 /* Alamofire-SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */; }; + 4151A1A3483D663770E5AC8E08E89474 /* FBSDKGraphRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4157F58C771B24EB545FBB57552535B2 /* FBSDKGameRequestDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4186787644AF6C98193CCF8C12E8D6B0 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15711FB818776F1D8CB48B60128D6DA6 /* AFNetworking.framework */; }; + 41A00F5CF45C7D1B97225996C473293F /* OAuthSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42643BE23BCFC5EB0F4E7ED31768B68A /* PicoDateConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42890EFA1A9960C220BFA8647831E467 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; + 42F44AD72DA11C66072D46BEC5DF08B2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 4305C8D7E5269805600F23D8FEA37071 /* DateUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */; }; + 439ED7008937D5940809FFB6B19332C0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 43BC8D2611C04A47C0BE9FFB228E07A5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4433527C657120BBB1978008CABDB7B3 /* SOAP12Faultreason.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 443CD693458E72E577CD457C3F55D9DD /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */; }; + 4546E3FB56F3693D2893B773F71C3097 /* BSImagePicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 46485D36E37F397B7F56EE76B3382C85 /* Dictionary_Initializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */; }; + 46E961BEA7247217652A5F012F82FECC /* FBSDKTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */; }; + 4709B3DC439F20AC0EE23258666AD2AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 4740F7545240B7461849EFDC0F075166 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */; }; + 484BA6D52FA1AAB3CE29A0A41F3F6EAB /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; + 48D8F32EC0B32EEE9FA0B8F60E447887 /* FBSDKPaymentObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49239C6CF815B92F2DF5B5D79FB9B5AF /* FBSDKTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B42AB3B0147E10869BABB83CC9D1770 /* FBSDKIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B4B2B87CA851CEDEDF6AC671EC8D862 /* FBSDKKeychainStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C1AD82A4DEEE0D1D2B34913ABBBC311 /* FBSDKBridgeAPIProtocolWebV2.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */; }; + 4C1D00D2AAB1C6C511FF8F5FC76698D1 /* FBSDKColor.m in Sources */ = {isa = PBXBuildFile; fileRef = B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */; }; + 4C49A4B4D6FB7CBBA27B18F0E001AE18 /* SOAP12Header.h in Headers */ = {isa = PBXBuildFile; fileRef = 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4C8A700F201D817E06260539577C0778 /* PicoClassSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4CA2747F836DF4225DB2BBBF3C9857E9 /* PicoBindingSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DA130F813859583C3363088029A470E /* _FBSDKLoginRecoveryAttempter.h in Headers */ = {isa = PBXBuildFile; fileRef = F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DCE84710050E8583735F97ADC84FCA7 /* BFAppLinkReturnToRefererController.m in Sources */ = {isa = PBXBuildFile; fileRef = D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */; }; + 4DE74A102F928A9E1177E7F5D3F1904B /* PicoStringConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */; }; + 4E23C0C3C5CF154075BDE3E79D2EAC43 /* SHA1.swift in Sources */ = {isa = PBXBuildFile; fileRef = B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 4E32C6B26518F18DC4AB3E225B86EE88 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */; }; + 4E94B8F460BF431A50D94814F7C8AF61 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */; }; + 4F093F6FBA6E6B060CF66145CF214E14 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F3AF2A36297BA61978025EE89C7FE97 /* FBSDKAppEventsUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FC841A3903CBCDDF599E4C2A6B02238 /* TYMActivityIndicatorView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */; }; + 514B1324C72A235480C29BBC3AD1C250 /* BFAppLinkTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */; }; + 5182510A2DA1A6F9F44DAEDEDA45265F /* SOAP11Fault.m in Sources */ = {isa = PBXBuildFile; fileRef = E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */; }; + 518927A77B9F0D1E5D960E22694EEFE7 /* BSImagePickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */; }; + 518C27917941491F2434FDE54E13684E /* FBSDKWebDialogView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519324787413E43E08A6A85B7D0E72AF /* CameraCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */; }; + 52681368D4EB6EE79BE9FEF151AC185F /* FBSDKShareDialogMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */; }; + 537E710078694948A4693E42674ED1B9 /* FBSDKAccessToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 53AE57B03773935906E27EAE7D903A75 /* Settings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */; }; + 53C50C8277DD48BD3D6B9A6CAF9B226A /* OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 543069E7AFC0805EF1CB25199D201424 /* UIImageViewModeScaleAspect.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35E922A51EACCBA7AE6AC58D002E4A0B /* UIImageViewModeScaleAspect.framework */; }; + 5493E80E04D895A735853EA349C4AAE3 /* BFCancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 55844A207DAD926A4DAFC046046450B5 /* FBSDKServerConfigurationManager+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5611FBD348B8C8A4FFF9875FF2F5BDA6 /* FBSDKGraphRequestMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */; }; + 56C8D4F00869E61F210A24E0EE8F3A13 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 575E7CB2D6DE03AA64E69683F9FA9D0B /* PicoXMLRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 57FA7FEEEF914BE0BF48A58ED1880B22 /* FBSDKAccessTokenCacheV3_21.m in Sources */ = {isa = PBXBuildFile; fileRef = 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */; }; + 59837E92C1E6B0650A77FC8664DF9DA9 /* FBSDKWebDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59B4A11C6CEB352D03892AF9828AB52B /* FBSDKBridgeAPIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */; }; + 59E32510D0201F13D14DF5CB41CD0E96 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; + 5A40CE0717F4DFAF776F12F835401D72 /* FBSDKShareError.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BC19E6E0F199276003F0AF96838BCE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */; }; + 5C9BDDBB790ACE3711E8AD09A13E0FB2 /* LocksmithSecurityClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */; }; + 5CB05FBCB32D21E194B5ECF680CB6AE0 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */; }; + 5DB28EB181DDB2482EAB7052C0FFDD4A /* FBSDKShareKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EA916E98A026DD4FC5E05EF9B921F0F /* FBSDKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F26B65B4A4711EB4BC2BC9BC48FF041 /* BFAppLinkReturnToRefererController.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5FA117E5597FFEB723A700BA077A7B6B /* SOAP12Body.m in Sources */ = {isa = PBXBuildFile; fileRef = 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */; }; + 6042E03938FE23B2CB265B549675C2F3 /* SOAP12Reasontext.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */; }; + 605DA560C2D69698B1BA8DF3C5FF74C2 /* NSData+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 60A2123AE07346F415CA44359F873F10 /* FBSDKAppEventsUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */; }; + 60CAF8D6E879B1585D61B55EE807A113 /* BFTask+Exceptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */; }; + 60D1BCD436C3EBA8135B3AFC9130CB11 /* ComposedCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */; }; + 612A5931CEEFDFA056FE645BDD784469 /* Locksmith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */; }; + 6167D4C5CA1DF7E209EE66CD5E706DB5 /* FBSDKLikeObjectType.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61B3E8B44D6F2EA17EDE942B24371232 /* BSGridCollectionViewLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */; }; + 6200682BC2425BD28680140B8EF3851E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 626752EF7EB05FDEFB7DDBA7CE66B57D /* PicoKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */; }; + 62E8346F03C03E7F4D631361F325689E /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */; }; + 639F646ABB9A9E4D3666B6CDD155BDBD /* PicoXMLReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 64D1DE8EA4BAACC7B802D787788E3F88 /* SOAP11Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */; }; + 652EE84BA55F2A6BD325768B753565D8 /* BFExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */; }; + 653C036B94D8543FB8FB1FDD38C7FFAA /* RequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */; }; + 65AD76A5209F07993BCCF096FA03E254 /* FBSDKLikeControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6607F176EF0C2BDF9BCC417DD295D59D /* FBSDKBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */; }; + 66533D7A594AA93C8C43EF1BCE668A74 /* FBSDKAppInviteContent.h in Headers */ = {isa = PBXBuildFile; fileRef = B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6745F3DFC6CCC37EA42C4930668DA40F /* FBSDKColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67C9843DC2B4557A9EE0C5D01604A0E7 /* FBSDKBridgeAPIProtocolNativeV1.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */; }; + 6817DE148CDBD0D314AFC83255A645E4 /* FBSDKLoginTooltipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 683FC99BAEA8DDE9EBEE2EC93F949B36 /* FBSDKLoginManagerLoginResult+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C148EE56D18F37FF7AAB71AF7F585C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 68F25493DF29423FEA798D2247A6C918 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A8B92B5BDFBEE6BD3F70901FB71A0B1 /* BFTask+Exceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B091151AE965C9F5462FDD25CB5551B /* Pods-Vendoo-VendooUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F360CE6486A747945443BA0C06AC2C99 /* Pods-Vendoo-VendooUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B7DD32A130E3052BBB254E95E8897F5 /* FBSDKGameRequestContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */; }; + 6BC497E6FA97D13CEFE6919C46F7EFF4 /* FBSDKLikeBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */; }; + 6C0346EF4F131C59680FB8DA3200AE1F /* SOAP12FaultcodeEnum.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CBA87B13DCF3BB31FBC3F1CC4BBB7C6 /* FBSDKTriStateBOOL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */; }; + 6DE785F0B2E1ED7669E819E49BA7DBA9 /* AeroGearHttp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4BD9D1803DACCD677E16D897C4986A4 /* AeroGearHttp.framework */; }; + 6E2B6054F217E3D01C59665D011B09B1 /* BFMeasurementEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EAAB8106D2D1D7625489FAF35223DBB /* AccountManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */; }; + 6EF01843152A0624110E6E8CAB0BCA51 /* FBSDKContainerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F59181990A639365B6BDCE65407275A /* FBSDKBridgeAPIRequest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F852F8B67F8A20BB296716E1AEE0AB7 /* FBSDKShareKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */; }; + 6F8F81979B066F27456733EB3BDD21FF /* FBSDKBridgeAPIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */; }; + 6FB287DB5361328A1AAFC6D644E94B07 /* FBSDKLogo.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */; }; + 6FBD31B0BB27AAEFFFFDB275DD3AE781 /* FBSDKGraphErrorRecoveryProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */; }; + 6FDE95FB21B7F5E1EC7A9F49489DAC62 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7002E8961D24E86FD580DBAE8ECB8D5E /* FBSDKApplicationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7008126788B83DF17DEFE2568CA741A3 /* FBSDKCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */; }; + 71A7E055D787374AA8F2EC002811AED3 /* SOAP12SupportedEnvType.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7333194276505D454DACD2603FEE0271 /* BFCancellationTokenRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7384AFE0F0221D2843EF6451D653C441 /* FBSDKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74022FE229C24EF067CBA98969CEE134 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7480883DDFB8F42068AFF34CAFA4183A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 74D81A016D09E77EC6592AF70252A6FD /* add_photo@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */; }; + 75BAFB5D292A5AC28EBAC6EA8D73CFC6 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */; }; + 760438A92935D95218DB06E2E51ADA11 /* Pods-Vendoo-VendooTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E48063F76B420F3E35DAD13047D42C79 /* Pods-Vendoo-VendooTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 763D43357E0BE90EA6462FC331E8302F /* FBSDKUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 763F76FF18569C1C701FA8B251DA3AFE /* FBSDKLoginManagerLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */; }; + 767C65F9CCCCA6B6E0A43C04594899BC /* FBSDKLoginConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */; }; + 76C1FA68EFCD242119622AE2CEB4D24F /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76C72D9FA8C86EBBC7E3E4AF7F0B4BB5 /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76F96A14F0A8DBF44BD7E419DAF7B877 /* FBSDKLikeButtonPopWAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771AD42E937BEEC7A076A4BF17648EF8 /* FBSDKButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 77BF46EE1E54C91A7080408F8767A3DF /* FBSDKShareVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */; }; + 78086867BF7BBED7E16245632C4E84CA /* FBSDKLoginError.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */; }; + 7996B7702DB8A5159CD112BE8CFA5224 /* FBSDKCoreKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7999F436677B92F6DDA1C3D45B67762F /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79D287D48B2A81896F365CA21F0B27D6 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */; }; + 79F94D1ECF73B695F68BBBF32E3FECDA /* TYMActivityIndicatorView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A58F060AC2558071BD5B0B15AE596C6 /* PicoWritable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B48852C4D848FA2DA416A98F6425869 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */; }; + 7BB98E50240143972C28AA9A13EBC3D5 /* BFAppLinkResolving.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C01D468C87DE13E87024F391334136E /* PhotoCollectionViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */; }; + 7C0A600BF8CCA0567E34D7525B1E3885 /* FBSDKSettings+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C708C62615F289B6A8B75A24FE22879 /* SWRevealViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */; }; + 7C7E248D341E116E1A7B8C16A8F58C6B /* BFTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7D68A3720CC3692C203FAAD224FAB14A /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */; }; + 7D81ACFEF8FF06EEE9898A0FA03B0E99 /* TYMActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7D8F17E4DCB3809E8BD5AB5CBF4DAD24 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 7E4FFCA3E9CBDF739BAC1B866B13E17B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A9EB92AC1D944731F800A2630030A9DA /* UIKit.framework */; }; + 7E9100394CBFFADF64B26C6F4373F78E /* FBSDKAppInviteDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */; }; + 7ED5EB3F1C101076506DB68E0BC5B6AB /* FBSDKAppEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */; }; + 7F70DD03F9ACE65B00724DCA0309602D /* FBSDKAppEventsState.m in Sources */ = {isa = PBXBuildFile; fileRef = 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */; }; + 7FB067C07D2C78201A78245B76CC17E9 /* PicoClassSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */; }; + 808E738E1648120C1045BB75BB8AC058 /* FBSDKCheckmarkIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */; }; + 808ECA8D577A4288E2F06046DE517EED /* Albums.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */; }; + 80B976E03ABBC93F3D35CD0380D59E88 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */; }; + 811303DF3449C2B3B67CE2B601C0ACD0 /* SWRevealViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 812CC9954198FB632F3670E2D554898F /* FBSDKShareConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */; }; + 8170C4AC05E84ED31A9D33A4CD205D2C /* BFWebViewAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81A1CBDACA3848828BD69C8EFE2C8D7C /* AeroGearOAuth2-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */; }; + 82008ED885D5AB3464812191AB960057 /* FBSDKShareVideoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */; }; + 828A250670EEC2897DACA767080A8CA7 /* FBSDKLoginManagerLoginResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82CE83B84A5A559972A93E174AD6411A /* OAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */; }; + 8347B4DF59FC5B188430E56C185F2364 /* Dictionary+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 8357FE41949BE1FCF43C1D2879DB6A29 /* PicoCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8493A1022392AFF1965FC3FAB4607414 /* SOAP11Detail.m in Sources */ = {isa = PBXBuildFile; fileRef = D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */; }; + 85E8D739830AC6F6E98D7B43A2932099 /* String+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 86627AB26AAD2D5D5B60FD98BF9F3BE1 /* FBSDKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 86A4C9883826DA7856397C1EE3441257 /* FBSDKShareLinkContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */; }; + 86ACEBDE1686451F2370C05812756E23 /* FBSDKConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */; }; + 86C7B4DC7245C1E31565C74EBC34B5A8 /* FBSDKLoginManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 871DEEBCCD0B2F702C162DF9F6AD1F30 /* OAuthSwiftCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 878FB8F86BAE97E0179D51D1569FBB60 /* BSImagePickerSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */; }; + 87FB0D874B72B2C3475F51AB24F61817 /* FBSDKAppLinkResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 885EA75AEF9C1C5631087D67494599F1 /* FBSDKLikeControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */; }; + 892A266BC8D285F22E625625249E757A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 89553EB9F15F76B70F62E8F69BB1684C /* AlbumTableViewDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */; }; + 89B59BD52908BA3B2EEED23398CF79E6 /* FBSDKCoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */; }; + 89D320F81D7E49E88352493C2FEB0714 /* PicoSOAPClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */; }; + 89DB4F68F200EACC31577431D7AAB64A /* FBSDKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B01AE7A2B6926117AF7AA7F921DB708 /* PicoConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B661D874626A9D1A8B4C34B6A17C479 /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */; }; + 8BB11C8D9F58C1E81A26BD7EE74093D1 /* FBSDKShareAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */; }; + 8BB5E13770325286C85E5205E0966FD7 /* PicoSOAPReader.h in Headers */ = {isa = PBXBuildFile; fileRef = C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8BF401C38065E3AC9BD840243F4DD820 /* FBSDKAppGroupAddDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */; }; + 8C207B123C54270F58E604A28E300A59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 8C7CABBE4EC64C461AF9AE36EA44C050 /* FBSDKShareMediaContent.h in Headers */ = {isa = PBXBuildFile; fileRef = B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C874B306AE5A045C9B7FD91B2CC8D31 /* PicoConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D7EA0A6E5D522BC65CACC0BA7D23B0E /* SelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */; }; + 8DA408A27B20CFD43FDA70C8FC647AC9 /* FBSDKLogo.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA9AA49F47C0E5D647CF3C96180843B /* PicoXMLReader.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */; }; + 8E678F3A93AF7E81BD5B4DE16E9FAC71 /* FBSDKMessageDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */; }; + 8EB11202167FCDDF1257AAAB1D1FB244 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */; }; + 8EDDCAE539DCE9EA7BCC1895C4C4A567 /* FBSDKSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */; }; + 8F07671E7B41068F6BDBBEF4E39D322A /* PicoConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */; }; + 8F51C91CAE6EA947E9C861F49919BF22 /* PicoXMLClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */; }; + 8FD9899D436F154F3491C5D308B57B32 /* FBSDKSharingContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8FFE0CA5DFE3379BBDA253EBFF2D07E2 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */; }; + 9008E52F56E5C0AE4CC4747B573D404C /* SOAP12UpgradeType.h in Headers */ = {isa = PBXBuildFile; fileRef = 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 903E8BA75D09A05881EB2DD3F622CCF4 /* PicoDateConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */; }; + 911E724303BA23E8A474DD386FAC9C2B /* PicoSOAPWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 917B32BDBDF0928BAFF4201C924BA155 /* FBSDKUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */; }; + 91C09AC2A52ED69A27C8D923139A006F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 928AA17E8C87D9559CEC0F3EFD75EACD /* FBSDKBridgeAPIProtocolNativeV1.h in Headers */ = {isa = PBXBuildFile; fileRef = C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932C49EB7BA256473D43C610DA6BF386 /* FBSDKProfile+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93CB179F47B5E343CCF361D181638E2E /* FBSDKShareDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */; }; + 93D03012CEB9E4EE27E6DB43412D6FF4 /* SOAP11Body.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */; }; + 945C9834347A969CDD4FB9A5AB9FF0E0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */; }; + 9469DF81ECB494E84675969B5E13374C /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 956CD88D16E0E4A464C3B382FAEEBFAD /* SOAP12Detail.h in Headers */ = {isa = PBXBuildFile; fileRef = F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 96247D22CC837A06A450BB49F1D2F79E /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9769B82453864B392235EDCAA2D87D47 /* UntrustedMemoryOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */; }; + 97CD6CF37BB5BE78C2A234AC897802B7 /* FBSDKLikeBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9817C864118A1756B997A687DC14B84A /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */; }; + 98AF6E202E68E9B4F22202842DC0D619 /* FBSDKSharePhotoContent.m in Sources */ = {isa = PBXBuildFile; fileRef = BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */; }; + 98CCDEA46756A3A8A0FC9B9472E682B2 /* PhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */; }; + 9991B7ED54593BD5F26EF68DC59E1D4B /* FBSDKLikeActionControllerCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */; }; + 99AC88D23F7F3D5E609540D9EED14123 /* OAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */; }; + 99BCC2F48031C4DF19C25EC274DB057F /* FBSDKSharing.h in Headers */ = {isa = PBXBuildFile; fileRef = C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 99FA28E0A77EBF35E1C94E6C5851DB44 /* BFCancellationTokenSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */; }; + 9AA1F38B13D6C8E732014B430FD80EC3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + 9AE3BB10BC5F5D2AE74A19D30917617A /* FBSDKDialogConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AEF21BC71A0C2AF841513A013F197EC /* FBSDKApplicationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */; }; + 9B045FC64D2A32D380593AEA86A28904 /* Bolts.h in Headers */ = {isa = PBXBuildFile; fileRef = D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B209880BF6C678EBB9FE3B5E1AFED77 /* PicoDataConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9BA81C3A00FBFB0269E1F502C7CA7111 /* SOAP11Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C54F07A5D6128AEA08BE4131CCCF746 /* FBSDKPaymentObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */; }; + 9DF0BDC4A549EEFB599696F517AF5E93 /* SOAP12UpgradeType.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */; }; + 9E40001D7D2CAC32039C59FC0208A7CA /* Bolts-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E795055729E8F398250A5687BB00AE2 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9ED4B168116CB499803EC612E1DB1396 /* FBSDKGraphRequestConnection+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F311BFDD71F019984158BF9906299F2 /* PicoBoolConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F756E533FBC1ECD87F8F13FE411BD51 /* PicoBindingSchema.m in Sources */ = {isa = PBXBuildFile; fileRef = 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */; }; + A0DF7E397B57D50B5E89228082DB4361 /* FBSDKShareMediaContent.m in Sources */ = {isa = PBXBuildFile; fileRef = C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */; }; + A1A522460FB8F634AEA3F48F9C0FC7D4 /* NSDate+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A1A90659ED5B7540845C8185F8606FB9 /* FBSDKTypeUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */; }; + A234CD03F89584D0547A5D7D999E03C5 /* PicoSOAPReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */; }; + A28B68F8AF4A8ED3F8DEDF23CFCA8FEC /* FBSDKAccessTokenCacheV3.h in Headers */ = {isa = PBXBuildFile; fileRef = 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2F0870136D90D9CE7905634CBEC46C2 /* SOAP12Body.h in Headers */ = {isa = PBXBuildFile; fileRef = 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3CE342B34D0DAA7BE2AA45BEF94CAFC /* BFAppLink_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A411DDDACF2FE64E4123D2654049E331 /* BFMeasurementEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */; }; + A4229F7353B5AF589AD6BF2EAC31F1E7 /* UIButton+NoAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */; }; + A484BD167B628487BBAAA674F5DB7B1A /* FBSDKCloseIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */; }; + A54F557F6175E445E98C30B98B5A3AD6 /* FBSDKSharePhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */; }; + A6245406942E1B12CA6B3037098E854F /* PicoXMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A69128071A53DBC4882CC8DC76782334 /* FBSDKLoginTooltipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */; }; + A7D274ABDE3D32AE032C1B43FCD12B81 /* SOAP12Faultcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */; }; + A7E04563503B066374A95EDAFD8104DA /* FBSDKURLConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A877EB9CF2930345DD962B4BC0D24959 /* BFTaskCompletionSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A8E32D941D75EC298C7E256A3C6D31D4 /* Int+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A972F072AE0487FC7C5135B086C51F7D /* OAuthWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + AA0B9C265F96CA310C674C330D4C5592 /* Locksmith.h in Headers */ = {isa = PBXBuildFile; fileRef = B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA314156AC500125F4078EE968DB14C6 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */; }; + AA3B76EE5D2EDCFC6BBC162662C9AB3F /* SOAP12Reasontext.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AB221C6A426CC9274B00DEB45A2A7693 /* FBSDKBridgeAPIProtocolWebV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABBC769244D3C1F076C3A7ABA6F2F330 /* FBSDKAppEventsDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */; }; + ABE45433C4D5440C9B6331AF3C825B52 /* FBSDKGraphRequestDataAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC31F8B2FE473098E961C569C9F7216A /* NSIndexSet+NSIndexPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */; }; + AC7C6289920D865E6FBFC20F0DC4F252 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */; }; + AD52B349A273F0EB40F823990A40D2CD /* FBSDKLoginConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ADF19C953CE2A7D0B72EC93A81FCCC26 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */; }; + AE4CF87C02C042DF13ED5B21C4FDC1E0 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */; }; + AE88CF4A135C8C1E79FEBB43EE2B38F8 /* BFAppLinkReturnToRefererView_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B005B379F2878E1CDA454C1A87879442 /* FBSDKKeychainStoreViaBundleID.m in Sources */ = {isa = PBXBuildFile; fileRef = 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */; }; + B0311FBDE031798111EC0E5DB55540BA /* FBSDKOrganicDeeplinkHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B03FBE8B4AA2B23CB920A248BB98AB3E /* SOAP12SupportedEnvType.m in Sources */ = {isa = PBXBuildFile; fileRef = 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */; }; + B1033B9D20ABC4D28DD47AE664FDFDBE /* FBSDKBridgeAPIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B10C7D17E533337E2B74970B679D6B3A /* OpenIDClaim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */; }; + B13DC7A0E6506DF7327E2AABA60FAE4F /* SOAP12Subcode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B237CE69F2373005B527EFF9204AA06B /* PicoKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B34BBDBBA5577DEAB2F973B1CC7E2FD1 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + B42A49260E02658534FF92164B6FC311 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B52E11D4E947E41CE3A1E3221AB1BA6B /* FBSDKBoltsMeasurementEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */; }; + B534C8C1D32294DB54F3C5CFFD5AAA9B /* FBSDKLoginButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */; }; + B5F7715229A56E39CAC95B07A83E9B86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + B66A8B13B1A4DB797713351204E9754F /* FBSDKError.m in Sources */ = {isa = PBXBuildFile; fileRef = BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */; }; + B70C33F5EB2E85CA0E4425B1A253BAFF /* PicoBoolConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */; }; + B713790B233CC21726C5E02E7DA44516 /* FBSDKAccessTokenCacheV3_21.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B733DCA91152DD923CC8317FBE6177AA /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 31513EB23B093A6F2C70644F9587813B /* SwiftyJSON.framework */; }; + B74D40AC59FF4E03D30024F6CFE94BD1 /* FBSDKLikeButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B7AA8DD951A2A0FD0DC01B4EC91C8153 /* FBSDKGraphRequestConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */; }; + B80E99999E2A245B701DC0731CB02ABC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + BAF4FD69C4FE6323B1FC7B7B24032673 /* JsonRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */; }; + BB82DC2891A35AC22DD6D5CE4CAE4364 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */; }; + BB938660E9F573C5569C0B2F76443DCE /* PicoBindable.h in Headers */ = {isa = PBXBuildFile; fileRef = DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC3B56D2ACA3877977DC9B7A85E9F214 /* HMAC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BC82780C5FED62B06DC51F6DCA0491B5 /* BFURL_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCAB58F8DE87B33E128B5C090EEB3E8E /* FBSDKShareAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD2ECAD3E71F4EE83864E6F14B67FBC2 /* FBSDKAccessTokenCacheV3.m in Sources */ = {isa = PBXBuildFile; fileRef = C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */; }; + BD3FB5E4DDA22FF3B8E50FC29E9BCA73 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + BE41196F6A3903E59C3306FE3F8B43FE /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */; }; + BF4DC48AD7D41C37CA8108D7590BA3DE /* OAuth2WebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */; }; + BF4FE2CA55E25E91654D4090767397C0 /* StringResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */; }; + BF9787C62584C694E9263666FD94139F /* FBSDKMonotonicTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03AF5706175CAF471B117C5C5F60775 /* AlbumsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */; }; + C05225EA8ACCF663097C4EC96E8E9887 /* BFAppLinkReturnToRefererView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */; }; + C087B9B3A493BC8232CBA4DB1CB47A67 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */; }; + C0C062FB06B5A469FCABC55C619ABB2F /* FBSDKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */; }; + C0DB70AB368765DC64BFB5FEA75E0696 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */; }; + C1EEA41ECBE43FAF3E230A70F481C0D9 /* FBSDKTestUsersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */; }; + C2B409E16419D1783D04BA380DCBDDF5 /* PicoPropertySchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2E1AFA724DFDA82D234F25BC9D623FB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */; }; + C382AD64490D77D61B1A4318A031DC7C /* FBSDKTimeSpentData.h in Headers */ = {isa = PBXBuildFile; fileRef = A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C39613DBB90FF65789612725FC595542 /* FBSDKAppInviteDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3EE5FD470BF4FD80D834166E6C5E8EA /* HttpRequestSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */; }; + C51B4865E5186E9BF6DB6BEFC9517EF1 /* FBSDKHashtag.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C51B96A7E543F72CD7925968E35DC041 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */; }; + C52665EDC9F106BD8B2418D97AAEC357 /* FBSDKGraphRequestPiggybackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C583FF6D5F3A73498E46D8D80B21E3DB /* FBSDKLoginKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C67694443EB6C1977F2510638E94F687 /* TrustedPersistantOAuth2Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */; }; + C682BB7427AE5EF8582DC373EBBBA2E8 /* FBSDKCoreKit.h in Headers */ = {isa = PBXBuildFile; fileRef = F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6C6E82D44C8E6F311129D11D9BB3C78 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */; }; + C6CDABE1AEBB5DC4A35A6B221BB98D13 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */; }; + C6F65A56D2A83EF7D2445EB1BC64B8D4 /* FBSDKMath.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */; }; + C70AC3CB2D21E9466D55F37D6167DBA5 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C7B655603FB1089A5E2D28FCE12DF12F /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */; }; + C7B6DD7C0456C50289A2C381DFE9FA3F /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */; }; + C8A2479793F6D05DE6D8FA164EB7C00D /* Bolts-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */; }; + C8CFDFCD0A8A590398560534407636B4 /* SOAP12Envelope.m in Sources */ = {isa = PBXBuildFile; fileRef = B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */; }; + C9239042BAF0562154A942D3598BEFAA /* FBSDKShareDialogMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9A879CF614BAB80706EA977904B0BB9 /* FBSDKShareError.m in Sources */ = {isa = PBXBuildFile; fileRef = D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */; }; + C9B57D939AB4480C7A93482A12D87C4B /* FBSDKLoginCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9BD44D9DC9D9E459BCB805875DC2306 /* FBSDKLikeActionController.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */; }; + CA08081E0B27DF4B55A911DD597BAD73 /* FBSDKApplicationDelegate+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA7846F048F40D61DD3100BA17B5C26C /* Pods-Vendoo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2E9185EE51467D606FBA66D243AA42 /* Pods-Vendoo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CAC55489C107050F90C74EC7E0618EDB /* OrderedDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB51AB19914745F2250D9DB0D5C3C806 /* UIApplication+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CB67930A4314E6E46A903F3489EB7608 /* FBSDKShareOpenGraphContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CC2443BEF39BB4254C340BAA445BCBD5 /* LocksmithInternetAuthenticationType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */; }; + CCEA26201F74E01FD9621E1CACAD85A8 /* GridCollectionViewLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */; }; + CD38B0DFE4C5503D3A4A913BB30EAB74 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + CDE764570B1C9BED83BD2F23533A3097 /* BFAppLinkReturnToRefererView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDECDF26D5914B5118DA15DC06FABFDF /* FBSDKShareLinkContent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0233C459CA5BF1F081257EB3655004 /* FBSDKLikeObjectType.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */; }; + CE2528225E7F88C8FB7A0C48448B72E6 /* PicoXMLClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE9BEE1CFB831D54829132A6B365EDAF /* UIImageViewModeScaleAspect.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + CEDFE191DF66B8884828359B3494F8E9 /* UIAlertView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CF051D17275C20E0FBF5736E3C8A0573 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */; }; + CFBFD1949A464FA701704CB507D5074D /* MultiPartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */; }; + CFDAC1FC6D948576796D48F01601D00B /* FBSDKShareDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D0379DD1F84E1FA4302325370FC583C9 /* FBSDKCoreKit+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05E51C8CEED91610DDE599FA220A58F /* FBSDKGameRequestDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */; }; + D14B90EC47C350BCEA5F953586978228 /* XMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */; }; + D1D0521423FC9587DACE99599F3871BF /* FBSDKErrorConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D20BAF8A10A6F2B9E2A7B6DD82C056F6 /* FBSDKShareOpenGraphObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D234B23ACC5F69B9BE581EC70C15F8DE /* LocksmithInternetProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */; }; + D24E773D3868F2EFFD2C78431689CD1D /* UIViewController+BSImagePicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */; }; + D2C51CD71E1F27983032A23C1077A600 /* UIImageViewModeScaleAspect.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2E7CA26EBA86717C6F9EF5F4988903C /* FBSDKWebDialogView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */; }; + D347F65DE4E6C432B5182A7376869D0C /* FBSDKShareConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3B8A9EFB1AFEFE16BE8C7F4FE410F20 /* FBSDKSendButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */; }; + D40315620E9D700DC73323A8CED6612F /* OAuthSwiftMultipartData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D441FFFC4FE2E90573DBF2477DDF8B6E /* FBSDKOrganicDeeplinkHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */; }; + D47A43CEEEBB4F2760D96D02FEEC879A /* PicoXMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */; }; + D47F5FD0F654ACB03A3948DB29B7EE2E /* FBSDKErrorRecoveryConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */; }; + D5A52B04EF08F7245C8D6B9E42BB906A /* FBSDKShareDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5BAF5FC42E9BCD77EFC85D72EB2BA14 /* FBSDKContainerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */; }; + D6230D411F4CD1882D9E8AB2EE498ACD /* CameraCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */; }; + D68373BD1C186BFF96F83919F47FBC09 /* AlbumTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */; }; + D6961FE567A047B2EE394D527EF414E0 /* FBSDKGraphRequestPiggybackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */; }; + D6A93D87E6D9F0596FF0B0FADA862421 /* FBSDKCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7A3DDFC81E5F492259FDA6E57748A59 /* FBSDKDynamicFrameworkLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7C1594DC6A0E38E33E8971C288A9F82 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7E7CC8C8AB8DC9253A661C7374A9F93 /* FBSDKGraphRequestBody.h in Headers */ = {isa = PBXBuildFile; fileRef = 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D80E3A1971AF7FDCE82F3241BA53B59B /* FBSDKLoginKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D86913E8F8A1CA01D792A1DFD3AE671C /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */; }; + D8E3EF0B890201C0DD54E9CF5527F88C /* BFAppLinkTarget.h in Headers */ = {isa = PBXBuildFile; fileRef = FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D902EF709FC83BE17940BEF6CBB7F94C /* FBSDKViewImpressionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D922BBA12D7988EC41FB403F748BBFB8 /* AlbumCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */; }; + D965808A254FA29240788115D19F782C /* FBSDKKeychainStoreViaBundleID.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D96FB769680B41AD1EAF2FDAF20F348A /* PicoXMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */; }; + D9B2E2CE9E2DF615FE197377486BB214 /* BFCancellationTokenRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */; }; + DA2F3DBB93F7A770AC12AA9769105CE3 /* FBSDKBridgeAPIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA62B1DACA061A8DE4B7BE418CE33E5D /* FBSDKCloseIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAA9D0E08221846F34174BA9C7933C01 /* FBSDKErrorConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */; }; + DB1AEDB35C8A2BCE2A7C466A5EBE874D /* PicoReadable.h in Headers */ = {isa = PBXBuildFile; fileRef = B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB83FFC19AAC1D048DD3B89367D5890D /* FBSDKMaleSilhouetteIcon.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB840EF5FD9645993A399CDE849E784C /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */; }; + DBC228F2E7B341A858EA328E1BB9F783 /* SOAP11Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */; }; + DBC229BB03500121A5EB2162F9DD1E30 /* PhotosViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */; }; + DD203F22883C5445DDA618371EEFEC07 /* FBSDKSystemAccountStoreAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */; }; + DF4112FFA156222BF7053EF22A8827B9 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */; }; + DF89CBE6455EE673C13371ABD62DBC51 /* FBSDKAppEventsDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFC29AA19504EF95C8902348017273A8 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DFC3DF985B5065268315681B81A235DE /* BFURL.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0095D397882896F3871DC2E380152D1 /* FBSDKSharePhotoContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E13F5F9A8FD28C1DDCC3AAF3A778B436 /* GDataXML_HTML.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B68653733D3131EABDCBB864E04AD74 /* GDataXML_HTML.framework */; }; + E14B37AEE6265EC234F3676302B0DED6 /* PreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */; }; + E2538D972FF83B2B65506DFEF1DBF704 /* FBSDKShareLinkContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E25FA70C34718EADF86156088FDB44B9 /* NSURL+OAuthSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E2F415ECE30EBBDF2E791FA0A12ECC29 /* FBSDKBridgeAPIProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2FF4576C5740EDF6E0E2A62495A9E5C /* FBSDKLikeControl+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E33C52610245504BC91ADA56E67826B3 /* FBSDKSharingButton.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E35B1DA23A573B53C34A49472A6B448D /* arrow_down@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */; }; + E3998CCC046A80C9211440749CA6FA1F /* PicoSOAPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E39ED3657FEE321A20AE105D8BE1A340 /* BFAppLinkNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3AE71AF80F5D8A842E69202847A0710 /* FBSDKAppInviteContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */; }; + E3F3CBC9723823D11DCF58CDFA25AA77 /* BFTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */; }; + E42423F8227FE330F57E6CA7AA468D45 /* FBSDKServerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5FFE022FD6699990599EEA6529BC636 /* FBSDKBridgeAPIProtocolWebV1.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */; }; + E6D504A4DEDA3BB58E7C6493EE96AFD9 /* FBSDKAppEvents+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7783DA43E66A3CD931B178E31771E1C /* ResponseSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */; }; + E7EDF8AFADD549527BAA0FF0B813C44C /* FBSDKProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */; }; + E7FA21C38D6A1CB113BE2DA22E73B845 /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */; }; + E810F45FC31110170657F41062B605CD /* SOAP12FaultcodeEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */; }; + E94393E2BBDAA8E8BBFDF20A0E9F8512 /* Http.swift in Sources */ = {isa = PBXBuildFile; fileRef = C403253C46C7A568F5503C1533E1A6DD /* Http.swift */; }; + E9EEC6C8F1D68B18137981BE5EE2CF36 /* FBSDKAccessTokenCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9FF502F63179B3E7EEA42FB3A31017A /* FBSDKMaleSilhouetteIcon.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */; }; + EA9B123CC873F3B5BE785FDFA96B057F /* FBSDKTypeUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE5D0F5B70E304DE8E8F3F5B14828B1 /* FBSDKGraphRequestMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAF46061255D5EEB3DE0B27A11E0C97F /* GDataXML-HTML-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */; }; + EB2670466E38D34F603B6BC0313A6742 /* FBSDKAppEventsStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECC1A980B063554D6B4B8B75FCDEB777 /* FBSDKGraphRequest+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED4B859D28626B3B1E74BF97A7D3F4B3 /* AeroGearHttp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */; }; + EDD254449CD8FF482448772C604D758A /* FBSDKLoginKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */; }; + EF4FD235DD1FA69D7E3F07CE6BBE6A87 /* FBSDKSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EFCC14FC93C089D3303B86350EC7E255 /* FBSDKAppLinkUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */; }; + EFE92E8D3813DD26E78E93EEAF6D7E7E /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 547F0F61578EE093020B8127CFD6661D /* Request.swift */; }; + EFE98DF46B15DDE171B61A3F52D70D8A /* BSGridCollectionViewLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1AA7FFD701C1A7D3F654C6E8FC6EF4 /* BSGridCollectionViewLayout.framework */; }; + EFFD6E269F82360F54906FD396256E9C /* FBSDKAppEventsState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F11BC473EEC07CA5407557FEED884280 /* SOAP12Envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F12275031D131B6A70A0195761B1C7CA /* FBSDKVideoUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */; }; + F133C9F1A15818518D0FB10A4ED0DD09 /* FBSDKButton+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1375F74031F3731A3D9F42A66A6327D /* FBSDKLikeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */; }; + F1A619BA53B94B8F18245C7A7F17D52F /* FBSDKProfilePictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */; }; + F26DEEAD3638F33F87903B3B59BF61A6 /* FBSDKCoreKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */; }; + F294B75539C74EDB0B55D2350874A225 /* FBSDKLoginButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2E9945B7494E20ED7DC4720A2B8CDC9 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3009CD67ED84A44BC23B854E9329601 /* SOAP12Header.m in Sources */ = {isa = PBXBuildFile; fileRef = 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */; }; + F3959192ABF7A0AE04D1FB636B8A4CE2 /* FBSDKServerConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F8771CF43018CF648DF325FD6546E5 /* FBSDKSharePhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F4FBE138C1813F7970EA297413404BEA /* Alamofire-SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F55BD406E6304124C7FFEAE2418CD046 /* PicoConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */; }; + F5F9597A3167E2AE7937E6CF4BD09AB8 /* FBSDKLoginCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */; }; + F6163445CF35DF3EB671996F08D78344 /* TYMActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F61EBE50A04A7BDA0A9DD179F193012B /* OAuthSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */; }; + F6A635CE6CDD2D57711CCEC692128382 /* FBSDKShareButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6B493A91D4972846A91292F2241F636 /* arrow_down@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */; }; + F7581524FBA63576F76650BAC9B15C04 /* FBSDKLoginKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F759176BF99FB3C01BA3EEE8C6A40D2A /* BFAppLink.h in Headers */ = {isa = PBXBuildFile; fileRef = D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F7673DECA5A9B28885631BF36103936A /* PicoXMLRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */; }; + F7BCC0CB8DFB22AB34ECE9BC5C72DD2B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */; }; + F83D82020F9347F75495D09AA4F295AE /* BFMeasurementEvent_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F86F451F6AA6FB408A6DB5A117CB96BE /* FBSDKTriStateBOOL.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8FB7A9780E2A40ACDA1F21C5969B527 /* FBSDKViewImpressionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */; }; + F96355379B033320F4514495D1B81128 /* PicoNumberConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F968CDDC661EA2C602666CE712CEB7A4 /* FBSDKShareVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F983A211639EA43476CEB54995E32C35 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */; }; + F98D25A874AA92FABCBF4A434A573933 /* FBSDKMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9B9A77D836E30A07D84E3C3AB5FAE7A /* FBSDKVideoUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9BA81C41C3DDABA6BEC897850E45D8D /* _FBSDKLoginRecoveryAttempter.m in Sources */ = {isa = PBXBuildFile; fileRef = B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */; }; + F9EC825DE6BCCD6AF4C67B4D855F6673 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + FA158C22016D2FC0737B76CFDDB52D0C /* FBSDKLikeDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */; }; + FA16BCB39DED31DEB5EE3BBADB13E204 /* FBSDKBridgeAPICrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */; }; + FA5911BDD42D4D5735385D2761FC41A7 /* FBSDKAccessTokenCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */; }; + FA8D0725E732D1778567F836BF2424D7 /* KeycloakOAuth2Module.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */; }; + FAFAF3B263C62E610796FC8125B073C8 /* FBSDKErrorRecoveryConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB7B76F9942AE0F7DEC11FAAEE4739B7 /* FBSDKLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */; }; + FBE9ECC4946A8FAF7DB8B42B4D547C1D /* FBSDKAudioResourceLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC0C60F5ACDB5830427EE4D4D29415C6 /* AlbumTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */; }; + FC4C7FA94B9B25828BC94A10E24CC21B /* FBSDKBoltsMeasurementEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC7F0A1FFB2641FAB705A0CF9EFC1303 /* FBSDKShareKit.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC92F9CE355F65C3815CDAFBC4003B2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */; }; + FD7525FCB49FB135D59559C8A7D13D65 /* FBSDKLikeButtonPopWAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */; }; + FE9045BA12AD90F3D0F121FFAE699AD5 /* FBSDKMutableCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FF0354628483B192A13C84851E9D523F /* FBSDKLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF9662F15F1A4003E60BDF39D8E24B7E /* PicoSOAPWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */; }; + FFAFCCCDBDD5C1802FA84670D0134481 /* SOAP12NotUnderstoodType.m in Sources */ = {isa = PBXBuildFile; fileRef = 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */; }; + FFC1D9EC2ECD8BE8F5658955D44621FD /* SOAP12Subcode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */; }; + FFE20D61C3C5166CE50B2FA4BE2BC271 /* FBSDKShareOpenGraphObject.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 16555E8274AFB8FC9226006190F31D2C /* PBXContainerItemProxy */ = { + 037A460543B9CC550E0C8E9D9F424F34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C34098A7DACA89F52BF902062730F50; + remoteInfo = "GDataXML-HTML"; + }; + 0AACB3B780F4EB33F2D78D132239E3D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4878C70B21CA37D7CB8A476BF986741B; + remoteInfo = AFNetworking; + }; + 0B37D807C7CB2448EA960B0C29CCC642 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C34098A7DACA89F52BF902062730F50; + remoteInfo = "GDataXML-HTML"; + }; + 0BABE65DC2DD14C3F1794A67472312FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 6E31B4FD268BEE6936B4477E4EDCD609; remoteInfo = "Alamofire-SwiftyJSON"; }; - 212F003C6748078B9CF89048DBBBF487 /* PBXContainerItemProxy */ = { + 0BE831E079CF2464C77EF106D961EED5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6EDC37F3FA92533C6AC3562458AA91F1; - remoteInfo = FBSDKLoginKit; + remoteGlobalIDString = 30D7FCF8072F5D59AE1C98D94F9A6EC9; + remoteInfo = FBSDKShareKit; + }; + 0C577E371C6125B5CFB4E79388DA9C36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31CABCBBC4853F0A3523D99FE6D41F17; + remoteInfo = TYMActivityIndicatorView; + }; + 115A10D944829B797C5186C6866F06AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4878C70B21CA37D7CB8A476BF986741B; + remoteInfo = AFNetworking; + }; + 14D3B23B6DE8317BBC68C3145E8FEFF8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AA2F4091B94E46EEE3AD6055CB49C7D; + remoteInfo = PicoKit; + }; + 16753675BB7E26317C6F84CC542DB29F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 79C040AFDDCE1BCBF6D8B5EB0B85887F; + remoteInfo = Alamofire; + }; + 19748DF8674222C851A4F5419660604F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6E31B4FD268BEE6936B4477E4EDCD609; + remoteInfo = "Alamofire-SwiftyJSON"; + }; + 1F7621FC7203C9BA0AB35BE1C40DF080 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; + remoteInfo = Bolts; + }; + 2092CA1C6780BE3C119CC0ABAE0477F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteInfo = FBSDKCoreKit; }; 32F1A6CE07342E424DE342C9D5C9B5CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -492,13 +735,6 @@ remoteGlobalIDString = 0FF38C485BD8E73F614C919F834D6EAB; remoteInfo = UIImageViewModeScaleAspect; }; - 38CC8B1BF571A52DE311FD1D183643D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = C59EE95662AD4757E7FCE220DB1AFA41; - remoteInfo = BSImagePicker; - }; 3AB1850450B2D2039C9FC0D55B185E3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -506,6 +742,34 @@ remoteGlobalIDString = 8AA3DDB8797222294E1288CB197A8347; remoteInfo = BSGridCollectionViewLayout; }; + 459825C54CA79A64ED92388DF754A290 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6E31B4FD268BEE6936B4477E4EDCD609; + remoteInfo = "Alamofire-SwiftyJSON"; + }; + 466241E13A83BF7230F9C83D3C696C2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 92943306EC8070DF9CD02ECD505D2CD5; + remoteInfo = Locksmith; + }; + 489365899EA53FE502565686A2366B14 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D52FE07CEB8B5458F3C73BB37A484FB; + remoteInfo = SWRevealViewController; + }; + 4BD92D31F30B1217088F0A7A02B0BF8B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31CABCBBC4853F0A3523D99FE6D41F17; + remoteInfo = TYMActivityIndicatorView; + }; 4C73BEFB46A6D4619DFC813CAFC63D53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -513,20 +777,69 @@ remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; remoteInfo = Bolts; }; - 4DF1EC91079CECF0D6EF1419FA85C75C /* PBXContainerItemProxy */ = { + 4DD0E5DEAABC7194769067C350F390D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8E87CBA9EBF6671AAFD3A8CCD2C3875B; + remoteInfo = AeroGearOAuth2; + }; + 567C942B4E8F40CAB5AD0879E0683C5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D52FE07CEB8B5458F3C73BB37A484FB; + remoteInfo = SWRevealViewController; + }; + 56A8A09B634FE343598FA884ABB1D552 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C34098A7DACA89F52BF902062730F50; + remoteInfo = "GDataXML-HTML"; + }; + 5C509E9B0E70038AFCE31DC35532DC13 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 45935B91DF0442390E2CA6DEEF68AE99; + remoteInfo = OAuthSwift; + }; + 603001D4B68354299A334D5D2E13BEF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = BB23E0C4DDD7DE0A3E6056FA65D2D721; + remoteInfo = SwiftyJSON; + }; + 614D19A8D4A73023DFC86C5F567CB4EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D52FE07CEB8B5458F3C73BB37A484FB; + remoteInfo = SWRevealViewController; + }; + 7346A7F1FBB3A528EBD76CD455B73501 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = BB23E0C4DDD7DE0A3E6056FA65D2D721; + remoteInfo = SwiftyJSON; + }; + 7541FFC8C2E33628D7F74CC546A5B99A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6184234CE5B97D6DADDB68315E67B58; + remoteInfo = AeroGearHttp; + }; + 7662E20B474C7C0ED3D469B333B6372D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 79C040AFDDCE1BCBF6D8B5EB0B85887F; remoteInfo = Alamofire; }; - 6EFCEC7109C3B3C5FABCE1CA89D7441D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; - remoteInfo = Bolts; - }; 7BDFEC0F5B0693C2D315E9D3973E276E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -534,27 +847,132 @@ remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; remoteInfo = Bolts; }; - 85B30AEA9E57E15BF53714BA3CEEFB24 /* PBXContainerItemProxy */ = { + 7C347AA735D81929ECF37A0B1848CC5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 0FF38C485BD8E73F614C919F834D6EAB; remoteInfo = UIImageViewModeScaleAspect; }; - 8FCBEB7838870F68B8D8DC7BF014151A /* PBXContainerItemProxy */ = { + 7D8F65FE601942792A9B5833587C1160 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8AA3DDB8797222294E1288CB197A8347; + remoteInfo = BSGridCollectionViewLayout; + }; + 7F8224D73B0081B89F464CDAC9CF8580 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 30D7FCF8072F5D59AE1C98D94F9A6EC9; remoteInfo = FBSDKShareKit; }; - AAF55DDBBF802AEBB4CDB4D653D48156 /* PBXContainerItemProxy */ = { + 8052C65AFD2EA2723F06DB7F898A1938 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 2CCDCB2693626E9850F1E6B594D41754; + remoteGlobalIDString = 92943306EC8070DF9CD02ECD505D2CD5; + remoteInfo = Locksmith; + }; + 807A24453967E8E41906EBD374A32D3A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 30D7FCF8072F5D59AE1C98D94F9A6EC9; + remoteInfo = FBSDKShareKit; + }; + 82CDB16FE61EEC2123EBABE1DE86F80A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8E87CBA9EBF6671AAFD3A8CCD2C3875B; + remoteInfo = AeroGearOAuth2; + }; + 89EBD5097BCBAFECA0CB8482EF08FD99 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 92943306EC8070DF9CD02ECD505D2CD5; + remoteInfo = Locksmith; + }; + 8DC433D252328C4854A9B71C9B80171A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6EDC37F3FA92533C6AC3562458AA91F1; + remoteInfo = FBSDKLoginKit; + }; + 8EE8A7619E216FCA6EAE1851B9647DF3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 31CABCBBC4853F0A3523D99FE6D41F17; remoteInfo = TYMActivityIndicatorView; }; + 913117DE20193CBB968A79298F160D7C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C59EE95662AD4757E7FCE220DB1AFA41; + remoteInfo = BSImagePicker; + }; + 9A623F1209117F00152F49A7FB728C6E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6184234CE5B97D6DADDB68315E67B58; + remoteInfo = AeroGearHttp; + }; + 9BF04298D863634A3930B30CE2B83542 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8E87CBA9EBF6671AAFD3A8CCD2C3875B; + remoteInfo = AeroGearOAuth2; + }; + 9F7F215826A50AFE1DD448B473E34E72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; + remoteInfo = Bolts; + }; + A25DE1CC509AA6C44D1C2F741C0E1718 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8AA3DDB8797222294E1288CB197A8347; + remoteInfo = BSGridCollectionViewLayout; + }; + A26DD2EE4C48318816483EC52CDCD9B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0FF38C485BD8E73F614C919F834D6EAB; + remoteInfo = UIImageViewModeScaleAspect; + }; + A51EB6F1F45F0F787AFC0928F2478B40 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; + remoteInfo = Bolts; + }; + A7B12E2686EF844D6CF50DEED46AC5F0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C34098A7DACA89F52BF902062730F50; + remoteInfo = "GDataXML-HTML"; + }; + AB87F20ADEAEFBB3B7530AA0EF8B122B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4878C70B21CA37D7CB8A476BF986741B; + remoteInfo = AFNetworking; + }; AD07E7F22B87C22CE2751F56D6D442EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -562,14 +980,35 @@ remoteGlobalIDString = BB23E0C4DDD7DE0A3E6056FA65D2D721; remoteInfo = SwiftyJSON; }; - B39A3BE01716EA93B76819ACB53F4A9A /* PBXContainerItemProxy */ = { + AD371313103EB06D17310364824C54B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = BB23E0C4DDD7DE0A3E6056FA65D2D721; - remoteInfo = SwiftyJSON; + remoteGlobalIDString = B6184234CE5B97D6DADDB68315E67B58; + remoteInfo = AeroGearHttp; }; - BA40967F57D0A2C277772C9EB1CB2E70 /* PBXContainerItemProxy */ = { + BC9778A824EDAF3AAB0C9AC94E8E24FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AA2F4091B94E46EEE3AD6055CB49C7D; + remoteInfo = PicoKit; + }; + BE5579070A24A6341305F7E29DDD0AB7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6EDC37F3FA92533C6AC3562458AA91F1; + remoteInfo = FBSDKLoginKit; + }; + BEF00CE4DE7A92CB3D4916EFAD5D4E16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6184234CE5B97D6DADDB68315E67B58; + remoteInfo = AeroGearHttp; + }; + BFF128E5D040CC7DA2E11C09E08FA208 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; @@ -583,6 +1022,34 @@ remoteGlobalIDString = F7DE5171AA3C53DA4E4A078B795C78EE; remoteInfo = "BSImagePicker-BSImagePicker"; }; + C5C42AA7935403FFCAE4B3B976AA8D47 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6EDC37F3FA92533C6AC3562458AA91F1; + remoteInfo = FBSDKLoginKit; + }; + CAAE30A3AFADAEED0971E3BD715DF7C3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = BB23E0C4DDD7DE0A3E6056FA65D2D721; + remoteInfo = SwiftyJSON; + }; + CBA4BF1C2836107D6A4A8DE25E274C5D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8AA3DDB8797222294E1288CB197A8347; + remoteInfo = BSGridCollectionViewLayout; + }; + CDEC1DDDDC87A123A6962ACDDD71BFCE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 45935B91DF0442390E2CA6DEEF68AE99; + remoteInfo = OAuthSwift; + }; CFD970D7ADCC55CB11A7402ECAE02E55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -590,20 +1057,6 @@ remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; remoteInfo = FBSDKCoreKit; }; - D19B874B734708A373B3A5EC822FFDCD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8AA3DDB8797222294E1288CB197A8347; - remoteInfo = BSGridCollectionViewLayout; - }; - D545518F49EA60CE0A9CB1E925226C94 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 92943306EC8070DF9CD02ECD505D2CD5; - remoteInfo = Locksmith; - }; DFB7D8638BEFDCC4CCF33BEB67F1B89B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -611,6 +1064,20 @@ remoteGlobalIDString = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC; remoteInfo = Bolts; }; + E250CF7CC130313AE0672DA2E999F5F7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; + remoteInfo = FBSDKCoreKit; + }; + E477007BAEE3D7F6DFFC145E026F964B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0FF38C485BD8E73F614C919F834D6EAB; + remoteInfo = UIImageViewModeScaleAspect; + }; E7450D99B2453F88BFE579F53382A53E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -625,576 +1092,792 @@ remoteGlobalIDString = 0EB19C1377A747F81110D44E2D5FCF78; remoteInfo = FBSDKCoreKit; }; - FD48ED5E72A1C395BA09B16EFC094756 /* PBXContainerItemProxy */ = { + EECE245E01E5CF005C6A194B77804CD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = FD72A3BB780C489CD6459BC489936E39; - remoteInfo = SWRevealViewController; + remoteGlobalIDString = C59EE95662AD4757E7FCE220DB1AFA41; + remoteInfo = BSImagePicker; }; - FE63CD0430ED52BBED07445B87711BF0 /* PBXContainerItemProxy */ = { + EED08BD60636E6719FC447D614EAE98E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4878C70B21CA37D7CB8A476BF986741B; + remoteInfo = AFNetworking; + }; + FA1EA0EE81ED4248D35359E7508DC398 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C59EE95662AD4757E7FCE220DB1AFA41; + remoteInfo = BSImagePicker; + }; + FD91081831EA0EF759CBC589E290C1CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 45935B91DF0442390E2CA6DEEF68AE99; remoteInfo = OAuthSwift; }; + FE5731C5F4D7F13FF971809E90835463 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AA2F4091B94E46EEE3AD6055CB49C7D; + remoteInfo = PicoKit; + }; + FE7B2385B85F5C2C33B4F06ACE374820 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 79C040AFDDCE1BCBF6D8B5EB0B85887F; + remoteInfo = Alamofire; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00585ED6A1E3ADC4B1994D9C52CB75CB /* FBSDKDynamicFrameworkLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDynamicFrameworkLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m; sourceTree = ""; }; - 011B426855F3AD1EDBA51DFCC7356304 /* FBSDKBridgeAPIProtocolWebV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m; sourceTree = ""; }; - 01AB2860D5960EAA904307CF3042B0F4 /* BFMeasurementEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent.h; path = Bolts/iOS/BFMeasurementEvent.h; sourceTree = ""; }; - 0286AC40763D10FB43674412311E2DA5 /* BFWebViewAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFWebViewAppLinkResolver.h; path = Bolts/iOS/BFWebViewAppLinkResolver.h; sourceTree = ""; }; - 02D0B5FD4BF9A0FCF2244EF888F8B2E5 /* BFTask+Exceptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BFTask+Exceptions.m"; path = "Bolts/Common/BFTask+Exceptions.m"; sourceTree = ""; }; - 038DCD35AF2E4D43A7BDB46B7EF1DB22 /* FBSDKGraphRequestMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestMetadata.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h; sourceTree = ""; }; - 039C05F9C3BCBC8D702D0047CD702FEC /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = PhotoCell.xib; path = Pod/Assets/PhotoCell.xib; sourceTree = ""; }; - 04020163FF5B24AD27377748BC8095DF /* FBSDKLikeBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.h; sourceTree = ""; }; - 04284A439C8B4AC0CBA14CA4B8270F58 /* _FBSDKTemporaryErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKTemporaryErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h; sourceTree = ""; }; - 047043BA5ED1DFFAA5FF9EFB9BE03583 /* NSData+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSData+OAuthSwift.swift"; path = "OAuthSwift/NSData+OAuthSwift.swift"; sourceTree = ""; }; - 0481D060F297511141C86A7373CFC26A /* FBSDKBridgeAPIProtocolWebV2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV2.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m; sourceTree = ""; }; - 05077CAB156AE33EC587C987ECDC5CB9 /* TYMActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TYMActivityIndicatorView.m; path = TYMActivityIndicatorView/TYMActivityIndicatorView.m; sourceTree = ""; }; - 056A50E41ACD45E5A241F1874759D8A6 /* FBSDKDialogConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDialogConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h; sourceTree = ""; }; - 05D012656C9A828B81C86CBFE14D38C5 /* FBSDKProfile+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKProfile+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h"; sourceTree = ""; }; - 06286AA0E769984E843A1778D7010958 /* UIImageViewModeScaleAspect.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIImageViewModeScaleAspect.modulemap; sourceTree = ""; }; - 065D53220074C0C7F3881F4382724E6F /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Manager.swift; path = Source/Manager.swift; sourceTree = ""; }; - 0695B1CE2AB89CBD00AF988F55F4AA28 /* FBSDKLoginTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h; sourceTree = ""; }; - 06B15BA2F96A1B552097D87B1811F8BA /* FBSDKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKColor.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h; sourceTree = ""; }; - 074666F512EE438B13AA9E58016D5764 /* BSImagePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSImagePicker-dummy.m"; sourceTree = ""; }; - 074E31C7E72CB0A28336BD0B2B3C9B86 /* FBSDKAppGroupAddDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupAddDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.m; sourceTree = ""; }; - 07D2032BA6AF5FA88BD87D90D636C72B /* BFAppLinkResolving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkResolving.h; path = Bolts/iOS/BFAppLinkResolving.h; sourceTree = ""; }; - 07D413BD2B46425A6A1570F69E06C663 /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 08AAC66ECED2E479C06BEA3F3C1C6417 /* TYMActivityIndicatorView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TYMActivityIndicatorView-dummy.m"; sourceTree = ""; }; - 0951CEC1D6FCB0423CCD5CD47A8C488E /* UIButton+NoAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+NoAnimation.swift"; path = "Pod/Classes/Extension/UIButton+NoAnimation.swift"; sourceTree = ""; }; - 09954C2EF6C77A3F9B3B13F5C568E64A /* FBSDKProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfile.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m; sourceTree = ""; }; - 09F9D53B5C1E6B52A37D1EC474EA9DAF /* BFCancellationTokenSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenSource.m; path = Bolts/Common/BFCancellationTokenSource.m; sourceTree = ""; }; - 0B521064CDB4147936190E4AFFCAFECD /* ZoomAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomAnimator.swift; path = Pod/Classes/Controller/ZoomAnimator.swift; sourceTree = ""; }; - 0B799862E6D27A87E62087D5C721A71D /* FBSDKGraphRequestConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h; sourceTree = ""; }; - 0BB4966A17805B570E55239F70E8086B /* FBSDKSystemAccountStoreAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSystemAccountStoreAdapter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h; sourceTree = ""; }; - 0BE906BE36F26EA382DF3448C0164804 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = OAuthSwift/Utils.swift; sourceTree = ""; }; - 0C5ACA0DCDF125E916672B9D869B5DDB /* CameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCell.swift; path = Pod/Classes/View/CameraCell.swift; sourceTree = ""; }; - 0C6B54C15DCB9A7BA20CDE7BFA5AA373 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - 0C7E41DB504B5085893E87016F3220F8 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 0E70F017E5CF0CFA3D444BCEB3CACF58 /* add_photo.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = add_photo.png; path = Pod/Assets/add_photo.png; sourceTree = ""; }; - 0EED591AA757A6FCEFA54E96E28A6D30 /* BFURL_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL_Internal.h; path = Bolts/iOS/Internal/BFURL_Internal.h; sourceTree = ""; }; - 0F652D5887C997300B6B384F094AF3BA /* FBSDKPaymentObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKPaymentObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.m; sourceTree = ""; }; - 0FC3E22BBB7E987F4750CCFD0A1BABA5 /* Alamofire-SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Alamofire-SwiftyJSON.xcconfig"; sourceTree = ""; }; - 0FCC6C6024CBFE7AFD347F0EF2814B7B /* BSGridCollectionViewLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-umbrella.h"; sourceTree = ""; }; - 102531FFA6A4A73B60BE15B1DBC2101C /* FBSDKIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m; sourceTree = ""; }; - 10A85418756A6DCDB3B53A2EC15140B9 /* GoogleParsingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleParsingUtilities.framework; path = Frameworks/GoogleParsingUtilities.framework; sourceTree = ""; }; - 10B905ED7F63BEF70749F20B9BD9E1AA /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - 10EFD9326532CBF3A652E975458D4CA2 /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; - 117B725E5F86F0C275D2D9877C3C200E /* FBSDKKeychainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStore.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h; sourceTree = ""; }; - 147C50DF4618A2768681CE1518C192B2 /* UIImageViewModeScaleAspect-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImageViewModeScaleAspect-dummy.m"; sourceTree = ""; }; - 152BCCF1CFA7E763815F5810D92C77D3 /* FBSDKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInternalUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m; sourceTree = ""; }; - 153D1C677A1493BBD4CE01B8DE923330 /* AlbumTableViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTableViewDataSource.swift; path = Pod/Classes/Model/AlbumTableViewDataSource.swift; sourceTree = ""; }; - 1557F9A73BCA4280CFF38131D0CC8DFF /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; - 175899CDEF776171B1712A088B6C559F /* FBSDKMaleSilhouetteIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMaleSilhouetteIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m; sourceTree = ""; }; - 1790F6F4C004F61B68BBF9E98AC671A5 /* FBSDKCloseIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCloseIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m; sourceTree = ""; }; - 19161281FF159035CE4CAECBC4DBBCF9 /* Pods-Vendoo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo.modulemap"; sourceTree = ""; }; - 1940DF00D66DFDE7FE11EC605934F2AF /* FBSDKShareDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.h; sourceTree = ""; }; - 196BD4FA6EAC7DDC7D91D90CCDB2C2B1 /* _FBSDKLoginRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKLoginRecoveryAttempter.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.m; sourceTree = ""; }; - 1A5B64745B9C832249713091DC0D800E /* FBSDKConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKConstants.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h; sourceTree = ""; }; - 1A6C70240235B773AB077A864465CAB7 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; - 1AD43EA0E0F580401449137B75CA5A8C /* OAuthSwiftURLHandlerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftURLHandlerType.swift; path = OAuthSwift/OAuthSwiftURLHandlerType.swift; sourceTree = ""; }; - 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSImagePicker.xcconfig; sourceTree = ""; }; - 1B9C980B413AF0E3F9E186379A2FD391 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1BA542913C8A03B351A37D8EE0EA551C /* CameraCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = CameraCell.xib; path = Pod/Assets/CameraCell.xib; sourceTree = ""; }; - 1BFEE98DAB1DFB8964A7A708B278CCC2 /* FBSDKCoreKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKCoreKit+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h"; sourceTree = ""; }; - 1C158E27C24A605F4302621C79D582AF /* OAuthSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OAuthSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1D386E6050818511B409492006499F4C /* FBSDKAppEventsStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsStateManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.h; sourceTree = ""; }; - 1F2211F49BEF06357468E22B95441F3A /* OAuthSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = OAuthSwift.modulemap; sourceTree = ""; }; - 1FC0B01FFCB35DD68C88FACD120209CB /* FBSDKError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKError.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h; sourceTree = ""; }; - 2135E2E37257F55C789EB33AEC3421DF /* FBSDKLoginKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-prefix.pch"; sourceTree = ""; }; - 22D303DFDF96F1212BF6DB6B55685FB7 /* FBSDKSharing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharing.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharing.h; sourceTree = ""; }; - 23C663C1A94947DC754F5917C985A23E /* FBSDKLoginManagerLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLogger.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.h; sourceTree = ""; }; - 23C8141614EF6669CCFA02483E2635A9 /* FBSDKShareConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareConstants.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.h; sourceTree = ""; }; - 23DA1DC267E2A66C8752071214DF8C25 /* FBSDKAudioResourceLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAudioResourceLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h; sourceTree = ""; }; - 23F17D991038A432C69A54A10A996371 /* BFCancellationTokenSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenSource.h; path = Bolts/Common/BFCancellationTokenSource.h; sourceTree = ""; }; - 2445A04A9C256BB3BD64868C9AC215B8 /* arrow_down@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@3x.png"; path = "Pod/Assets/arrow_down@3x.png"; sourceTree = ""; }; - 2447F5DBEE128CAF41B98AC7FA62B9AE /* Pods-Vendoo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-umbrella.h"; sourceTree = ""; }; - 24866B7E01F0D0B56791D75DB796B482 /* BFCancellationToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationToken.m; path = Bolts/Common/BFCancellationToken.m; sourceTree = ""; }; - 25214FC370DBA9171E505277714C6DAE /* FBSDKLoginManagerLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLogger.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.m; sourceTree = ""; }; - 26403593A6C217EE7E59810DD5176551 /* Locksmith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Locksmith.h; path = Source/Locksmith.h; sourceTree = ""; }; - 26DFAB28BA2294A94CD5364E7BA270B0 /* HMAC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HMAC.swift; path = OAuthSwift/HMAC.swift; sourceTree = ""; }; - 288D9E5050F0E674F404A205AD3EAD7D /* FBSDKShareConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareConstants.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.m; sourceTree = ""; }; - 28A97A75036D889273A7E5A183268DBE /* OAuthSwiftHTTPRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftHTTPRequest.swift; path = OAuthSwift/OAuthSwiftHTTPRequest.swift; sourceTree = ""; }; - 2957F2B96367541C9992911375DEAD3F /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Pod/Classes/View/AlbumTitleView.swift; sourceTree = ""; }; - 29C13EFF6729A5A452F92A4C55268FC0 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Analytics/Sources/Firebase.h; sourceTree = ""; }; - 2A057AA22CFCA210BB84AC4A5B093722 /* PhotoCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCollectionViewDataSource.swift; path = Pod/Classes/Model/PhotoCollectionViewDataSource.swift; sourceTree = ""; }; - 2A2D2B645208072C2D8DFFD1C8D5734B /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2A34BB9DBD8BFBD180408D721C9FC5F7 /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2A6FA2A392C919EB362600EAF8949D6A /* SWRevealViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWRevealViewController-dummy.m"; sourceTree = ""; }; - 2C1BF16F3FC60A2E31302FEAB3EC5656 /* FBSDKTestUsersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTestUsersManager.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h; sourceTree = ""; }; - 2C94BA028E584EB0BCB6128F43BFDB85 /* FBSDKLoginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManager.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m; sourceTree = ""; }; - 2D3BA5332F468A9B5097D7C52556D260 /* FBSDKLikeButtonPopWAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButtonPopWAV.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.h; sourceTree = ""; }; - 2DFFB7866D23E56DAD81C5AC4FA3678B /* FBSDKAppGroupJoinDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupJoinDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h; sourceTree = ""; }; - 2E548FFBBFFC3C638DFAB13AD28BD54D /* FBSDKShareKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-prefix.pch"; sourceTree = ""; }; - 2E676AC1FA3482D6F980BFC914F4FA22 /* FBSDKAppEvents+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKAppEvents+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h"; sourceTree = ""; }; - 2E7B38A2ADB965EBA1F5E4B1C5484296 /* FBSDKLikeButtonPopWAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButtonPopWAV.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.m; sourceTree = ""; }; - 2F6256FC09BBDE9115365A362848005F /* Bolts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-prefix.pch"; sourceTree = ""; }; - 2FB1BAFCED2F024669E48A13C76E8B23 /* FBSDKGraphRequestPiggybackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestPiggybackManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m; sourceTree = ""; }; - 2FDAC9906562FC9E71C406DB31C0404C /* SWRevealViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SWRevealViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2FEE53D9E68500DF3C93E39CD3D6BDED /* FBSDKAppInviteDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.h; sourceTree = ""; }; - 30A4112D7F49026838195AFF9C399AAE /* SelectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectionView.swift; path = Pod/Classes/View/SelectionView.swift; sourceTree = ""; }; - 310A08853EFDDC0E46DF9D3C1AB0C08A /* FBSDKGraphRequestDataAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestDataAttachment.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.m; sourceTree = ""; }; - 31813545634047A7300CC635B8702212 /* Pods-VendooTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-VendooTests-acknowledgements.plist"; sourceTree = ""; }; - 31FDC0408245A5A640235A8331A74003 /* FBSDKServerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h; sourceTree = ""; }; - 32D0BA59E7B6E322356BDBA5A4A13C66 /* FBSDKAccessTokenCacheV3_17.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_17.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.m; sourceTree = ""; }; - 33E1AD8B8BF1ABC79CAA7A95CC8704B8 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 342D2D14F18FE74BB6A6CE738A0B2CB7 /* Pods-VendooUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-VendooUITests.modulemap"; sourceTree = ""; }; - 346BFB52A6FE166A7644F1EA2D2F17F9 /* FBSDKShareMediaContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareMediaContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.m; sourceTree = ""; }; - 3487F9F0834A2984F7A6CBBFE77832C0 /* BFURL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFURL.m; path = Bolts/iOS/BFURL.m; sourceTree = ""; }; - 34C62CB96E29378165F15DB1ED09D979 /* Pods-VendooTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-VendooTests-frameworks.sh"; sourceTree = ""; }; - 356FAE7ECA100C903CFCEB942B5376B2 /* FBSDKApplicationDelegate+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKApplicationDelegate+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h"; sourceTree = ""; }; - 3576CAD60037909CEC7337D1032EE1B8 /* FBSDKShareOpenGraphValueContainer+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareOpenGraphValueContainer+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareOpenGraphValueContainer+Internal.h"; sourceTree = ""; }; - 357F22F5B12D009C8BE64107264128C3 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 362F5A481DC62449AFCAAF53EBECE26C /* FBSDKCoreKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.xcconfig; sourceTree = ""; }; - 36858D379ABF898862C0CC535C04F330 /* FBSDKLoginManagerLoginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLoginResult.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h; sourceTree = ""; }; - 3717EB739327385302B6EAA327973473 /* GoogleSymbolUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleSymbolUtilities.framework; path = Frameworks/GoogleSymbolUtilities.framework; sourceTree = ""; }; - 372F83A049E110D3040FD608B0821469 /* FBSDKBridgeAPIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m; sourceTree = ""; }; - 37DE2AA900EAF5881EB44BC3861C4B06 /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = ""; }; - 3801439DB12503E7AEE6DAE4126062F6 /* FBSDKBridgeAPIProtocolNativeV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolNativeV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m; sourceTree = ""; }; - 390305A498AAE4FA6384C23885D35381 /* FBSDKBridgeAPIRequest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKBridgeAPIRequest+Private.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h"; sourceTree = ""; }; - 3A9008D2C5B0F8B7778C46F17423B567 /* FBSDKButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m; sourceTree = ""; }; - 3AFD6C397A221C31DE7997B10C3D850B /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Frameworks/GoogleUtilities.framework; sourceTree = ""; }; - 3BD69B6755759E2317F5C2E4D31CCBB0 /* FBSDKAccessToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessToken.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m; sourceTree = ""; }; - 3C6F7AE195176FE8089A0F90778840C9 /* FBSDKShareDialogMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialogMode.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.h; sourceTree = ""; }; - 3C74938FAAF8997FDD495A4FE80C88E5 /* CameraCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCollectionViewDataSource.swift; path = Pod/Classes/Model/CameraCollectionViewDataSource.swift; sourceTree = ""; }; - 3C8BE375E1765DAF55901B9869FA373A /* Pods-VendooUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-VendooUITests-resources.sh"; sourceTree = ""; }; - 3E6A72177AE03D0D3FFAACB09A64122F /* FBSDKGraphRequestBody.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestBody.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h; sourceTree = ""; }; - 3F28C68F0202A4B8EC327676473C1978 /* BFAppLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink.h; path = Bolts/iOS/BFAppLink.h; sourceTree = ""; }; - 3FCA0B46ACD95E77B874B5D80F96479D /* Pods-VendooUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-VendooUITests-acknowledgements.markdown"; sourceTree = ""; }; - 40865343B41DE6056DC3EFBB6E81BB8B /* Bolts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bolts.h; path = Bolts/Common/Bolts.h; sourceTree = ""; }; - 40CF302F95419BE6C84F48DF81501253 /* FirebaseAuth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAuth.framework; path = Frameworks/frameworks/FirebaseAuth.framework; sourceTree = ""; }; - 41A74D3149BFEEC597096530B36B7834 /* OAuthSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OAuthSwift.xcconfig; sourceTree = ""; }; - 41B8B0DA585E794AE8D2DD50B6A99586 /* FBSDKLikeButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.h; sourceTree = ""; }; - 42FB835A81494D3C2D0A0B220A8832F7 /* BFWebViewAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFWebViewAppLinkResolver.m; path = Bolts/iOS/BFWebViewAppLinkResolver.m; sourceTree = ""; }; - 4353290ADBE9EFE332DFDE3890A3F8AB /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - 4367B6DA4D1004FD4A9D7F67350A4185 /* FBSDKOrganicDeeplinkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKOrganicDeeplinkHelper.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.h; sourceTree = ""; }; - 465F04A17DBA63E2C076BF1CF0A261C8 /* FBSDKErrorRecoveryConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m; sourceTree = ""; }; - 4712F3D9080BCC05C5A73AC51038AF3A /* Stream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stream.swift; path = Source/Stream.swift; sourceTree = ""; }; - 47AED76C491A5F8A6AEAB5B5B18FE8E8 /* FBSDKAccessTokenCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCache.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h; sourceTree = ""; }; - 47BEFCC11356F38906F17BD5C394F6A0 /* FBSDKShareAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareAPI.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m; sourceTree = ""; }; - 489A35D242969C1E44FED7F42241982F /* FBSDKAppGroupAddDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupAddDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h; sourceTree = ""; }; - 48A543CE70E5133398E8F1067F58D68C /* Pods-VendooTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-VendooTests-umbrella.h"; sourceTree = ""; }; - 48BAE11C2962723A078F03352E1BE903 /* SWRevealViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWRevealViewController.h; path = SWRevealViewController/SWRevealViewController.h; sourceTree = ""; }; - 493EA3001F82D4B6A91B88080CC1E4CF /* String+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+OAuthSwift.swift"; path = "OAuthSwift/String+OAuthSwift.swift"; sourceTree = ""; }; - 4965430D42EE44449BD839211B14CBBA /* FBSDKBridgeAPIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h; sourceTree = ""; }; - 4982F8F1A67FBF21500301D2ED686222 /* FBSDKLoginCompletion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginCompletion+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion+Internal.h"; sourceTree = ""; }; - 49E72B8577A635603DBCB22B7F47E74B /* Int+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+OAuthSwift.swift"; path = "OAuthSwift/Int+OAuthSwift.swift"; sourceTree = ""; }; - 49E8704CC714CCD7BB22ECC051374143 /* FBSDKIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h; sourceTree = ""; }; - 4A8D1A1E332DFDF95E8E370C8940881D /* OAuthSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-umbrella.h"; sourceTree = ""; }; - 4B1872ADAF509392B8CAD989661AC908 /* FBSDKBridgeAPIProtocolType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolType.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h; sourceTree = ""; }; - 4B27661861AC166A62F7292B060A1BFE /* FBSDKDialogConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDialogConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m; sourceTree = ""; }; - 4B60A968F064418A22AC21AB3643E58A /* FBSDKLikeControl+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeControl+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeControl+Internal.h"; sourceTree = ""; }; - 4BAD57A11B70C897CC5BBDF0F8343761 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; - 4BBCF838F7437F8E93662CE1878488F2 /* UIImageViewModeScaleAspect-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-prefix.pch"; sourceTree = ""; }; - 4BDBA9CD01260465C28385EF473F325A /* FBSDKLogo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h; sourceTree = ""; }; - 4C0F8821F5CCEE5139C5BCFF4E1EE8D2 /* Alamofire-SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Alamofire-SwiftyJSON.modulemap"; sourceTree = ""; }; - 4C1E69121493656638A217E352916884 /* FBSDKGraphRequestConnection+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequestConnection+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h"; sourceTree = ""; }; - 4C68F495B7D884C7BC1E249C8DA53550 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = ""; }; - 4D58E7F41DDEFC4928A1F0F58E051454 /* Pods-VendooTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-VendooTests-dummy.m"; sourceTree = ""; }; - 4D7D50BD827D5D31C946A7E81340210D /* FBSDKBoltsMeasurementEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBoltsMeasurementEventListener.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.m; sourceTree = ""; }; - 4F0D17FD15E6DFF97362D33AEC4326C3 /* FBSDKAccessToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessToken.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h; sourceTree = ""; }; - 4F62499A17E949433ED6392AD5830F9F /* BSImagePickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerViewController.swift; path = Pod/Classes/Controller/BSImagePickerViewController.swift; sourceTree = ""; }; - 4F9E7DD6C25F2643B3BA5639C3BA1CF2 /* Pods-Vendoo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-resources.sh"; sourceTree = ""; }; - 4FD7CCB6792182DD4227D2463ECB14EE /* FBSDKMessengerIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessengerIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.h; sourceTree = ""; }; - 50398AACB5DCECEA07598D46262F60C1 /* FBSDKServerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m; sourceTree = ""; }; - 50BB73F1953804776AE3B51434B4A808 /* FBSDKLoginKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginKit.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h; sourceTree = ""; }; - 519E05B853D79A208722EF4CB5011EB3 /* FBSDKAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h; sourceTree = ""; }; - 51B1CDD76CB64351C364ACFF728F151B /* UIImageViewModeScaleAspect.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIImageViewModeScaleAspect.xcconfig; sourceTree = ""; }; - 51CABEFFE4D4CA365C2BE1A9DFEC042E /* OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwift.swift; path = OAuthSwift/OAuthSwift.swift; sourceTree = ""; }; - 539A45FF2820C0397EFA4E7CC7593DAA /* FBSDKLoginManagerLoginResult+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManagerLoginResult+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLoginResult+Internal.h"; sourceTree = ""; }; - 54C7096A93492BE25FCD41B622F90137 /* Settings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = Pod/Classes/Model/Settings.swift; sourceTree = ""; }; - 54D37A71D5C1658176DA169EBEA190C6 /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 55CA6E736C9F7DC63AEEBF63B4C2A705 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - 55E623E7FFD7CF91879C1D9E565E9E9F /* FBSDKGraphRequest+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequest+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h"; sourceTree = ""; }; - 567F503770CF61BE79C2E1751B9251D0 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 56F2893A29CDE9E46883B855EB5076A8 /* FBSDKShareButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.m; sourceTree = ""; }; - 570EF570439698547CFD0918103B0FC8 /* FBSDKHashtag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKHashtag.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.h; sourceTree = ""; }; - 57A5E781E0DA0CF2341FEE600C1B4E39 /* Pods-Vendoo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-acknowledgements.markdown"; sourceTree = ""; }; - 57E7C1F37F56E246732F49E4100939A3 /* GoogleNetworkingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleNetworkingUtilities.framework; path = Frameworks/GoogleNetworkingUtilities.framework; sourceTree = ""; }; - 586BDB44B6FD3A349451AA76505E44DE /* FBSDKMonotonicTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMonotonicTime.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h; sourceTree = ""; }; - 587ADAAB96453CCCE7250700B5B0382C /* FBSDKLoginCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginCompletion.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.m; sourceTree = ""; }; - 587E054373A1A6251BBFA320F1C5E777 /* FBSDKConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKConstants.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m; sourceTree = ""; }; - 58F6736D9F0B1505FFFFE7AC412FD10B /* FBSDKApplicationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationDelegate.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h; sourceTree = ""; }; - 593AB69DED4AEFE1CEDA10CADD30A12F /* FBSDKAccessTokenCacheV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV4.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.h; sourceTree = ""; }; - 595C6C688A14F796BDDAC11D3561EBFA /* FBSDKGraphRequestDataAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestDataAttachment.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h; sourceTree = ""; }; - 59CB452D60719872A8D8D2A9E6B0033F /* FBSDKMutableCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMutableCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h; sourceTree = ""; }; - 59F08ECEBAF4DE8D2AD5A8B967CBE5A7 /* Pods-Vendoo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-acknowledgements.plist"; sourceTree = ""; }; - 59F2E1B94E40710E052D28853EED0B21 /* FBSDKShareDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m; sourceTree = ""; }; - 5A2338515D2F2F6F202A29F5805FCC6E /* FBSDKCheckmarkIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCheckmarkIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.h; sourceTree = ""; }; - 5AAE1FAA427602B915E89F31BE922DFD /* BFAppLinkTarget.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkTarget.h; path = Bolts/iOS/BFAppLinkTarget.h; sourceTree = ""; }; - 5B75EF4922B59E4FF64F55B2A2126190 /* Pods-Vendoo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.release.xcconfig"; sourceTree = ""; }; - 5B848E82108125EC326D47AB31A2F22C /* FBSDKLikeActionControllerCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionControllerCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.h; sourceTree = ""; }; - 5BF98092840C7E3915480838332E903E /* Alamofire-SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-prefix.pch"; sourceTree = ""; }; - 5CEAD1F5161DF65F4720143F881D2784 /* FBSDKMessageDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessageDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.h; sourceTree = ""; }; - 5CF391926CFB207F583FD6914621B8F3 /* add_photo@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@3x.png"; path = "Pod/Assets/add_photo@3x.png"; sourceTree = ""; }; - 5D1F4EAA1153A5002ACC7E79A05ABF2B /* FBSDKErrorRecoveryConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h; sourceTree = ""; }; - 5D4248B4248F09B04B1A091EDD65C941 /* AlbumTitleView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AlbumTitleView.xib; path = Pod/Assets/AlbumTitleView.xib; sourceTree = ""; }; - 5DAF450F014E35FD0336C9A78C4DCADF /* BFTaskCompletionSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTaskCompletionSource.h; path = Bolts/Common/BFTaskCompletionSource.h; sourceTree = ""; }; - 602327647D485001C987606923812A24 /* FBSDKShareKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareKit+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareKit+Internal.h"; sourceTree = ""; }; - 608E3ABD377E82496A5337A79A221D08 /* FBSDKShareOpenGraphValueContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphValueContainer.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.m; sourceTree = ""; }; - 60B4782E67D6262642548419F18E80D2 /* FBSDKBridgeAPICrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPICrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.m; sourceTree = ""; }; - 612DCA919E91F9CD41BC8508DEC999B6 /* FBSDKSharingContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingContent.h; sourceTree = ""; }; - 618ECCEC9BCD09F8899F23521B734CBD /* OAuthSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAuthSwift-dummy.m"; sourceTree = ""; }; - 619CB520EFECE118A9C289E3E1B551A6 /* FBSDKAppLinkUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.m; sourceTree = ""; }; - 61CAAEFC2E3CD7D22729B1A9187B1E22 /* Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Download.swift; path = Source/Download.swift; sourceTree = ""; }; - 629D29F9DF390FF1F77C146BA3772941 /* FBSDKAccessTokenCacheV3.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.m; sourceTree = ""; }; - 62D2E2DF74BBF1B25658A15C2D14C38B /* FBSDKBridgeAPIProtocolNativeV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolNativeV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h; sourceTree = ""; }; - 649842685524827C5A5DEFE8E2176519 /* FBSDKLoginUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginUtility.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.h; sourceTree = ""; }; - 64BA55A22C314C1BD5CC9F82142B5206 /* Pods-VendooTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-VendooTests-resources.sh"; sourceTree = ""; }; - 65565131FFA5724E2E45C2EDA504D7EC /* FBSDKUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h; sourceTree = ""; }; - 65B02BB38EC53DDB0CCEB2EA4FA4860C /* Bolts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Bolts.m; path = Bolts/Common/Bolts.m; sourceTree = ""; }; - 65CFD899AB7F08E9D9E85D71B99AF379 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - 66E96A6BEBE3696A76E3490F422AE22D /* FBSDKLogo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m; sourceTree = ""; }; - 670484F0A8B2B977BF70D2F460F5D072 /* FBSDKCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h; sourceTree = ""; }; - 67D1860D7A5238ACC9C6038E11D199E7 /* FBSDKGameRequestDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.h; sourceTree = ""; }; - 67FDC82380588290CC983685C24A9BEF /* FBSDKServerConfigurationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfigurationManager+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h"; sourceTree = ""; }; - 68C75E364438BD4A2A91EFA34C2EC4F5 /* FBSDKLoginError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginError.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.h; sourceTree = ""; }; - 68CF7BC3B9485BE695AF33C0B983466C /* FBSDKVideoUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKVideoUploader.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.h; sourceTree = ""; }; - 6909C0A42D79A9E7E20C15555B7D3AF6 /* FBSDKAppInviteContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.h; sourceTree = ""; }; - 6962FBDE51D8EE80C263B9AAC3E73544 /* FBSDKLikeControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeControl.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.h; sourceTree = ""; }; - 6A2B615A6D122C23E743AE0723C10D70 /* FBSDKAccessTokenCacheV3_21.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_21.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.m; sourceTree = ""; }; - 6A57654440ECBD6CD1038E8AFFA0900E /* Pods-Vendoo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.debug.xcconfig"; sourceTree = ""; }; - 6A8C961059630A4710A51B63E77C7166 /* FBSDKShareOpenGraphAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphAction.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.m; sourceTree = ""; }; - 6A96153A48825817291791F039CA46BC /* FBSDKProfilePictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfilePictureView.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h; sourceTree = ""; }; - 6AAA9B94C373DE09E8EAF39FB517C3AB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 6ABB4A1B059F2C3DB988E439B0663CED /* FBSDKButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h; sourceTree = ""; }; - 6AE20D4830FE4654C5D7177640373842 /* arrow_down@1x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@1x.png"; path = "Pod/Assets/arrow_down@1x.png"; sourceTree = ""; }; - 6BF2E459AE017AF237B83ABD87D07644 /* FBSDKSharePhotoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhotoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.m; sourceTree = ""; }; - 6C0A13967CBFD7F1D7FD1ED5F2048ABD /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6CE8B1280DDF3E2A4C5C90889E9CAD86 /* FBSDKBridgeAPICrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPICrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.h; sourceTree = ""; }; - 6D0FB6610DC6E2EE881A7DC1A27AE08B /* FBSDKShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-umbrella.h"; sourceTree = ""; }; - 6D1F0C2758F3377EB56AD6B70AD9E31F /* FBSDKBridgeAPIProtocolWebV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h; sourceTree = ""; }; - 6DB66E858784BB94825DC58A68DC73FE /* AlbumsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumsViewController.swift; path = Pod/Classes/Controller/AlbumsViewController.swift; sourceTree = ""; }; - 6DE86188A6FCBF74B3DDF80DAF762D8D /* FBSDKCoreKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-umbrella.h"; sourceTree = ""; }; - 6E0ED8FCD4706F179875E8FDDD376C07 /* FBSDKLoginKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKLoginKit.xcconfig; sourceTree = ""; }; - 6E5404BA7A65D9B812D0B579ACAE32C0 /* BFAppLinkReturnToRefererView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererView.m; path = Bolts/iOS/BFAppLinkReturnToRefererView.m; sourceTree = ""; }; - 6F451A818A81CE1CA2997B22E2F824A8 /* BFAppLinkReturnToRefererController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererController.h; path = Bolts/iOS/BFAppLinkReturnToRefererController.h; sourceTree = ""; }; - 6F638C0DC2035DDD0C99EFA5D2CB04C0 /* FBSDKBridgeAPIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIResponse.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m; sourceTree = ""; }; - 6F6AC5173F7217ABF3809A93327DD1B8 /* FBSDKLoginError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginError.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.m; sourceTree = ""; }; - 6F77A73860E4CC16A3D7909ABD371A2B /* FBSDKProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfile.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h; sourceTree = ""; }; - 6FB3EF87C00E30203385004F25C6217B /* FBSDKShareOpenGraphObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphObject.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.m; sourceTree = ""; }; - 6FF1A4CB76EA84CE3085BBB9C9668594 /* FBSDKTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h; sourceTree = ""; }; - 6FF34EF9AD5646F68DC259202336F9C6 /* FBSDKServerConfigurationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfigurationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m; sourceTree = ""; }; - 723ECCDDCC515AB5DF944A0CB5D38E68 /* UIViewController+BSImagePicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+BSImagePicker.swift"; path = "Pod/Classes/Extension/UIViewController+BSImagePicker.swift"; sourceTree = ""; }; - 7344AD8B08164EEC7FE43F081D1BFCF7 /* FBSDKServerConfigurationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfigurationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h; sourceTree = ""; }; - 739CA6E9C8A7BF2A1448A3B54EC17D75 /* FBSDKBridgeAPIProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocol.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h; sourceTree = ""; }; - 74155F71266D75256737B79453D89972 /* FBSDKKeychainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStore.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m; sourceTree = ""; }; - 7563FF47193D1D8BAE56139D8D1EE1E5 /* FBSDKLoginTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m; sourceTree = ""; }; - 75776C83CEA1021EE206F357065A5D4E /* FBSDKAccessTokenCaching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCaching.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h; sourceTree = ""; }; - 75AA560774BFE5E9C616BDBB3A1F6BB9 /* Bolts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bolts.xcconfig; sourceTree = ""; }; - 76B2D5A4FDBAFE8045DC81718CC04804 /* SWRevealViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SWRevealViewController.modulemap; sourceTree = ""; }; - 7880F3320D04C201FD607D4928B457C0 /* NSDate+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSDate+OAuthSwift.swift"; path = "OAuthSwift/NSDate+OAuthSwift.swift"; sourceTree = ""; }; - 78A2822B4B35937899E996FBBE5686F7 /* FBSDKShareOpenGraphContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.m; sourceTree = ""; }; - 7912F4113AE8DD62E802CB866FDFD246 /* FBSDKSystemAccountStoreAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSystemAccountStoreAdapter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.m; sourceTree = ""; }; - 7941E4F5171B1B346547196159B7F021 /* BFAppLinkReturnToRefererController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererController.m; path = Bolts/iOS/BFAppLinkReturnToRefererController.m; sourceTree = ""; }; - 796A60127F07661498934C4B1F59F171 /* FBSDKLikeButton+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeButton+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButton+Internal.h"; sourceTree = ""; }; - 7A56569177353F8896A4CA98F95A1694 /* FBSDKURLConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.h; sourceTree = ""; }; - 7AFE88C9CA52195835FDA349B8BD0456 /* FBSDKViewImpressionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewImpressionTracker.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h; sourceTree = ""; }; - 7B022207009D691594C86EDF5E4367A0 /* FBSDKLoginButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginButton.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m; sourceTree = ""; }; - 7C2B4DA54AE1DC17D644FDA1E22DA6B1 /* FBSDKWebDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialog.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h; sourceTree = ""; }; - 7D39668D19B520F2D0D59135BFB85EFF /* FBSDKTriStateBOOL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTriStateBOOL.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h; sourceTree = ""; }; - 7D3DC244D1A3E747B9692BFD580EA4B9 /* FBSDKBridgeAPIProtocolWebV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV2.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h; sourceTree = ""; }; - 7D7F48A0DF39B55921FABEAF6D1D831B /* FBSDKWebDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialog.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m; sourceTree = ""; }; - 7DCCDFA1452F66D49B71C642EDD50406 /* Pods-VendooTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VendooTests.debug.xcconfig"; sourceTree = ""; }; - 7E2783BFC3EE592D41AAEFE93C7A48B7 /* Pods-VendooUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VendooUITests.debug.xcconfig"; sourceTree = ""; }; - 7EBEA79B4C2F3D8E52CF265ABC735AB5 /* Pods-Vendoo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-dummy.m"; sourceTree = ""; }; - 7EEAF1C38B82F546FC2E987DDE5BE1E6 /* BFAppLink_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink_Internal.h; path = Bolts/iOS/Internal/BFAppLink_Internal.h; sourceTree = ""; }; - 7F1C58FBC8D46FEADC084B36BB31E5E8 /* FBSDKSharePhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhoto.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.h; sourceTree = ""; }; - 7FA06726A3A4D67408C806746E96C8AC /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8074D60BE815B5CA7232FC7D727AD3F7 /* FBSDKAppEventsDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsDeviceInfo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.h; sourceTree = ""; }; - 81A9055B74C0D7BA3FC38D2A71D1D43C /* FBSDKCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h; sourceTree = ""; }; - 821C105E7B37A67F473C27DC5BE33ABB /* FBSDKGraphRequestConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m; sourceTree = ""; }; - 825440041869A6F73297E2C3A80B8FE2 /* FBSDKGameRequestDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.m; sourceTree = ""; }; - 82675B7575195852CE5569845110C28D /* FBSDKGraphRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.m; sourceTree = ""; }; - 8310D2F6EE6852D032E667DD27336189 /* Bolts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-umbrella.h"; sourceTree = ""; }; - 83A6E5C7F12A45D81A0E380CAC42E359 /* FBSDKLoginKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-umbrella.h"; sourceTree = ""; }; - 842CF92121F511EEE4EFFB78442505C1 /* TYMActivityIndicatorView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TYMActivityIndicatorView.xcconfig; sourceTree = ""; }; - 843C8694F530D4A2885C27905C175FF5 /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 846B4EBC0175F58BE1532936CBFE5775 /* BFExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFExecutor.m; path = Bolts/Common/BFExecutor.m; sourceTree = ""; }; - 8476590EA3BB4BB64470DDFEE45C57BD /* Bolts.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Bolts.modulemap; sourceTree = ""; }; - 847B59EB48D8E27A629770FE018FC186 /* UIImageViewModeScaleAspect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIImageViewModeScaleAspect.h; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.h; sourceTree = ""; }; - 848CB23B7D7142592ADD551D8361E7AE /* FBSDKSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSettings.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m; sourceTree = ""; }; - 8518604B1DDA50C4A7334973D987D7D9 /* UIImageViewModeScaleAspect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIImageViewModeScaleAspect.m; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.m; sourceTree = ""; }; - 8593DD424DA11B636CB13941114645A8 /* FBSDKShareOpenGraphContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.h; sourceTree = ""; }; - 8630F8225C102A413417B6B07A4F5D13 /* FBSDKCoreKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCoreKit.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h; sourceTree = ""; }; - 865087E2141F346423CE18A38514C82C /* FBSDKShareError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareError.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.h; sourceTree = ""; }; - 86734F85827ED40DF80B50C3E34715A4 /* FBSDKOrganicDeeplinkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKOrganicDeeplinkHelper.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m; sourceTree = ""; }; - 876B4625B11E425B58C9AC9535433FD0 /* FBSDKCloseIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCloseIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h; sourceTree = ""; }; - 87A2AE4A4B440B1E19C1CCD0DB7E28CD /* BFCancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationToken.h; path = Bolts/Common/BFCancellationToken.h; sourceTree = ""; }; - 87EA03B9137A04087367F68DFB797902 /* FBSDKShareVideoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.m; sourceTree = ""; }; - 8923C60E9F94D742D3E09828D91D0EAD /* FBSDKShareDialogMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialogMode.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.m; sourceTree = ""; }; - 894B1052D8FE7F7E8F3E7D9FD7596337 /* FBSDKLikeBoxView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.m; sourceTree = ""; }; - 89F08BE14793B3EA58B3AD92AE96A07A /* FBSDKShareVideoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.h; sourceTree = ""; }; - 8AD8294FA33B540803065AE414509D9A /* BSImagePicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8B24C65D035024B4009D1610DDA85698 /* FBSDKGraphRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h; sourceTree = ""; }; - 8BA8338F6BF956A91C26B9D066B2DFD4 /* Locksmith-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-prefix.pch"; sourceTree = ""; }; - 8BBEBB8FF0BC75C5D51499B3D5A85B84 /* FBSDKHashtag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKHashtag.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.m; sourceTree = ""; }; - 8CD7F38060C10058D9FB08266437FF03 /* Bolts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Bolts-dummy.m"; sourceTree = ""; }; - 8D449C964012C71CF2F1634115426DDB /* FBSDKLoginUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginUtility.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.m; sourceTree = ""; }; - 8E0BA22D04666FB9DDE0C4885B0444B1 /* Pods_Vendoo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8E297C702F67E5D9A6A352C3104BB138 /* FBSDKLoginCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginCompletion.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.h; sourceTree = ""; }; - 8E66B0CA1D0CE47F01ED37FB8B0B0C06 /* FBSDKAppGroupContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.m; sourceTree = ""; }; - 8E70857388786A651E3CF481AB2FFF10 /* Alamofire_SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire_SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F2D479798E817CFCD34A83767459319 /* FBSDKShareUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareUtility.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m; sourceTree = ""; }; - 8F391C0D12A784F565EC1552F97B07A0 /* FBSDKLoginConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginConstants.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h; sourceTree = ""; }; - 8FFB3BDA70B4188039760330C17F308D /* FBSDKTypeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTypeUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.h; sourceTree = ""; }; - 9005C358A54C7976DB11F820376783D0 /* FBSDKErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m; sourceTree = ""; }; - 900C71B8EEDA1FC7F1B63B41300A448D /* FBSDKLikeActionControllerCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionControllerCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.m; sourceTree = ""; }; - 90C38784FF7BEBF18081122CEB322A50 /* OAuthWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthWebViewController.swift; path = OAuthSwift/OAuthWebViewController.swift; sourceTree = ""; }; - 90D28FCC8F6E75B2650EB26E715C0D44 /* FBSDKAppInviteContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.m; sourceTree = ""; }; - 9139E797B9DD8806512CB1B143F3A007 /* FBSDKLoginManagerLoginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLoginResult.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.m; sourceTree = ""; }; - 9245421EE502846626B3F29FDB2FAB97 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; - 92AD10E370437A3B99BD3B82AF4F13ED /* Pods-VendooUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VendooUITests.release.xcconfig"; sourceTree = ""; }; - 92C6A76B7934E11453ADC3EF3002AD8A /* FBSDKAppEventsStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsStateManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.m; sourceTree = ""; }; + 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h; sourceTree = ""; }; + 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSIndexSet+NSIndexPath.swift"; path = "Pod/Classes/Extension/NSIndexSet+NSIndexPath.swift"; sourceTree = ""; }; + 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; + 0153AE17D43D9366820D16273D0C2232 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0187BE1EE97858C5A1A6C7BD4099CA4B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererController.h; path = Bolts/iOS/BFAppLinkReturnToRefererController.h; sourceTree = ""; }; + 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL.h; path = Bolts/iOS/BFURL.h; sourceTree = ""; }; + 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestMetadata.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h; sourceTree = ""; }; + 023F4374BD9F7B4F8555090AA7A8267E /* BSImagePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-prefix.pch"; sourceTree = ""; }; + 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeControl+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeControl+Internal.h"; sourceTree = ""; }; + 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Source/Error.swift; sourceTree = ""; }; + 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideo.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.m; sourceTree = ""; }; + 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.h; sourceTree = ""; }; + 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConfig.m; path = Pod/Core/PicoConfig.m; sourceTree = ""; }; + 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoWritable.h; path = Pod/Core/PicoWritable.h; sourceTree = ""; }; + 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h; sourceTree = ""; }; + 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDataConverter.h; path = Pod/Core/Converter/PicoDataConverter.h; sourceTree = ""; }; + 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearOAuth2.xcconfig; sourceTree = ""; }; + 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.h; sourceTree = ""; }; + 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkResolving.h; path = Bolts/iOS/BFAppLinkResolving.h; sourceTree = ""; }; + 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.m; sourceTree = ""; }; + 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupAddDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.m; sourceTree = ""; }; + 08605C3156BFC50AC0F7824EF800A43A /* Pods-Vendoo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-resources.sh"; sourceTree = ""; }; + 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; + 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhotoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.h; sourceTree = ""; }; + 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Fault.m; path = Pod/SOAP/SOAP12/SOAP12Fault.m; sourceTree = ""; }; + 093DAF379B09CB9CC8C2594730E6C861 /* GDataXML-HTML-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GDataXML-HTML-prefix.pch"; sourceTree = ""; }; + 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Body.h; path = Pod/SOAP/SOAP12/SOAP12Body.h; sourceTree = ""; }; + 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpRequestSerializer.swift; path = AeroGearHttp/HttpRequestSerializer.swift; sourceTree = ""; }; + 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultreason.h; path = Pod/SOAP/SOAP12/SOAP12Faultreason.h; sourceTree = ""; }; + 0A04452A724860D85F3FC806E0147F14 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12UpgradeType.m; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.m; sourceTree = ""; }; + 0A8A9F7077071AC139E54B95C669CBE2 /* Pods-Vendoo-VendooUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-VendooUITests-dummy.m"; sourceTree = ""; }; + 0B5E34F5C87CFA9E2E41449FFC06ACE1 /* Pods_Vendoo_VendooUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessToken.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.m; sourceTree = ""; }; + 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKButton.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h; sourceTree = ""; }; + 0C486B4727AFE0A4797C33C8E2765A92 /* OAuthSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-prefix.pch"; sourceTree = ""; }; + 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Subcode.m; path = Pod/SOAP/SOAP12/SOAP12Subcode.m; sourceTree = ""; }; + 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView.h; path = Bolts/iOS/BFAppLinkReturnToRefererView.h; sourceTree = ""; }; + 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWRevealViewController.m; path = SWRevealViewController/SWRevealViewController.m; sourceTree = ""; }; + 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h; sourceTree = ""; }; + 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDataXMLNode.h; path = Pod/Classes/GDataXMLNode.h; sourceTree = ""; }; + 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = AFNetworking/AFHTTPRequestOperation.h; sourceTree = ""; }; + 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCloseIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.m; sourceTree = ""; }; + 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m; sourceTree = ""; }; + 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestDataAttachment.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.m; sourceTree = ""; }; + 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; + 0EFE3877D6773C11887700B43A5A1BC2 /* ResourceBundle-BSImagePicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-BSImagePicker-Info.plist"; sourceTree = ""; }; + 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKColor.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h; sourceTree = ""; }; + 0FAD2E1B6781BFA7E28D456F1CAED86C /* FBSDKShareKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-prefix.pch"; sourceTree = ""; }; + 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stream.swift; path = Source/Stream.swift; sourceTree = ""; }; + 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphErrorRecoveryProcessor.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.m; sourceTree = ""; }; + 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12FaultcodeEnum.h; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.h; sourceTree = ""; }; + 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-umbrella.h"; sourceTree = ""; }; + 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HMAC.swift; path = OAuthSwift/HMAC.swift; sourceTree = ""; }; + 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Upload.swift; path = Source/Upload.swift; sourceTree = ""; }; + 1195C4D4C4A323222EE46F4260672DC0 /* Pods-Vendoo-VendooTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-VendooTests-acknowledgements.markdown"; sourceTree = ""; }; + 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLRequestOperation.h; path = Pod/WebService/PicoXMLRequestOperation.h; sourceTree = ""; }; + 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpenIDClaim.swift; path = AeroGearOAuth2/OpenIDClaim.swift; sourceTree = ""; }; + 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.m; sourceTree = ""; }; + 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink_Internal.h; path = Bolts/iOS/Internal/BFAppLink_Internal.h; sourceTree = ""; }; + 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMath.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h; sourceTree = ""; }; + 126AE26BF4C4370952DC6B3B8EF9B26A /* FBSDKShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKShareKit.modulemap; sourceTree = ""; }; + 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequest+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h"; sourceTree = ""; }; + 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsState.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.m; sourceTree = ""; }; + 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; + 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTriStateBOOL.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m; sourceTree = ""; }; + 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialog.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.m; sourceTree = ""; }; + 154E3CF52EB5D09A7733CBB9D06C1EF5 /* AeroGearHttp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearHttp.modulemap; sourceTree = ""; }; + 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-umbrella.h"; sourceTree = ""; }; + 15711FB818776F1D8CB48B60128D6DA6 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.m; sourceTree = ""; }; + 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKPaymentObserver.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.m; sourceTree = ""; }; + 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.m; sourceTree = ""; }; + 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionControllerCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.h; sourceTree = ""; }; + 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBase64.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m; sourceTree = ""; }; + 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthWebViewController.swift; path = OAuthSwift/OAuthWebViewController.swift; sourceTree = ""; }; + 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12NotUnderstoodType.h; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.h; sourceTree = ""; }; + 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 188D44008D91F312115987B46D6CF552 /* Pods-Vendoo-VendooUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-VendooUITests-acknowledgements.markdown"; sourceTree = ""; }; + 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInternalUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h; sourceTree = ""; }; + 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareUtility.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.m; sourceTree = ""; }; + 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideo.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.h; sourceTree = ""; }; + 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m; sourceTree = ""; }; + 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Envelope.m; path = Pod/SOAP/SOAP11/SOAP11Envelope.m; sourceTree = ""; }; + 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumCell.swift; path = Pod/Classes/View/AlbumCell.swift; sourceTree = ""; }; + 1BDC798AC5D47CD190B16D3757D416CD /* AeroGearHttp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-prefix.pch"; sourceTree = ""; }; + 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFURL.m; path = Bolts/iOS/BFURL.m; sourceTree = ""; }; + 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = ""; }; + 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionController.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.h; sourceTree = ""; }; + 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoStringConverter.m; path = Pod/Core/Converter/PicoStringConverter.m; sourceTree = ""; }; + 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BSImagePicker.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerSettings.swift; path = Pod/Classes/Protocol/BSImagePickerSettings.swift; sourceTree = ""; }; + 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView_Internal.h; path = Bolts/iOS/Internal/BFAppLinkReturnToRefererView_Internal.h; sourceTree = ""; }; + 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConstants.h; path = Pod/Core/PicoConstants.h; sourceTree = ""; }; + 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphValueContainer.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.m; sourceTree = ""; }; + 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = AFNetworking/AFURLConnectionOperation.m; sourceTree = ""; }; + 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_17.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.h; sourceTree = ""; }; + 201F21FDB9DC9CB6D20957853F7ABF70 /* BSGridCollectionViewLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSGridCollectionViewLayout.modulemap; sourceTree = ""; }; + 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLElement.m; path = Pod/Core/XMLSupport/PicoXMLElement.m; sourceTree = ""; }; + 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKShareKit-umbrella.h"; sourceTree = ""; }; + 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSettings.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h; sourceTree = ""; }; + 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h; sourceTree = ""; }; + 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLReader.h; path = Pod/Core/PicoXMLReader.h; sourceTree = ""; }; + 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareError.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.h; sourceTree = ""; }; + 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCacheEntry.h; path = Pod/Core/Cache/PicoCacheEntry.h; sourceTree = ""; }; + 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfigurationManager+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h"; sourceTree = ""; }; + 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKVideoUploader.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.m; sourceTree = ""; }; + 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphErrorRecoveryProcessor.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h; sourceTree = ""; }; + 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12NotUnderstoodType.m; path = Pod/SOAP/SOAP12/SOAP12NotUnderstoodType.m; sourceTree = ""; }; + 259D5CF25D587FDE7125A75DCD68A3D6 /* Pods-Vendoo-VendooUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo-VendooUITests.modulemap"; sourceTree = ""; }; + 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-SwiftyJSON-dummy.m"; sourceTree = ""; }; + 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 266CB4545C6FD7A9D2B0E629F2E7D860 /* Bolts.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Bolts.modulemap; sourceTree = ""; }; + 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12UpgradeType.h; path = Pod/SOAP/SOAP12/SOAP12UpgradeType.h; sourceTree = ""; }; + 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Bolts.m; path = Bolts/Common/Bolts.m; sourceTree = ""; }; + 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButtonPopWAV.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.h; sourceTree = ""; }; + 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKTemporaryErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h; sourceTree = ""; }; + 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBindingSchema.m; path = Pod/Core/Schema/PicoBindingSchema.m; sourceTree = ""; }; + 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BFTask+Exceptions.m"; path = "Bolts/Common/BFTask+Exceptions.m"; sourceTree = ""; }; + 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetAuthenticationType.swift; path = Source/LocksmithInternetAuthenticationType.swift; sourceTree = ""; }; + 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoNumberConverter.h; path = Pod/Core/Converter/PicoNumberConverter.h; sourceTree = ""; }; + 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + 2988D6367AC970D13B7AE0B9C4B3A5CF /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Detail.m; path = Pod/SOAP/SOAP12/SOAP12Detail.m; sourceTree = ""; }; + 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMaleSilhouetteIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.m; sourceTree = ""; }; + 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStoreViaBundleID.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h; sourceTree = ""; }; + 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialogMode.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.m; sourceTree = ""; }; + 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV2.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.m; sourceTree = ""; }; + 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIImageViewModeScaleAspect.xcconfig; sourceTree = ""; }; + 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIAlertView+AFNetworking.h"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.h"; sourceTree = ""; }; + 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLRequestOperation.m; path = Pod/WebService/PicoXMLRequestOperation.m; sourceTree = ""; }; + 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h; sourceTree = ""; }; + 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKViewImpressionTracker.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h; sourceTree = ""; }; + 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; + 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphAction.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.m; sourceTree = ""; }; + 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessToken.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h; sourceTree = ""; }; + 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginButton.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h; sourceTree = ""; }; + 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-umbrella.h"; sourceTree = ""; }; + 2E0A612D1C153F05BE41C16F4462C893 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 2E1E0BF60942125C2F4FA0F0D9C3A482 /* Bolts-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-prefix.pch"; sourceTree = ""; }; + 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Locksmith.xcconfig; sourceTree = ""; }; + 2E9442C823B6DA7C3A7653A638F855F9 /* BSImagePicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSImagePicker.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Reasontext.h; path = Pod/SOAP/SOAP12/SOAP12Reasontext.h; sourceTree = ""; }; + 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogger.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h; sourceTree = ""; }; + 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TYMActivityIndicatorView.bundle; path = TYMActivityIndicatorView/TYMActivityIndicatorView.bundle; sourceTree = ""; }; + 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStoreViaBundleID.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m; sourceTree = ""; }; + 31513EB23B093A6F2C70644F9587813B /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareLinkContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.h; sourceTree = ""; }; + 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.m; sourceTree = ""; }; + 332E9ADCDB1A37E41540865A4A73B07B /* AeroGearOAuth2-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearOAuth2-prefix.pch"; sourceTree = ""; }; + 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPClient.h; path = Pod/WebService/PicoSOAPClient.h; sourceTree = ""; }; + 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV4.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.h; sourceTree = ""; }; + 339D24377EF92D935F881CD2DDBCE13B /* GoogleUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleUtilities.framework; path = Frameworks/GoogleUtilities.framework; sourceTree = ""; }; + 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = OAuthSwift/Utils.swift; sourceTree = ""; }; + 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.m; sourceTree = ""; }; + 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Body.m; path = Pod/SOAP/SOAP12/SOAP12Body.m; sourceTree = ""; }; + 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = AeroGearOAuth2/Config.swift; sourceTree = ""; }; + 354093A3F49294E88E6A9D1C720D76CE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 35773BF3F8D35D8635CE8E04D3381269 /* Pods-Vendoo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-dummy.m"; sourceTree = ""; }; + 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.m; sourceTree = ""; }; + 35E922A51EACCBA7AE6AC58D002E4A0B /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-umbrella.h"; sourceTree = ""; }; + 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginButton.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m; sourceTree = ""; }; + 368891931E4FDAD657575C866C45466D /* Alamofire_SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire_SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.m; sourceTree = ""; }; + 3738A2FF8F7328CA11038CA2E0550FDB /* FBSDKShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsDeviceInfo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.h; sourceTree = ""; }; + 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBoltsMeasurementEventListener.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.m; sourceTree = ""; }; + 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OAuthSwift.xcconfig; sourceTree = ""; }; + 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFWebViewAppLinkResolver.h; path = Bolts/iOS/BFWebViewAppLinkResolver.h; sourceTree = ""; }; + 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareConstants.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.h; sourceTree = ""; }; + 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkTarget.m; path = Bolts/iOS/BFAppLinkTarget.m; sourceTree = ""; }; + 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareLinkContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.m; sourceTree = ""; }; + 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Detail.h; path = Pod/SOAP/SOAP11/SOAP11Detail.h; sourceTree = ""; }; + 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKConstants.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.m; sourceTree = ""; }; + 3C1AA7FFD701C1A7D3F654C6E8FC6EF4 /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Int+OAuthSwift.swift"; path = "OAuthSwift/Int+OAuthSwift.swift"; sourceTree = ""; }; + 3D2898F978B2ED9E604E36EA4FF85288 /* TYMActivityIndicatorView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = TYMActivityIndicatorView.modulemap; sourceTree = ""; }; + 3D39DD62BD3344215867E4F6A59AFE01 /* Pods-Vendoo-VendooTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooTests.debug.xcconfig"; sourceTree = ""; }; + 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Subcode.h; path = Pod/SOAP/SOAP12/SOAP12Subcode.h; sourceTree = ""; }; + 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestSerializer.swift; path = AeroGearHttp/RequestSerializer.swift; sourceTree = ""; }; + 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDataXMLNode.m; path = Pod/Classes/GDataXMLNode.m; sourceTree = ""; }; + 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkNavigation.h; path = Bolts/iOS/BFAppLinkNavigation.h; sourceTree = ""; }; + 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDataConverter.m; path = Pod/Core/Converter/PicoDataConverter.m; sourceTree = ""; }; + 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Bolts-umbrella.h"; sourceTree = ""; }; + 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAudioResourceLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m; sourceTree = ""; }; + 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.m; sourceTree = ""; }; + 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeControl.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.m; sourceTree = ""; }; + 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPReader.m; path = Pod/SOAP/PicoSOAPReader.m; sourceTree = ""; }; + 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Body.h; path = Pod/SOAP/SOAP11/SOAP11Body.h; sourceTree = ""; }; + 42377CA15BC4A1804E1B51F383CC187C /* Pods-Vendoo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Vendoo-acknowledgements.markdown"; sourceTree = ""; }; + 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.m; sourceTree = ""; }; + 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDialogConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.m; sourceTree = ""; }; + 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphObject.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.h; sourceTree = ""; }; + 43840A1884785D097D5B32FD47F9D5ED /* OAuthSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = OAuthSwift.modulemap; sourceTree = ""; }; + 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKProfile+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h"; sourceTree = ""; }; + 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12SupportedEnvType.m; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.m; sourceTree = ""; }; + 4578E1AEB9C23435264A4E8697646F3B /* BSGridCollectionViewLayout.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BSGridCollectionViewLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKGraphRequestConnection+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h"; sourceTree = ""; }; + 45C2113345F291B93A3A47FEC42E9D6B /* Pods-Vendoo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-acknowledgements.plist"; sourceTree = ""; }; + 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStore.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h; sourceTree = ""; }; + 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginUtility.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.m; sourceTree = ""; }; + 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = AeroGearHttp/Utils.swift; sourceTree = ""; }; + 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.h; sourceTree = ""; }; + 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TYMActivityIndicatorView.h; path = TYMActivityIndicatorView/TYMActivityIndicatorView.h; sourceTree = ""; }; + 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = ""; }; + 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIResponse.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.m; sourceTree = ""; }; + 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCollectionViewDataSource.swift; path = Pod/Classes/Model/PhotoCollectionViewDataSource.swift; sourceTree = ""; }; + 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Alamofire-SwiftyJSON.xcconfig"; sourceTree = ""; }; + 49B6B3AA873F4F4971FAAFC663B2E729 /* SWRevealViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SWRevealViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphAction.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.h; sourceTree = ""; }; + 4B68653733D3131EABDCBB864E04AD74 /* GDataXML_HTML.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GDataXML_HTML.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerializer.swift; path = AeroGearHttp/ResponseSerializer.swift; sourceTree = ""; }; + 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareAPI.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.m; sourceTree = ""; }; + 4C24E9863E58DC41ED1E5B1C4A56C71E /* BSImagePicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSImagePicker.modulemap; sourceTree = ""; }; + 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestFrictionlessRecipientCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.h; sourceTree = ""; }; + 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.h; sourceTree = ""; }; + 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSendButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.h; sourceTree = ""; }; + 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKShareKit-dummy.m"; sourceTree = ""; }; + 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCell.swift; path = Pod/Classes/View/CameraCell.swift; sourceTree = ""; }; + 4FA352C897875F16D04154699FD41CCF /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenSource.m; path = Bolts/Common/BFCancellationTokenSource.m; sourceTree = ""; }; + 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKPaymentObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.h; sourceTree = ""; }; + 5005A8699C453626503502CFA2E8301E /* GDataXML_HTML.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GDataXML_HTML.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m; sourceTree = ""; }; + 5076B7CD77208083D1E3BE8579D7AE81 /* Locksmith.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Locksmith.modulemap; sourceTree = ""; }; + 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GridCollectionViewLayout.swift; path = Pod/Classes/GridCollectionViewLayout.swift; sourceTree = ""; }; + 5150E3628702E4006BBC221030EDED31 /* FirebaseAuth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAuth.framework; path = Frameworks/frameworks/FirebaseAuth.framework; sourceTree = ""; }; + 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDynamicFrameworkLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h; sourceTree = ""; }; + 5207A19057DF081CF4F2BF90DFC02240 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenSource.h; path = Bolts/Common/BFCancellationTokenSource.h; sourceTree = ""; }; + 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoPropertySchema.h; path = Pod/Core/Schema/PicoPropertySchema.h; sourceTree = ""; }; + 5255B7F22C5FA05618744F0C036E41B9 /* Pods-Vendoo-VendooUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooUITests.debug.xcconfig"; sourceTree = ""; }; + 52EB8E3A82853C0FBFC87CD6A335C47C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; + 5377850009ED2C9DCC8B62C24AAC728A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogo.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h; sourceTree = ""; }; + 5424DE5409E08C2F52D10017A2211C1B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 547F0F61578EE093020B8127CFD6661D /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 54A978CB632AD6DA73D28D7061829190 /* Pods-Vendoo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.debug.xcconfig"; sourceTree = ""; }; + 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoCache.h; path = Pod/Core/Cache/PicoCache.h; sourceTree = ""; }; + 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButtonPopWAV.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButtonPopWAV.m; sourceTree = ""; }; + 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.h; sourceTree = ""; }; + 55E0553BC1CEA1822AA7826599C94FD4 /* AeroGearOAuth2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearOAuth2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTask.m; path = Bolts/Common/BFTask.m; sourceTree = ""; }; + 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.m; sourceTree = ""; }; + 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftCredential.swift; path = OAuthSwift/OAuthSwiftCredential.swift; sourceTree = ""; }; + 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStore.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.m; sourceTree = ""; }; + 5767233EA7637354C8E61061C9409DBB /* OAuthSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OAuthSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPICrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.m; sourceTree = ""; }; + 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTestUsersManager.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h; sourceTree = ""; }; + 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UIImageViewModeScaleAspect.h; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.h; sourceTree = ""; }; + 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SelectionView.swift; path = Pod/Classes/View/SelectionView.swift; sourceTree = ""; }; + 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSystemAccountStoreAdapter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h; sourceTree = ""; }; + 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolWebV2.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h; sourceTree = ""; }; + 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dictionary_Initializers.swift; path = Source/Dictionary_Initializers.swift; sourceTree = ""; }; + 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithSecurityClass.swift; path = Source/LocksmithSecurityClass.swift; sourceTree = ""; }; + 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.h; sourceTree = ""; }; + 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; + 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKTemporaryErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m; sourceTree = ""; }; + 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImageViewModeScaleAspect-dummy.m"; sourceTree = ""; }; + 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkNavigation.m; path = Bolts/iOS/BFAppLinkNavigation.m; sourceTree = ""; }; + 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoPropertySchema.m; path = Pod/Core/Schema/PicoPropertySchema.m; sourceTree = ""; }; + 5B7F2F67EFB8A8B31FE8ED6A9104C3B0 /* Pods-Vendoo-VendooTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Vendoo-VendooTests-dummy.m"; sourceTree = ""; }; + 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLiking.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLiking.h; sourceTree = ""; }; + 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerViewController.swift; path = Pod/Classes/Controller/BSImagePickerViewController.swift; sourceTree = ""; }; + 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareKit+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareKit+Internal.h"; sourceTree = ""; }; + 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrustedPersistantOAuth2Session.swift; path = AeroGearOAuth2/TrustedPersistantOAuth2Session.swift; sourceTree = ""; }; + 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginCompletion+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion+Internal.h"; sourceTree = ""; }; + 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeycloakOAuth2Module.swift; path = AeroGearOAuth2/KeycloakOAuth2Module.swift; sourceTree = ""; }; + 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Envelope.h; path = Pod/SOAP/SOAP11/SOAP11Envelope.h; sourceTree = ""; }; + 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m; sourceTree = ""; }; + 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestBody.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m; sourceTree = ""; }; + 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TYMActivityIndicatorView-dummy.m"; sourceTree = ""; }; + 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhoto.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.h; sourceTree = ""; }; + 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginKit+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginKit+Internal.h"; sourceTree = ""; }; + 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialog.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h; sourceTree = ""; }; + 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@3x.png"; path = "Pod/Assets/add_photo@3x.png"; sourceTree = ""; }; + 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupJoinDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.h; sourceTree = ""; }; + 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h; sourceTree = ""; }; + 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKVideoUploader.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.h; sourceTree = ""; }; + 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeDialog.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.h; sourceTree = ""; }; + 6338A6287B607CCD2B89962C6901CC22 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthzModule.swift; path = AeroGearHttp/AuthzModule.swift; sourceTree = ""; }; + 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoClassSchema.m; path = Pod/Core/Schema/PicoClassSchema.m; sourceTree = ""; }; + 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; + 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDefines.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h; sourceTree = ""; }; + 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = AFNetworking/AFURLConnectionOperation.h; sourceTree = ""; }; + 64F849AB0C6D915F04D9363C0EB073CB /* Pods_Vendoo_VendooTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKIcon.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.m; sourceTree = ""; }; + 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TYMActivityIndicatorView.m; path = TYMActivityIndicatorView/TYMActivityIndicatorView.m; sourceTree = ""; }; + 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h; sourceTree = ""; }; + 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Header.h; path = Pod/SOAP/SOAP12/SOAP12Header.h; sourceTree = ""; }; + 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKConstants.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h; sourceTree = ""; }; + 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIResponse.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h; sourceTree = ""; }; + 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLClient.m; path = Pod/WebService/PicoXMLClient.m; sourceTree = ""; }; + 669778F135362ED70DD925DB53B18444 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; + 66D71F6E609FAFF75BA34F31AC4A6F98 /* SWRevealViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-prefix.pch"; sourceTree = ""; }; + 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestPiggybackManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h; sourceTree = ""; }; + 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMonotonicTime.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.h; sourceTree = ""; }; + 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-umbrella.h"; sourceTree = ""; }; + 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMutableCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h; sourceTree = ""; }; + 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConstants.m; path = Pod/Core/PicoConstants.m; sourceTree = ""; }; + 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Reasontext.m; path = Pod/SOAP/SOAP12/SOAP12Reasontext.m; sourceTree = ""; }; + 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCacheEntry.m; path = Pod/Core/Cache/PicoCacheEntry.m; sourceTree = ""; }; + 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTask.h; path = Bolts/Common/BFTask.h; sourceTree = ""; }; + 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKLoginKit.xcconfig; sourceTree = ""; }; + 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSData+OAuthSwift.swift"; path = "OAuthSwift/NSData+OAuthSwift.swift"; sourceTree = ""; }; + 6BFC736EF30D49729E53EC5AC8310491 /* FBSDKCoreKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-prefix.pch"; sourceTree = ""; }; + 6C0497209BB7308E6684025BD2BE8076 /* GoogleInterchangeUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleInterchangeUtilities.framework; path = Frameworks/GoogleInterchangeUtilities.framework; sourceTree = ""; }; + 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UIImageViewModeScaleAspect.m; path = UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.m; sourceTree = ""; }; + 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Swift.swift; path = OAuthSwift/OAuth2Swift.swift; sourceTree = ""; }; + 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManager.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h; sourceTree = ""; }; + 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTaskCompletionSource.h; path = Bolts/Common/BFTaskCompletionSource.h; sourceTree = ""; }; + 6D711B5958F2624711CB342A5BBA5D17 /* Pods-Vendoo-VendooTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooTests-resources.sh"; sourceTree = ""; }; + 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeDialog.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.m; sourceTree = ""; }; + 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginError.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.h; sourceTree = ""; }; + 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = XMLWriter.h; path = Pod/XMLWriter/XMLWriter.h; sourceTree = ""; }; + 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Bolts.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestFrictionlessRecipientCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.m; sourceTree = ""; }; + 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Module.swift; path = AeroGearOAuth2/OAuth2Module.swift; sourceTree = ""; }; + 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKCoreKit-dummy.m"; sourceTree = ""; }; + 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKHashtag.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.m; sourceTree = ""; }; + 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV4.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m; sourceTree = ""; }; + 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKApplicationDelegate.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m; sourceTree = ""; }; + 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Manager.swift; path = Source/Manager.swift; sourceTree = ""; }; + 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPClient.m; path = Pod/WebService/PicoSOAPClient.m; sourceTree = ""; }; + 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.h; sourceTree = ""; }; + 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_21.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.h; sourceTree = ""; }; + 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UntrustedMemoryOAuth2Session.swift; path = AeroGearOAuth2/UntrustedMemoryOAuth2Session.swift; sourceTree = ""; }; + 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestMetadata.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m; sourceTree = ""; }; + 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = AFNetworking/AFHTTPRequestOperation.m; sourceTree = ""; }; + 756045EA57C784EEB157B18756DCCE1E /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLoginResult.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h; sourceTree = ""; }; + 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginConstants.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.m; sourceTree = ""; }; + 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultcode.m; path = Pod/SOAP/SOAP12/SOAP12Faultcode.m; sourceTree = ""; }; + 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKServerConfigurationManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.m; sourceTree = ""; }; + 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetProtocol.swift; path = Source/LocksmithInternetProtocol.swift; sourceTree = ""; }; + 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLWriter.m; path = Pod/Core/PicoXMLWriter.m; sourceTree = ""; }; + 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginCompletion.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.h; sourceTree = ""; }; + 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenRegistration.m; path = Bolts/Common/BFCancellationTokenRegistration.m; sourceTree = ""; }; + 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfilePictureView.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m; sourceTree = ""; }; + 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKApplicationDelegate.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h; sourceTree = ""; }; + 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationToken.h; path = Bolts/Common/BFCancellationToken.h; sourceTree = ""; }; + 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCopying.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h; sourceTree = ""; }; + 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCell.swift; path = Pod/Classes/View/PhotoCell.swift; sourceTree = ""; }; + 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfile.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.m; sourceTree = ""; }; + 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKOrganicDeeplinkHelper.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.h; sourceTree = ""; }; + 7B3D6B712BF9A7AE7667FCF079270313 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareAPI.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.h; sourceTree = ""; }; + 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CameraCollectionViewDataSource.swift; path = Pod/Classes/Model/CameraCollectionViewDataSource.swift; sourceTree = ""; }; + 7CC12098B0F5B8F0228D39F0FCEA1DF3 /* Pods-Vendoo-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-frameworks.sh"; sourceTree = ""; }; + 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTypeUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.m; sourceTree = ""; }; + 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDialogMode.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.h; sourceTree = ""; }; + 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; + 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SWRevealViewController-dummy.m"; sourceTree = ""; }; + 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSystemAccountStoreAdapter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.m; sourceTree = ""; }; + 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPWriter.h; path = Pod/SOAP/PicoSOAPWriter.h; sourceTree = ""; }; + 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKHashtag.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.h; sourceTree = ""; }; + 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLikeButton+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeButton+Internal.h"; sourceTree = ""; }; + 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SWRevealViewController.h; path = SWRevealViewController/SWRevealViewController.h; sourceTree = ""; }; + 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWRevealViewController.xcconfig; sourceTree = ""; }; + 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearOAuth2-dummy.m"; sourceTree = ""; }; + 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_17.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.m; sourceTree = ""; }; + 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCloseIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h; sourceTree = ""; }; + 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolType.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h; sourceTree = ""; }; + 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoConverter.m; path = Pod/Core/Converter/PicoConverter.m; sourceTree = ""; }; + 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PicoKit-dummy.m"; sourceTree = ""; }; + 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h; sourceTree = ""; }; + 81D2A412E76804FC3F7D718F35862618 /* Pods-Vendoo-VendooUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-VendooUITests-acknowledgements.plist"; sourceTree = ""; }; + 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwift.swift; path = OAuthSwift/OAuthSwift.swift; sourceTree = ""; }; + 81F08B43E92B486C2C86F709681C9AFD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfile.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h; sourceTree = ""; }; + 827DF8A7D55FF991FBAE6D38BA69E49A /* UIImageViewModeScaleAspect-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-prefix.pch"; sourceTree = ""; }; + 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCheckmarkIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.h; sourceTree = ""; }; + 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFExecutor.h; path = Bolts/Common/BFExecutor.h; sourceTree = ""; }; + 830D7C28C7F7C7E68853BAAF9C67506C /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKBridgeAPIRequest+Private.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h"; sourceTree = ""; }; + 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKShareKit.xcconfig; sourceTree = ""; }; + 851DEBFE4286CC4586850D01A4791BC4 /* Pods-Vendoo-VendooTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooTests-frameworks.sh"; sourceTree = ""; }; + 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = ""; }; + 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithAccessibleOption.swift; path = Source/LocksmithAccessibleOption.swift; sourceTree = ""; }; + 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = Pod/Classes/Model/Settings.swift; sourceTree = ""; }; + 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AlbumTitleView.xib; path = Pod/Assets/AlbumTitleView.xib; sourceTree = ""; }; + 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestDataAttachment.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h; sourceTree = ""; }; + 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftMultipartData.swift; path = OAuthSwift/OAuthSwiftMultipartData.swift; sourceTree = ""; }; + 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AccountManager.swift; path = AeroGearOAuth2/AccountManager.swift; sourceTree = ""; }; + 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.m; sourceTree = ""; }; + 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLElement.h; path = Pod/Core/XMLSupport/PicoXMLElement.h; sourceTree = ""; }; + 899A95C142F12D481CD55CE31B877707 /* TYMActivityIndicatorView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-prefix.pch"; sourceTree = ""; }; + 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolNativeV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.m; sourceTree = ""; }; + 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfiguration+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h"; sourceTree = ""; }; + 8A72F2A0364E85BCEF535172B07A0757 /* SWRevealViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SWRevealViewController.modulemap; sourceTree = ""; }; + 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@2x.png"; path = "Pod/Assets/arrow_down@2x.png"; sourceTree = ""; }; + 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locksmith.swift; path = Source/Locksmith.swift; sourceTree = ""; }; + 8BB8FDCE60E4FDDFB68FCF6AFB09D36A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8C2D0E6279241B28F02C33D1A4C39DF3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8C7124C17B0E1F3CD45549F473D588E0 /* Pods-Vendoo-VendooUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooUITests.release.xcconfig"; sourceTree = ""; }; + 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestPiggybackManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.m; sourceTree = ""; }; + 8CEAF64433FE0B8BF0E4044AB798F808 /* FirebaseDatabase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDatabase.framework; path = Frameworks/FirebaseDatabase.framework; sourceTree = ""; }; + 8D55AAF03A70BC4FAA313B2B6542B17C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.m; sourceTree = ""; }; + 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSettings.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m; sourceTree = ""; }; + 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent.h; path = Bolts/iOS/BFMeasurementEvent.h; sourceTree = ""; }; + 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Header.m; path = Pod/SOAP/SOAP11/SOAP11Header.m; sourceTree = ""; }; + 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftHTTPRequest.swift; path = OAuthSwift/OAuthSwiftHTTPRequest.swift; sourceTree = ""; }; + 8F4B77E1672A1DC2211428EFE20BA4A1 /* Pods-Vendoo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo.release.xcconfig"; sourceTree = ""; }; + 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestBody.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h; sourceTree = ""; }; + 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3_21.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.m; sourceTree = ""; }; + 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsState.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.h; sourceTree = ""; }; + 911E65118A7D0BF59B6B87A72C15A8D5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h; sourceTree = ""; }; + 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConvertable.h; path = Pod/Core/Converter/PicoConvertable.h; sourceTree = ""; }; + 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftURLHandlerType.swift; path = OAuthSwift/OAuthSwiftURLHandlerType.swift; sourceTree = ""; }; + 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSImagePicker-dummy.m"; sourceTree = ""; }; + 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMonotonicTime.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 93C40B150A72DE55C306B15C57167AF3 /* UIImageViewModeScaleAspect-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-umbrella.h"; sourceTree = ""; }; - 93CBD14BDECEE87E398D848CC0A0EA09 /* Locksmith.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Locksmith.xcconfig; sourceTree = ""; }; - 947C7CF8D13DD272C34EAC17D688FF53 /* FBSDKLikeActionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeActionController.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.h; sourceTree = ""; }; - 94A183C715041E6B90628D05EAEF64B3 /* FBSDKGameRequestContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.h; sourceTree = ""; }; - 94D62EC341B1028589E38ED0B4F02B70 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 94DFF4BE2F56F696B7AF138F842DB762 /* FBSDKLoginManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManager+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManager+Internal.h"; sourceTree = ""; }; - 94E7B97DC3EA06B40957CEF0B7D91DA2 /* BFURL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL.h; path = Bolts/iOS/BFURL.h; sourceTree = ""; }; - 95248638D5A56898FE10483CF301310F /* LocksmithInternetProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetProtocol.swift; path = Source/LocksmithInternetProtocol.swift; sourceTree = ""; }; - 95807CF52F27BCECF4EE6F1D9C392729 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; - 95B151D4B1B9EA435ECC83CA9D958F74 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 96225DC450AAD892FB05C3505015895D /* FBSDKLikeBoxBorderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxBorderView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.h; sourceTree = ""; }; - 966F52BCE6A299FDA79088511DFAF0A5 /* FBSDKTypeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTypeUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.m; sourceTree = ""; }; - 977A77D81A88A77122FFA1749EAFD6DB /* Locksmith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locksmith.swift; path = Source/Locksmith.swift; sourceTree = ""; }; - 982F2721D6A780FBA5FE26976E687F06 /* FBSDKUIUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUIUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h; sourceTree = ""; }; - 991E400F5F8D69F5A3F934C47D1BCB33 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; - 995F19662EE7096D3D4D1A840FB5890B /* FBSDKLoginKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKLoginKit.modulemap; sourceTree = ""; }; - 9979151D596195B9E1C34D2A8365DB5A /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Sources/FIRInstanceID.h; sourceTree = ""; }; - 99C61F87C58C6A6FE77802A33C76C0B4 /* BFAppLinkNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkNavigation.m; path = Bolts/iOS/BFAppLinkNavigation.m; sourceTree = ""; }; - 9A2DEAD1D8707724838B84F7D63C9427 /* FBSDKLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogger.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m; sourceTree = ""; }; - 9A66E06D98AEE2FD51E5CC36DE00FF80 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 9B8178B458BE535BB1F89EBD46A95E14 /* FBSDKShareOpenGraphAction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphAction.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.h; sourceTree = ""; }; - 9BBC6109805EA4248DE2E19CE824D9A4 /* BSImagePicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-umbrella.h"; sourceTree = ""; }; - 9BEE32B89BD2CDA670B4D1507F00992E /* BFAppLinkReturnToRefererView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView.h; path = Bolts/iOS/BFAppLinkReturnToRefererView.h; sourceTree = ""; }; - 9C2DC012AC8044C478D4048744B178BE /* FBSDKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMacros.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h; sourceTree = ""; }; - 9D81576415EC296582C94B7E28F346A1 /* FBSDKShareKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKShareKit.modulemap; sourceTree = ""; }; - 9D8F47426E921C346338816A886FAEAD /* NSIndexSet+NSIndexPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSIndexSet+NSIndexPath.swift"; path = "Pod/Classes/Extension/NSIndexSet+NSIndexPath.swift"; sourceTree = ""; }; - 9E8757B8C83282F0EAFB61326094B507 /* FBSDKShareMediaContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareMediaContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.h; sourceTree = ""; }; - 9EB2D5998BDF99BDD3FC12DCA12FD09B /* GoogleInterchangeUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleInterchangeUtilities.framework; path = Frameworks/GoogleInterchangeUtilities.framework; sourceTree = ""; }; - 9EB632DE0EA204AD6BAF7139F6B3F896 /* LocksmithInternetAuthenticationType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithInternetAuthenticationType.swift; path = Source/LocksmithInternetAuthenticationType.swift; sourceTree = ""; }; - 9F7781103637255790BB03201581135E /* BFMeasurementEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFMeasurementEvent.m; path = Bolts/iOS/BFMeasurementEvent.m; sourceTree = ""; }; - 9F85846DD3E423756586063E4709D1B5 /* FBSDKErrorRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorRecoveryAttempter.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h; sourceTree = ""; }; - A009960F5CE077103C2136FDF71707FA /* BSImagePickerSettings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSImagePickerSettings.swift; path = Pod/Classes/Protocol/BSImagePickerSettings.swift; sourceTree = ""; }; - A10218D8B31AC8814359543B426DB575 /* TYMActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TYMActivityIndicatorView.h; path = TYMActivityIndicatorView/TYMActivityIndicatorView.h; sourceTree = ""; }; - A1300BC8F2586C188E564C086A3DBA8A /* FBSDKGraphRequestBody.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestBody.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.m; sourceTree = ""; }; - A1AF57D1ABD07CD95A06371FCADAFAA4 /* FBSDKAccessTokenCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCache.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m; sourceTree = ""; }; - A22A44A17DA26A3B0EC4CA6E006CFE44 /* BFAppLinkTarget.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkTarget.m; path = Bolts/iOS/BFAppLinkTarget.m; sourceTree = ""; }; - A278B2F70AF954A065AE9C303067A04C /* FBSDKTriStateBOOL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTriStateBOOL.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.m; sourceTree = ""; }; - A2D095F04810C64D707A11D98A7C416B /* BFMeasurementEvent_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent_Internal.h; path = Bolts/iOS/Internal/BFMeasurementEvent_Internal.h; sourceTree = ""; }; - A43E138280037788B9779E42E7F26840 /* FBSDKGameRequestFrictionlessRecipientCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestFrictionlessRecipientCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.m; sourceTree = ""; }; - A4751F0213EF5963575881BE33F69C17 /* Pods-Vendoo-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-frameworks.sh"; sourceTree = ""; }; - A4BBF453AAC16CD7F9902537A7929C40 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = ""; }; - A4C42BED88954FB383E83660959F39CA /* TYMActivityIndicatorView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = TYMActivityIndicatorView.modulemap; sourceTree = ""; }; - A52BC5DBEC25748270082E0734AFBF4C /* FBSDKLikeDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeDialog.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.h; sourceTree = ""; }; - A56E1A33D3D9ED85AE740818A3D4CD49 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - A5745BA5021C755277F1A3A3ED896463 /* FBSDKLikeActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionController.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.m; sourceTree = ""; }; - A5834D092F8D0171E162692CB9CE409E /* BSGridCollectionViewLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSGridCollectionViewLayout-dummy.m"; sourceTree = ""; }; - A591F168D1F2819D4B2FD74AAC4AC14C /* PhotosViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotosViewController.swift; path = Pod/Classes/Controller/PhotosViewController.swift; sourceTree = ""; }; - A5E3A93CD7001D355E1DD4DDB84A2486 /* TYMActivityIndicatorView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = TYMActivityIndicatorView.bundle; path = TYMActivityIndicatorView/TYMActivityIndicatorView.bundle; sourceTree = ""; }; - A5ECCE32286C17193FDAB658F298D8D7 /* Dictionary_Initializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dictionary_Initializers.swift; path = Source/Dictionary_Initializers.swift; sourceTree = ""; }; - A60B16716C97852AB1160B56E65418AF /* FBSDKGameRequestContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGameRequestContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.m; sourceTree = ""; }; - A64CC2379D15B8836FC514FF08B72380 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; - A6B2A4F3EAFF983D30AB9D9BE14DCA09 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = ""; }; - A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - A71AC4C06ED50F6E1C0D138D5488CCDF /* FBSDKGraphRequestMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequestMetadata.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.m; sourceTree = ""; }; - A74DED87D6572B81079AC5978E308C8A /* FBSDKAppLinkUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h; sourceTree = ""; }; - A752183093FFB2DEA5ADF6FEB2B34F85 /* add_photo@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@2x.png"; path = "Pod/Assets/add_photo@2x.png"; sourceTree = ""; }; - A77983C538FD722D81EC3D841C1E0D90 /* FBSDKMath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMath.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m; sourceTree = ""; }; - A84FAB7F0AEEDB73B4F1C1A2754EB4DA /* FBSDKLoginConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginConstants.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.m; sourceTree = ""; }; - A86AF9A2EF93E594325C866E6D47CAFC /* FBSDKPaymentObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKPaymentObserver.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.h; sourceTree = ""; }; - A879893BFDF857AC99298CA7929CD6BB /* SWRevealViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-prefix.pch"; sourceTree = ""; }; - A8B1F143DEED52672FF770D256AD406F /* ComposedCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComposedCollectionViewDataSource.swift; path = Pod/Classes/Model/ComposedCollectionViewDataSource.swift; sourceTree = ""; }; - A919B72478A17620F59FD497656264B5 /* FBSDKShareOpenGraphValueContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphValueContainer.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h; sourceTree = ""; }; - A963EED82F576FEA291A7D41EA855FA6 /* _FBSDKLoginRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKLoginRecoveryAttempter.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.h; sourceTree = ""; }; - A9C67E54A63A56CCE60847C6FA3EBF1F /* FBSDKButton+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKButton+Subclass.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h"; sourceTree = ""; }; - AA627632BB4E6AF9AC1CB76F6D62EB84 /* FBSDKSharePhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhoto.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.m; sourceTree = ""; }; - AAA01DE0111A9F506F2FB39CE5E3169C /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; - AB8823A03E191C71883E441FC7E08C0B /* FBSDKLikeObjectType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeObjectType.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.m; sourceTree = ""; }; - AC992D0918BFC1A52F94F18F146E330F /* FBSDKAccessTokenCacheV3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.h; sourceTree = ""; }; - AC9CD4F004FF533C025FB4E737A3F025 /* FBSDKShareKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKShareKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - AD7EBAD61399E3717AB01A6384AA0138 /* Locksmith.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Locksmith.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - ADD2E42A6319CD9E3F0A34D1037E1418 /* FBSDKLikeControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeControl.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.m; sourceTree = ""; }; - AEC9C5A6A009014AB0BC52DD36222826 /* FBSDKTestUsersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTestUsersManager.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m; sourceTree = ""; }; - AF08E2ED6C33FDFB14F81A3FE3221CE6 /* FBSDKAppEventsDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsDeviceInfo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.m; sourceTree = ""; }; - AF79BC0792545A7FE5B98E8EE5A6BAE4 /* Pods-VendooUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-VendooUITests-umbrella.h"; sourceTree = ""; }; - B005E7104367C75FF2F67F81434D99B0 /* FBSDKWebDialogView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKWebDialogView.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h; sourceTree = ""; }; - B0F468D2D85E60F7B77ADF876970CE0F /* FBSDKAppInviteDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.m; sourceTree = ""; }; - B1FCBBBBE8561B3A94CEDD05E76B5987 /* FBSDKTooltipView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTooltipView.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.m; sourceTree = ""; }; - B2867BE8B62EED56F2B08637171C4B73 /* FBSDKLoginKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKLoginKit-dummy.m"; sourceTree = ""; }; - B317C24D2CB6CA066AD0FAF5257A423C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - B3256BD4C788B18CDBE7E1C8D56A1143 /* BFCancellationTokenRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationTokenRegistration.m; path = Bolts/Common/BFCancellationTokenRegistration.m; sourceTree = ""; }; - B3E529C1567A298A27D4C2347B639E96 /* FBSDKShareUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareUtility.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.h; sourceTree = ""; }; - B42B3E70D5EEF8CFD0B43AE4DEBC5EFC /* OAuthSwiftClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftClient.swift; path = OAuthSwift/OAuthSwiftClient.swift; sourceTree = ""; }; - B462D9F6E39FE8267C21A60C174E4AE3 /* FBSDKTimeSpentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTimeSpentData.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.h; sourceTree = ""; }; - B4C39842A3D945B75A883E0368E349E1 /* FBSDKShareVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareVideo.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.h; sourceTree = ""; }; - B547061AE29C155294FD910F2E9C0AA4 /* FBSDKBoltsMeasurementEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBoltsMeasurementEventListener.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.h; sourceTree = ""; }; - B6166152F208DD96BC186D561AE2B763 /* BFCancellationTokenRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenRegistration.h; path = Bolts/Common/BFCancellationTokenRegistration.h; sourceTree = ""; }; - B64DF11C8BD499A4782241F992AA7E92 /* FBSDKCheckmarkIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCheckmarkIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.m; sourceTree = ""; }; - B65BCE37CAB750EAEFE28F575BDCCC7E /* Upload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Upload.swift; path = Source/Upload.swift; sourceTree = ""; }; - B68BF04DB97D03BE014CA5EFA5213898 /* LocksmithSecurityClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithSecurityClass.swift; path = Source/LocksmithSecurityClass.swift; sourceTree = ""; }; - B79530D590E94662B85BFBEDD3D22CEE /* FBSDKLikeButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.m; sourceTree = ""; }; - B8055667DA374E73C342D2DD45A6F89A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - B866A1B2AAFB2EFE6555C3ACC2D9C9FF /* BSImagePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-prefix.pch"; sourceTree = ""; }; - B86D51F51FBA591C5B810A2F43C81C20 /* Pods-VendooUITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-VendooUITests-frameworks.sh"; sourceTree = ""; }; - B8E9DBCEFC048D84C7CEC243E6863381 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - B8F1099EB7F8574D950BC2F249B59132 /* SWRevealViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-umbrella.h"; sourceTree = ""; }; - B9253D261519F463CAFDB4CD54513A8F /* TYMActivityIndicatorView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TYMActivityIndicatorView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B9689B1813828B8D437224F5DEE84D7E /* BSGridCollectionViewLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-prefix.pch"; sourceTree = ""; }; - BA0DE4CF0C56BF6055AC9F74F721AE61 /* FBSDKShareError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareError.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.m; sourceTree = ""; }; - BAD806F54BFBB7F262E3CD8FDDB7C8C0 /* BSGridCollectionViewLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSGridCollectionViewLayout.xcconfig; sourceTree = ""; }; - BB3B42F37F833F7170CC38A6583B9FD7 /* OAuth1Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth1Swift.swift; path = OAuthSwift/OAuth1Swift.swift; sourceTree = ""; }; - BC12A644E7E0FEFC6DCD6F6A1D034644 /* Locksmith.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Locksmith.modulemap; sourceTree = ""; }; - BC725275AA45A0885B33AEE67A027A34 /* FBSDKLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLogger.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h; sourceTree = ""; }; - BD08F133D8EC15B232B755CA87C1AB19 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - BD4092841A2D1EC9A6FF671A4F262686 /* Pods-VendooTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-VendooTests.modulemap"; sourceTree = ""; }; - BD76C21B5681D2A0A6E9FC0BCB016F64 /* arrow_down@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@2x.png"; path = "Pod/Assets/arrow_down@2x.png"; sourceTree = ""; }; - BDD20D1858222BBBBFCDD1E9E6494BE1 /* FBSDKShareLinkContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareLinkContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.m; sourceTree = ""; }; - BECAC58391762DB300B8254BAF2FB7C1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - BF0C0045C8C2051D47C6F90A915989D5 /* FBSDKKeychainStoreViaBundleID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKKeychainStoreViaBundleID.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h; sourceTree = ""; }; - BF18A807EDDCB404301BEA34E3A96E5A /* FBSDKMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMath.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h; sourceTree = ""; }; - BFA54A4EC8026DF17CBCD4D4CC6E3D83 /* FBSDKSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSettings.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h; sourceTree = ""; }; - C09ECA7A1D4E39B59707C2BBCCFA72AE /* FBSDKSendButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSendButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.h; sourceTree = ""; }; - C1332FD6082FD3B76210A6EC4E5679F2 /* FBSDKCoreKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-prefix.pch"; sourceTree = ""; }; - C1444C252F858D5B70E6613EB1A27425 /* OAuthSwiftCredential.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftCredential.swift; path = OAuthSwift/OAuthSwiftCredential.swift; sourceTree = ""; }; - C17713B1BE88DBC925AACAFAA39431DE /* BFTask+Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BFTask+Exceptions.h"; path = "Bolts/Common/BFTask+Exceptions.h"; sourceTree = ""; }; - C1B0821A122C8F1A370FB1CB606CA8DD /* FBSDKShareDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareDefines.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareDefines.h; sourceTree = ""; }; - C1CA78786A0DC12B5DC7109736F0BAF6 /* FBSDKMonotonicTime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMonotonicTime.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMonotonicTime.m; sourceTree = ""; }; - C1D69DBFE1A5226399649E80E7BA71CF /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - C1DD9897D06257D0B212A2BBD5712048 /* BSImagePicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSImagePicker.modulemap; sourceTree = ""; }; - C1DEDCD30982A3D5FF7B3DADACC9EB7E /* FBSDKViewImpressionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewImpressionTracker.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m; sourceTree = ""; }; - C2417AB9A025F84684E47E88C1BC08A3 /* FBSDKBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBase64.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h; sourceTree = ""; }; - C2763D30AE4336F601544511DC43E030 /* Pods_VendooTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_VendooTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C28132383D2E38FDB041C12682C37F66 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/frameworks/FirebaseInstanceID.framework; sourceTree = ""; }; - C295B51F9D7E65337D04BA5663D5F544 /* FBSDKCoreKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKCoreKit.modulemap; sourceTree = ""; }; - C36E333F288C77A5DB664E62FC9606CC /* FBSDKSettings+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKSettings+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h"; sourceTree = ""; }; - C50A792ECB8AF43DED6E4C88AFA7B8D3 /* AlamofireSwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireSwiftyJSON.swift; path = Source/AlamofireSwiftyJSON.swift; sourceTree = ""; }; - C642432897993B50FBB5C89BDE82CE6B /* OAuth2Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Swift.swift; path = OAuthSwift/OAuth2Swift.swift; sourceTree = ""; }; - C6FCC98C3852492E9E49162158659C67 /* FBSDKSendButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSendButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.m; sourceTree = ""; }; - C719DD6339632EB66A3CAE72B5B6E089 /* FBSDKErrorConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKErrorConfiguration.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.m; sourceTree = ""; }; - C7A8D06D1CD34DC280BD5683F6957575 /* Dictionary+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dictionary+OAuthSwift.swift"; path = "OAuthSwift/Dictionary+OAuthSwift.swift"; sourceTree = ""; }; - C8C6236ABFFD8A77AB460AAFB2C1522E /* GridCollectionViewLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GridCollectionViewLayout.swift; path = Pod/Classes/GridCollectionViewLayout.swift; sourceTree = ""; }; - C8CD7E5F23E765659BE7C6397DAABE2C /* FBSDKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKInternalUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h; sourceTree = ""; }; - C8EAAB36169AFCA3D293ECB1F507F4E0 /* FBSDKURLConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.m; sourceTree = ""; }; - CA244E7A0D35D33D57C548DDF0AB0B22 /* FBSDKLikeDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeDialog.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeDialog.m; sourceTree = ""; }; - CC77D8F0FF7989D8A20AF358B7DCC72A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - CC999ECAF7159164D07D9DA350E76CB3 /* FBSDKContainerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKContainerViewController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m; sourceTree = ""; }; - CCBC1A264CFE6A49DCF38544FB6A0F2A /* FBSDKContainerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKContainerViewController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h; sourceTree = ""; }; - CCED804762182AD2EC34151E37BCECE0 /* FBSDKShareKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareKit.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareKit.h; sourceTree = ""; }; - CD4653F9EF5387CFD789FA4ED63FF612 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; - CD63648FF0505F7CF7AFA8A015F0139A /* FBSDKURLOpening.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLOpening.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h; sourceTree = ""; }; - CD9267006DA0E35298E9396AABEC8B97 /* FBSDKLikeBoxBorderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxBorderView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.m; sourceTree = ""; }; - CDC250023FB068DF3790C6FE60C27D7B /* Albums.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Albums.storyboard; path = Pod/Assets/Albums.storyboard; sourceTree = ""; }; - CEA9386492AC92260F438C39865D53BF /* BFAppLinkReturnToRefererView_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkReturnToRefererView_Internal.h; path = Bolts/iOS/Internal/BFAppLinkReturnToRefererView_Internal.h; sourceTree = ""; }; - CEB9E8B88091771CF8F46E704F83D60A /* FBSDKShareVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideo.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.m; sourceTree = ""; }; - CEBC6702BBB87A96B0484ADDF6716C4F /* FBSDKKeychainStoreViaBundleID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKKeychainStoreViaBundleID.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.m; sourceTree = ""; }; - CF55D20CB00B94AE727AC53258C519D1 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CFD0550ABCF9C421265864FAFF072379 /* FBSDKAppGroupJoinDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupJoinDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.m; sourceTree = ""; }; - D1EF2B7569E44BFCFAAD97352F88C43B /* FBSDKAudioResourceLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAudioResourceLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.m; sourceTree = ""; }; - D2BDF3CB9D517B8429177DC10DAAF96F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D2C392D522C846CCD8DA11C2063034A4 /* FBSDKAppGroupContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.h; sourceTree = ""; }; - D2DD3E17B44CBCFB305A36E92FF96030 /* LocksmithAccessibleOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithAccessibleOption.swift; path = Source/LocksmithAccessibleOption.swift; sourceTree = ""; }; - D2FCE62A67FEB578FB2815B01E13EA31 /* FBSDKBridgeAPIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIResponse.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h; sourceTree = ""; }; - D4120DAD43A2DD22905D8EE5A4ED932D /* FBSDKAccessTokenCacheV3_21.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_21.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.h; sourceTree = ""; }; - D441620CC602845E8AB77EF29A9F8287 /* UIApplication+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+OAuthSwift.swift"; path = "OAuthSwift/UIApplication+OAuthSwift.swift"; sourceTree = ""; }; - D4DFC37175F17A9B211FCABE8479CBCD /* FBSDKMessageDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessageDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.m; sourceTree = ""; }; - D4EEDCFEAF51272FF38ACF0E280CD319 /* BFExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFExecutor.h; path = Bolts/Common/BFExecutor.h; sourceTree = ""; }; - D4F473C585AFA2F6979B7AE8CBBD7A27 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D5F93202835BAA301F3A04AC551D8A42 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; - D60BEEDE547DC959C87DCE5C2A337F9D /* Locksmith-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Locksmith-dummy.m"; sourceTree = ""; }; - D6584D06226BBE65D2C1B72854FAA452 /* Pods-VendooTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-VendooTests.release.xcconfig"; sourceTree = ""; }; - D7DFBDA3180EF00443EAF69DD71FFAFB /* FBSDKTimeSpentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTimeSpentData.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.m; sourceTree = ""; }; - D82299FA979F95F70A9302C7ECE7C1BA /* FBSDKVideoUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKVideoUploader.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.m; sourceTree = ""; }; - D83DCEFBF3B74BBF36975295642693E7 /* FBSDKAppEventsState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsState.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.m; sourceTree = ""; }; - D8F213DFE873FD0A34331A35D6F1F875 /* FBSDKShareLinkContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareLinkContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.h; sourceTree = ""; }; - D93556F46740D98ECBCA680695466352 /* FBSDKMaleSilhouetteIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMaleSilhouetteIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h; sourceTree = ""; }; - D95597CD9766285AF79187C1D127FAF5 /* FBSDKShareLinkContent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareLinkContent+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareLinkContent+Internal.h"; sourceTree = ""; }; - D9FE7450DC72C8EE682287452D97D4D7 /* PhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotoCell.swift; path = Pod/Classes/View/PhotoCell.swift; sourceTree = ""; }; - DB838EA038B55246C881AF9E2F078E56 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DBB85EFB024B4573B463572560164EC9 /* Alamofire-SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-umbrella.h"; sourceTree = ""; }; - DBF01CF08E8093240296C746BD42B9DC /* FBSDKLoginButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginButton.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h; sourceTree = ""; }; - DC61298D95492056180D4E82292683B9 /* BSImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BSImagePicker.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DC75847399876CDA58AB6D155B8B6E22 /* FBSDKAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkResolver.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.m; sourceTree = ""; }; - DCA443A27C6C94B24F73AEB9B6B2860F /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Source/Error.swift; sourceTree = ""; }; - DCD79FB400792E3DBBE83BC113792B86 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; - DD236ABE38E9FECEE2D4CF2EEB68502E /* FBSDKAppEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEvents.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m; sourceTree = ""; }; - DD51F82902D19C076CE879D3C265923E /* FBSDKShareAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareAPI.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.h; sourceTree = ""; }; - DEECAAB37A6681AD4FAB57CA6E7837D0 /* FBSDKLikeObjectType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeObjectType.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.h; sourceTree = ""; }; - DF640AED47FA26774752EF8D52D21EBA /* Alamofire-SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-SwiftyJSON-dummy.m"; sourceTree = ""; }; - DFC9E360846DDD167FA6396AAA74DD8C /* SWRevealViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SWRevealViewController.xcconfig; sourceTree = ""; }; - E001D62028040BFBE01777DFA9CFD9C5 /* SWRevealViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SWRevealViewController.m; path = SWRevealViewController/SWRevealViewController.m; sourceTree = ""; }; - E03E4D4068D5191AD0C43A607990EACE /* FBSDKDynamicFrameworkLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDynamicFrameworkLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h; sourceTree = ""; }; - E1910BE40252D644B8733445F7138F26 /* FBSDKCoreKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKCoreKit-dummy.m"; sourceTree = ""; }; - E1CFBAC345733CDF9D81CE659956FCFE /* FBSDKLoginKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginKit+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginKit+Internal.h"; sourceTree = ""; }; - E253AA9DDF4247F2A171F3E1EF35B36D /* _FBSDKTemporaryErrorRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKTemporaryErrorRecoveryAttempter.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.m; sourceTree = ""; }; - E258B73A3759630B94AECA7A4FEE4480 /* FBSDKShareOpenGraphObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphObject.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.h; sourceTree = ""; }; - E40926780CBF827123D55435033CAB24 /* FBSDKLoginManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManager.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h; sourceTree = ""; }; - E50C257D125578872432FA2F3BC0A52D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E60FE64092695C063A33536C0DA25435 /* BFTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFTask.h; path = Bolts/Common/BFTask.h; sourceTree = ""; }; - E620664FFCA546D866EB4CCE3169560D /* BFTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTask.m; path = Bolts/Common/BFTask.m; sourceTree = ""; }; - E7954DF8AA6F3D2E5974439B648823E6 /* FBSDKAppEventsUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.h; sourceTree = ""; }; - E7D969E26C97DE3830657256C23CE423 /* FBSDKAccessTokenCacheV4.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV4.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m; sourceTree = ""; }; - E7FE9051E610568618F17E68647F27BE /* FBSDKCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCrypto.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.m; sourceTree = ""; }; - E870D826781CE652F4FF0FA34C714313 /* Pods-VendooUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-VendooUITests-acknowledgements.plist"; sourceTree = ""; }; - E8A91E39A71A6A9250E003756420C869 /* FBSDKGraphErrorRecoveryProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphErrorRecoveryProcessor.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h; sourceTree = ""; }; - E980B04EA5C4322F570E132ED0D0736F /* OAuthSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-prefix.pch"; sourceTree = ""; }; - EA04DC006F02C822BA7226AE7B9B3705 /* TYMActivityIndicatorView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-prefix.pch"; sourceTree = ""; }; - EA5D3E2313791FD2EAC0E91B916A783A /* FBSDKUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m; sourceTree = ""; }; - EAA9D82577DC9D1232A8084E5A58EBE2 /* Locksmith-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-umbrella.h"; sourceTree = ""; }; - EAE367EE87BF153FFB5F6128EDF8A0EA /* AlbumCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumCell.swift; path = Pod/Classes/View/AlbumCell.swift; sourceTree = ""; }; - EAF19A60B1F095512C96C03D35BE819B /* LocksmithError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithError.swift; path = Source/LocksmithError.swift; sourceTree = ""; }; - EB259F7DF0ADA129965FDEAD7B452A3E /* FBSDKAccessTokenCacheV3_17.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCacheV3_17.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.h; sourceTree = ""; }; - EB3133F1AEA905BE7126A452DF153B94 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - EB5B9669CD4CEF740D2D480081DC9727 /* BFTaskCompletionSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTaskCompletionSource.m; path = Bolts/Common/BFTaskCompletionSource.m; sourceTree = ""; }; - EC2646324FA503B2A002538249794190 /* TYMActivityIndicatorView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TYMActivityIndicatorView-umbrella.h"; sourceTree = ""; }; - EC6C8BFBC2C98F3D4CCEE2512B693405 /* FBSDKSharingButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingButton.h; sourceTree = ""; }; - EC9756846F12CD66E7DD424EC3747FF8 /* FBSDKAppEventsUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.m; sourceTree = ""; }; - ED1D2220615A13294FD6AEC63793DA67 /* Pods-VendooUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-VendooUITests-dummy.m"; sourceTree = ""; }; - EE2E6EB2A01419E699FEDC9FB1286BFD /* OAuthSwiftMultipartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftMultipartData.swift; path = OAuthSwift/OAuthSwiftMultipartData.swift; sourceTree = ""; }; - EE69BBDAFF6767E4992F7CB741AA1820 /* FBSDKShareKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKShareKit.xcconfig; sourceTree = ""; }; - EEDB7FCF970C84E7527FEE289032673D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - EF4FCEE736A138EC69B469FE4F71743E /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = ""; }; - EF5F547944D3F031CA55532A5C29A8AB /* FBSDKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKColor.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m; sourceTree = ""; }; - EF8FF7F1F5A41A485B53F14572555D88 /* FBSDKShareKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKShareKit-dummy.m"; sourceTree = ""; }; - F020574A3BF87444EAC7679966B92DAB /* ResourceBundle-BSImagePicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-BSImagePicker-Info.plist"; sourceTree = ""; }; - F056A9C27709D0D3A3BA5DA9F03E0216 /* FirebaseStorage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseStorage.framework; path = Frameworks/FirebaseStorage.framework; sourceTree = ""; }; - F0CA3B2F59101138C7090208330C8A92 /* FBSDKErrorConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKErrorConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h; sourceTree = ""; }; - F11558B5B3AC9BE785C8E35879597413 /* FBSDKLiking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLiking.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLiking.h; sourceTree = ""; }; - F1928779CEF4CD1A263424A872232529 /* FBSDKLoginKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKLoginKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F212EF02CAE8C4C1085FC42B289F2E43 /* FBSDKApplicationDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKApplicationDelegate.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m; sourceTree = ""; }; - F2172CB2FDCF71DC69EA6125E2EBF6F1 /* BSGridCollectionViewLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = BSGridCollectionViewLayout.modulemap; sourceTree = ""; }; - F2765CA8447B43DFF8B68458AE7D25E1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F2C8A15982EEB3CE2E6DA7322C7CB00A /* FBSDKShareButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.h; sourceTree = ""; }; - F3DC348F8E164E9470500E7CB23F1C0B /* FBSDKGraphErrorRecoveryProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphErrorRecoveryProcessor.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.m; sourceTree = ""; }; - F3F51A11C71140CDF8FE797C94F87766 /* FBSDKServerConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKServerConfiguration+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration+Internal.h"; sourceTree = ""; }; - F474576E40301E26AD3948F02C4A08DE /* FBSDKWebDialogView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKWebDialogView.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.m; sourceTree = ""; }; - F510C9A8D0B8A523DFAD85725A15999B /* NSURL+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURL+OAuthSwift.swift"; path = "OAuthSwift/NSURL+OAuthSwift.swift"; sourceTree = ""; }; - F54CFBF87AEAC1E83DFEBDCB60482AFF /* BFAppLinkNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkNavigation.h; path = Bolts/iOS/BFAppLinkNavigation.h; sourceTree = ""; }; - F5B38B4489E917061220B9496DBA064D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F6287DCDBD7BE416F16E981D39F5AF6C /* FirebaseDatabase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseDatabase.framework; path = Frameworks/FirebaseDatabase.framework; sourceTree = ""; }; - F6A197FDDCD2FD3140F5233432C064D3 /* FBSDKError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKError.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m; sourceTree = ""; }; - F8ACA9F968399D2C0D34994083F572BF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F8BC9ACB06F42CA7669EE37ACD490CE3 /* PreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewController.swift; path = Pod/Classes/Controller/PreviewViewController.swift; sourceTree = ""; }; - F8BED27F246E70ED0FBB0137173A333B /* SHA1.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHA1.swift; path = OAuthSwift/SHA1.swift; sourceTree = ""; }; - F938D73A07A30E71EF4CB4237677BF2A /* FBSDKProfilePictureView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKProfilePictureView.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.m; sourceTree = ""; }; - FA1DE33E39EEFE744A0564A8962CE927 /* Pods-VendooTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-VendooTests-acknowledgements.markdown"; sourceTree = ""; }; - FB62E7B6205255E836FA08D344D2FF5D /* FBSDKAppEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEvents.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h; sourceTree = ""; }; - FBA5EA28E653B922762C6E060349477D /* FBSDKGraphRequestPiggybackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequestPiggybackManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h; sourceTree = ""; }; - FD08C8E1501053F9128D6C88AE55C609 /* FBSDKSharePhotoContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharePhotoContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.h; sourceTree = ""; }; - FD9D2CF433AB125F0F2DBE488512280A /* BFAppLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLink.m; path = Bolts/iOS/BFAppLink.m; sourceTree = ""; }; - FDB65941B0254FEBDF7F6E2EBEE5E543 /* Pods_VendooUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_VendooUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FE02C758654AB2888DD2337A0369A037 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FE5D976B59D850BD3A152D7A3DCFDF2A /* FBSDKAppEventsState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsState.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.h; sourceTree = ""; }; - FE68BF533DCCFE85E4DA6016E0D8FC13 /* FBSDKGameRequestFrictionlessRecipientCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGameRequestFrictionlessRecipientCache.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKGameRequestFrictionlessRecipientCache.h; sourceTree = ""; }; - FEFA9D0FEB4A4C75DBB6D48AB9A7C9CE /* FBSDKMessengerIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessengerIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.m; sourceTree = ""; }; - FF7944625454B89BEC43950C629C0CFD /* FBSDKBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBase64.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.m; sourceTree = ""; }; + 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginUtility.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.h; sourceTree = ""; }; + 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareUtility.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareUtility.h; sourceTree = ""; }; + 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Header.m; path = Pod/SOAP/SOAP12/SOAP12Header.m; sourceTree = ""; }; + 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginKit.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h; sourceTree = ""; }; + 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+BSImagePicker.swift"; path = "Pod/Classes/Extension/UIViewController+BSImagePicker.swift"; sourceTree = ""; }; + 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKApplicationDelegate+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h"; sourceTree = ""; }; + 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKButton.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.m; sourceTree = ""; }; + 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginConstants.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h; sourceTree = ""; }; + 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKURLConnection.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.m; sourceTree = ""; }; + 97B4A4D306EEEA7C0295BDE0FCAE7142 /* FBSDKLoginKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKLoginKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingContent.h; sourceTree = ""; }; + 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindingSchema.h; path = Pod/Core/Schema/PicoBindingSchema.h; sourceTree = ""; }; + 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLConnection.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.h; sourceTree = ""; }; + 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OrderedDictionary.m; path = Pod/OrderedDictionary/OrderedDictionary.m; sourceTree = ""; }; + 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringResponseSerializer.swift; path = AeroGearHttp/StringResponseSerializer.swift; sourceTree = ""; }; + 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h; sourceTree = ""; }; + 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-umbrella.h"; sourceTree = ""; }; + 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dictionary+OAuthSwift.swift"; path = "OAuthSwift/Dictionary+OAuthSwift.swift"; sourceTree = ""; }; + 9B2D1E1EF672E5EE33B5D29EE3A0B867 /* Pods-Vendoo-VendooTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Vendoo-VendooTests-acknowledgements.plist"; sourceTree = ""; }; + 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = CameraCell.xib; path = Pod/Assets/CameraCell.xib; sourceTree = ""; }; + 9BAE61FD5950C3821410D0B7B20BC95F /* Pods-Vendoo-VendooUITests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooUITests-frameworks.sh"; sourceTree = ""; }; + 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareOpenGraphValueContainer+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareOpenGraphValueContainer+Internal.h"; sourceTree = ""; }; + 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKContainerViewController.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.h; sourceTree = ""; }; + 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKError.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h; sourceTree = ""; }; + 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKAppEvents+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h"; sourceTree = ""; }; + 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURL+OAuthSwift.swift"; path = "OAuthSwift/NSURL+OAuthSwift.swift"; sourceTree = ""; }; + 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.m; sourceTree = ""; }; + 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLoginManagerLogger.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.h; sourceTree = ""; }; + 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OrderedDictionary.h; path = Pod/OrderedDictionary/OrderedDictionary.h; sourceTree = ""; }; + 9F47766C8E83F00B0791A0EDA791260D /* FirebaseStorage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseStorage.framework; path = Frameworks/FirebaseStorage.framework; sourceTree = ""; }; + A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = ""; }; + A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = ""; }; + A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTimeSpentData.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.h; sourceTree = ""; }; + A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; + A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLink.m; path = Bolts/iOS/BFAppLink.m; sourceTree = ""; }; + A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DateUtils.swift; path = AeroGearOAuth2/DateUtils.swift; sourceTree = ""; }; + A280A2681340B1F86B5264F7B4E8889B /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = ""; }; + A3523A664363BAA156F31B974381BCEE /* FBSDKLoginKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKLoginKit-prefix.pch"; sourceTree = ""; }; + A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTestUsersManager.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.m; sourceTree = ""; }; + A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhoto.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.m; sourceTree = ""; }; + A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BSGridCollectionViewLayout-dummy.m"; sourceTree = ""; }; + A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKShareLinkContent+Internal.h"; path = "FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareLinkContent+Internal.h"; sourceTree = ""; }; + A5650BEC57516F5DCA7170EC7EF29DDA /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = ""; }; + A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; + A5C54E6B310A8A6D5F17E487F4FD4E90 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + A65175DAA7EE302823F34D9CE4AE69A8 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/frameworks/FirebaseInstanceID.framework; sourceTree = ""; }; + A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultiPartData.swift; path = AeroGearHttp/MultiPartData.swift; sourceTree = ""; }; + A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Albums.storyboard; path = Pod/Assets/Albums.storyboard; sourceTree = ""; }; + A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginCompletion.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.m; sourceTree = ""; }; + A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTitleView.swift; path = Pod/Classes/View/AlbumTitleView.swift; sourceTree = ""; }; + A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareVideoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.m; sourceTree = ""; }; + A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKProfilePictureView.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h; sourceTree = ""; }; + A9EB92AC1D944731F800A2630030A9DA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.h; sourceTree = ""; }; + AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonResponseSerializer.swift; path = AeroGearHttp/JsonResponseSerializer.swift; sourceTree = ""; }; + AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTriStateBOOL.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h; sourceTree = ""; }; + AB0620F3D4C46CD8189B8495F8F05288 /* TYMActivityIndicatorView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TYMActivityIndicatorView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + ABE9EB19902AD4B0590EC1442B76D124 /* GoogleSymbolUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleSymbolUtilities.framework; path = Frameworks/GoogleSymbolUtilities.framework; sourceTree = ""; }; + AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMacros.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h; sourceTree = ""; }; + ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+OAuthSwift.swift"; path = "OAuthSwift/String+OAuthSwift.swift"; sourceTree = ""; }; + AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "GDataXML-HTML.xcconfig"; sourceTree = ""; }; + AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+NoAnimation.swift"; path = "Pod/Classes/Extension/UIButton+NoAnimation.swift"; sourceTree = ""; }; + AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKGraphRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h; sourceTree = ""; }; + AE1DA495E928D690201F9215A2A38DDB /* Alamofire-SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Alamofire-SwiftyJSON.modulemap"; sourceTree = ""; }; + AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLClient.h; path = Pod/WebService/PicoXMLClient.h; sourceTree = ""; }; + AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImageViewModeScaleAspect-umbrella.h"; sourceTree = ""; }; + AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-umbrella.h"; sourceTree = ""; }; + AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKUIUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h; sourceTree = ""; }; + B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoClassSchema.h; path = Pod/Core/Schema/PicoClassSchema.h; sourceTree = ""; }; + B1101ABA749E243E9DAAC2C7D8FECBBA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFExecutor.m; path = Bolts/Common/BFExecutor.m; sourceTree = ""; }; + B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _FBSDKLoginRecoveryAttempter.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.m; sourceTree = ""; }; + B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Faultreason.m; path = Pod/SOAP/SOAP12/SOAP12Faultreason.m; sourceTree = ""; }; + B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeBoxBorderView.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.m; sourceTree = ""; }; + B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareMediaContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.h; sourceTree = ""; }; + B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoStringConverter.h; path = Pod/Core/Converter/PicoStringConverter.h; sourceTree = ""; }; + B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLogger.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.m; sourceTree = ""; }; + B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoXMLReader.m; path = Pod/Core/PicoXMLReader.m; sourceTree = ""; }; + B317DD89809B9FB54FE54A0A42095D10 /* Pods-Vendoo-VendooUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Vendoo-VendooUITests-resources.sh"; sourceTree = ""; }; + B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFMeasurementEvent_Internal.h; path = Bolts/iOS/Internal/BFMeasurementEvent_Internal.h; sourceTree = ""; }; + B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKColor.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.m; sourceTree = ""; }; + B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionController.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionController.m; sourceTree = ""; }; + B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.m; sourceTree = ""; }; + B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareKit.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareKit.h; sourceTree = ""; }; + B5027A66F337B67B57F24D6A037785E8 /* AeroGearHttp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearHttp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B51DB1ADE6D8BE96F14089F82828C510 /* GDataXML-HTML.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "GDataXML-HTML.modulemap"; sourceTree = ""; }; + B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12Envelope.m; path = Pod/SOAP/SOAP12/SOAP12Envelope.m; sourceTree = ""; }; + B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTypeUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.h; sourceTree = ""; }; + B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoReadable.h; path = Pod/Core/PicoReadable.h; sourceTree = ""; }; + B5A1B9E4A75F5B62A073311D80F9253E /* AeroGearOAuth2.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AeroGearOAuth2.modulemap; sourceTree = ""; }; + B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h; sourceTree = ""; }; + B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKDynamicFrameworkLoader.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m; sourceTree = ""; }; + B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBoltsMeasurementEventListener.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.h; sourceTree = ""; }; + B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeObjectType.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.m; sourceTree = ""; }; + B7B9928637FB4C7E9C4BE6F767CB5100 /* Pods-Vendoo-VendooTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo-VendooTests.modulemap"; sourceTree = ""; }; + B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIRequest.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h; sourceTree = ""; }; + B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSDate+OAuthSwift.swift"; path = "OAuthSwift/NSDate+OAuthSwift.swift"; sourceTree = ""; }; + B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppInviteContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.h; sourceTree = ""; }; + B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SHA1.swift; path = OAuthSwift/SHA1.swift; sourceTree = ""; }; + B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Locksmith.h; path = Source/Locksmith.h; sourceTree = ""; }; + B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManagerLoginResult.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.m; sourceTree = ""; }; + BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2WebViewController.swift; path = AeroGearOAuth2/OAuth2WebViewController.swift; sourceTree = ""; }; + BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoDateConverter.h; path = Pod/Core/Converter/PicoDateConverter.h; sourceTree = ""; }; + BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSharePhotoContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.m; sourceTree = ""; }; + BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PhotosViewController.swift; path = Pod/Classes/Controller/PhotosViewController.swift; sourceTree = ""; }; + BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKError.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.m; sourceTree = ""; }; + BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupAddDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupAddDialog.h; sourceTree = ""; }; + BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AeroGearHttp-dummy.m"; sourceTree = ""; }; + BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoNumberConverter.m; path = Pod/Core/Converter/PicoNumberConverter.m; sourceTree = ""; }; + BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEvents.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h; sourceTree = ""; }; + BC180D6D81DC4BBFDA2050D4480C41FC /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AFNetworking.modulemap; sourceTree = ""; }; + BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBoolConverter.h; path = Pod/Core/Converter/PicoBoolConverter.h; sourceTree = ""; }; + BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupJoinDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupJoinDialog.m; sourceTree = ""; }; + BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFMeasurementEvent.m; path = Bolts/iOS/BFMeasurementEvent.m; sourceTree = ""; }; + BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharingButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharingButton.h; sourceTree = ""; }; + BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = ""; }; + BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAuthSwift-umbrella.h"; sourceTree = ""; }; + BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMaleSilhouetteIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h; sourceTree = ""; }; + BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; + BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareConstants.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.m; sourceTree = ""; }; + BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMath.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.m; sourceTree = ""; }; + BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKURLOpening.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h; sourceTree = ""; }; + BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKServerConfigurationManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h; sourceTree = ""; }; + BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumsViewController.swift; path = Pod/Classes/Controller/AlbumsViewController.swift; sourceTree = ""; }; + BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKGraphRequest.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.m; sourceTree = ""; }; + BFBF5E700A405FF727B768A4BA98846D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppLinkResolver.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h; sourceTree = ""; }; + C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCacheV3.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.m; sourceTree = ""; }; + C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPReader.h; path = Pod/SOAP/PicoSOAPReader.h; sourceTree = ""; }; + C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; + C1A5C330776B11C1F30A3F5D7CE61FFE /* FBSDKLoginKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKLoginKit.modulemap; sourceTree = ""; }; + C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareMediaContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.m; sourceTree = ""; }; + C23D125D092073492AC609DE12362557 /* PicoKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PicoKit-prefix.pch"; sourceTree = ""; }; + C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSDKLoginKit-dummy.m"; sourceTree = ""; }; + C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireSwiftyJSON.swift; path = Source/AlamofireSwiftyJSON.swift; sourceTree = ""; }; + C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeButton.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton.h; sourceTree = ""; }; + C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessengerIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.m; sourceTree = ""; }; + C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeControl.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeControl.h; sourceTree = ""; }; + C403253C46C7A568F5503C1533E1A6DD /* Http.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Http.swift; path = AeroGearHttp/Http.swift; sourceTree = ""; }; + C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKSharing.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKSharing.h; sourceTree = ""; }; + C49D5E408220FD79661F21912A9E0B1B /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; + C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoDateConverter.m; path = Pod/Core/Converter/PicoDateConverter.m; sourceTree = ""; }; + C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacebookOAuth2Module.swift; path = AeroGearOAuth2/FacebookOAuth2Module.swift; sourceTree = ""; }; + C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocolNativeV1.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h; sourceTree = ""; }; + C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Faultcode.h; path = Pod/SOAP/SOAP12/SOAP12Faultcode.h; sourceTree = ""; }; + C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoCache.m; path = Pod/Core/Cache/PicoCache.m; sourceTree = ""; }; + C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSOAPRequestOperation.h; path = Pod/WebService/PicoSOAPRequestOperation.h; sourceTree = ""; }; + C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKTimeSpentData.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.m; sourceTree = ""; }; + C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GDataXML-HTML-dummy.m"; sourceTree = ""; }; + C8A734338301554C8CE020D17C928865 /* GoogleParsingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleParsingUtilities.framework; path = Frameworks/GoogleParsingUtilities.framework; sourceTree = ""; }; + C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKSendButton.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.m; sourceTree = ""; }; + C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSGridCollectionViewLayout.xcconfig; sourceTree = ""; }; + C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFWebViewAppLinkResolver.m; path = Bolts/iOS/BFWebViewAppLinkResolver.m; sourceTree = ""; }; + C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@1x.png"; path = "Pod/Assets/arrow_down@1x.png"; sourceTree = ""; }; + CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBase64.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h; sourceTree = ""; }; + CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKOrganicDeeplinkHelper.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKOrganicDeeplinkHelper.m; sourceTree = ""; }; + CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP12FaultcodeEnum.m; path = Pod/SOAP/SOAP12/SOAP12FaultcodeEnum.m; sourceTree = ""; }; + CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JsonRequestSerializer.swift; path = AeroGearHttp/JsonRequestSerializer.swift; sourceTree = ""; }; + CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppLinkUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.m; sourceTree = ""; }; + CB283AABF3CEE07C086FE8E23F363434 /* Pods_Vendoo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CB2AB1C902FDE1FE0843304C021048E7 /* PicoKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = PicoKit.modulemap; sourceTree = ""; }; + CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Fault.h; path = Pod/SOAP/SOAP11/SOAP11Fault.h; sourceTree = ""; }; + CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConverter.h; path = Pod/Core/Converter/PicoConverter.h; sourceTree = ""; }; + CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.m; sourceTree = ""; }; + CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxBorderView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxBorderView.h; sourceTree = ""; }; + CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCaching.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h; sourceTree = ""; }; + CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFURL_Internal.h; path = Bolts/iOS/Internal/BFURL_Internal.h; sourceTree = ""; }; + CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; + CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSImagePicker-umbrella.h"; sourceTree = ""; }; + CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKBridgeAPIProtocolWebV1.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.m; sourceTree = ""; }; + CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererView.m; path = Bolts/iOS/BFAppLinkReturnToRefererView.m; sourceTree = ""; }; + CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAudioResourceLoader.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h; sourceTree = ""; }; + CED57E4B4A724E39170C9056EC8F29E6 /* Pods-Vendoo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Vendoo.modulemap"; sourceTree = ""; }; + CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = add_photo.png; path = Pod/Assets/add_photo.png; sourceTree = ""; }; + CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKContainerViewController.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKContainerViewController.m; sourceTree = ""; }; + D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = ""; }; + D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+OAuthSwift.swift"; path = "OAuthSwift/UIApplication+OAuthSwift.swift"; sourceTree = ""; }; + D12D2F6E0AE57FDC45E04A168061412D /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Analytics/Sources/Firebase.h; sourceTree = ""; }; + D2BB4811335CB496B9C2A6AF4620DDBC /* Locksmith.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Locksmith.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsStateManager.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.h; sourceTree = ""; }; + D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsStateManager.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.m; sourceTree = ""; }; + D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSDKCoreKit-umbrella.h"; sourceTree = ""; }; + D4BD9D1803DACCD677E16D897C4986A4 /* AeroGearHttp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AeroGearHttp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TYMActivityIndicatorView.xcconfig; sourceTree = ""; }; + D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bolts.h; path = Bolts/Common/Bolts.h; sourceTree = ""; }; + D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareError.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKShareError.m; sourceTree = ""; }; + D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Session.swift; path = AeroGearOAuth2/OAuth2Session.swift; sourceTree = ""; }; + D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLink.h; path = Bolts/iOS/BFAppLink.h; sourceTree = ""; }; + D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManagerLoginResult+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLoginResult+Internal.h"; sourceTree = ""; }; + D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Fault.h; path = Pod/SOAP/SOAP12/SOAP12Fault.h; sourceTree = ""; }; + D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Detail.m; path = Pod/SOAP/SOAP11/SOAP11Detail.m; sourceTree = ""; }; + D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFAppLinkReturnToRefererController.m; path = Bolts/iOS/BFAppLinkReturnToRefererController.m; sourceTree = ""; }; + D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SWRevealViewController-umbrella.h"; sourceTree = ""; }; + D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlbumTableViewDataSource.swift; path = Pod/Classes/Model/AlbumTableViewDataSource.swift; sourceTree = ""; }; + D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeBoxView.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeBoxView.h; sourceTree = ""; }; + D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bolts.xcconfig; sourceTree = ""; }; + D97527C094DC8D0AE452F5F42CB83BC4 /* PicoKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PicoKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIAlertView+AFNetworking.m"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.m"; sourceTree = ""; }; + DA43B264B353C84DB380D6CF195B67D6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "arrow_down@3x.png"; path = "Pod/Assets/arrow_down@3x.png"; sourceTree = ""; }; + DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLikeActionControllerCache.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKLikeActionControllerCache.m; sourceTree = ""; }; + DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKLoginManager+Internal.h"; path = "FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManager+Internal.h"; sourceTree = ""; }; + DA94C6591FD96A4B7462E306BF834C57 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Sources/FIRInstanceID.h; sourceTree = ""; }; + DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = XMLWriter.m; path = Pod/XMLWriter/XMLWriter.m; sourceTree = ""; }; + DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuthSwiftClient.swift; path = OAuthSwift/OAuthSwiftClient.swift; sourceTree = ""; }; + DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoBindable.h; path = Pod/Core/PicoBindable.h; sourceTree = ""; }; + DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = ""; }; + DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEvents.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m; sourceTree = ""; }; + DCC445491493492EC123D21A28983519 /* BSGridCollectionViewLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BSGridCollectionViewLayout-prefix.pch"; sourceTree = ""; }; + DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPICrypto.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.h; sourceTree = ""; }; + DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BSImagePicker.xcconfig; sourceTree = ""; }; + DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; + DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComposedCollectionViewDataSource.swift; path = Pod/Classes/Model/ComposedCollectionViewDataSource.swift; sourceTree = ""; }; + DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginError.m; path = FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.m; sourceTree = ""; }; + DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.m; sourceTree = ""; }; + DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Bolts-dummy.m"; sourceTree = ""; }; + DFC58BAC59B7138DCA9C331EB7AF3D72 /* FBSDKCoreKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSDKCoreKit.modulemap; sourceTree = ""; }; + E0BC2808CF5B9E44587BBD8297655C3A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = PhotoCell.xib; path = Pod/Assets/PhotoCell.xib; sourceTree = ""; }; + E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + E178194C369B2D90EE7A9C838F1F3975 /* Pods-Vendoo-VendooTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Vendoo-VendooTests.release.xcconfig"; sourceTree = ""; }; + E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppGroupContent.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.h; sourceTree = ""; }; + E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP11Header.h; path = Pod/SOAP/SOAP11/SOAP11Header.h; sourceTree = ""; }; + E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AeroGearHttp.xcconfig; sourceTree = ""; }; + E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + E2D7A400CB4341C8290E8D4301ED9DBB /* UIImageViewModeScaleAspect.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIImageViewModeScaleAspect.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAccessTokenCache.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h; sourceTree = ""; }; + E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoXMLWriter.h; path = Pod/Core/PicoXMLWriter.h; sourceTree = ""; }; + E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessageDialog.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.h; sourceTree = ""; }; + E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZoomAnimator.swift; path = Pod/Classes/Controller/ZoomAnimator.swift; sourceTree = ""; }; + E48063F76B420F3E35DAD13047D42C79 /* Pods-Vendoo-VendooTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-VendooTests-umbrella.h"; sourceTree = ""; }; + E49EE569473201E432EEFB06FE40EF81 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKShareOpenGraphValueContainer.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h; sourceTree = ""; }; + E52CFB5C20763A830341CDF43564E66C /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; }; + E6087AF82C717C34954BFF6BE6FD54B8 /* Locksmith-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Locksmith-prefix.pch"; sourceTree = ""; }; + E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AeroGearHttp-umbrella.h"; sourceTree = ""; }; + E67B7295241B586BE9B4D6D6FAF28583 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PicoKit.xcconfig; sourceTree = ""; }; + E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKCoreKit+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h"; sourceTree = ""; }; + E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Fault.m; path = Pod/SOAP/SOAP11/SOAP11Fault.m; sourceTree = ""; }; + E7A35B11971B1FA23EA748323A8E8C0B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth1Swift.swift; path = OAuthSwift/OAuth1Swift.swift; sourceTree = ""; }; + E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogger.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.m; sourceTree = ""; }; + E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSDKCoreKit.xcconfig; sourceTree = ""; }; + E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + E8FDBBD68A80D214BC46B5AE53D4F76F /* UIImageViewModeScaleAspect.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIImageViewModeScaleAspect.modulemap; sourceTree = ""; }; + E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLoginManager.m; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m; sourceTree = ""; }; + EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BFTask+Exceptions.h"; path = "Bolts/Common/BFTask+Exceptions.h"; sourceTree = ""; }; + EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoConfig.h; path = Pod/Core/PicoConfig.h; sourceTree = ""; }; + EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKDialogConfiguration.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h; sourceTree = ""; }; + EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFCancellationTokenRegistration.h; path = Bolts/Common/BFCancellationTokenRegistration.h; sourceTree = ""; }; + EBFC4268527D9F8038C26EE670CDE796 /* Alamofire-SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-SwiftyJSON-prefix.pch"; sourceTree = ""; }; + EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKViewImpressionTracker.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.m; sourceTree = ""; }; + EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKButton+Subclass.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h"; sourceTree = ""; }; + ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKIcon.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h; sourceTree = ""; }; + ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Download.swift; path = Source/Download.swift; sourceTree = ""; }; + EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBSDKSettings+Internal.h"; path = "FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h"; sourceTree = ""; }; + EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppGroupContent.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.m; sourceTree = ""; }; + F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12SupportedEnvType.h; path = Pod/SOAP/SOAP12/SOAP12SupportedEnvType.h; sourceTree = ""; }; + F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Detail.h; path = Pod/SOAP/SOAP12/SOAP12Detail.h; sourceTree = ""; }; + F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPRequestOperation.m; path = Pod/WebService/PicoSOAPRequestOperation.m; sourceTree = ""; }; + F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _FBSDKLoginRecoveryAttempter.h; path = FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.h; sourceTree = ""; }; + F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + F2CDAC06F3EBFD5E85269D393C273544 /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F360CE6486A747945443BA0C06AC2C99 /* Pods-Vendoo-VendooUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-VendooUITests-umbrella.h"; sourceTree = ""; }; + F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFCancellationToken.m; path = Bolts/Common/BFCancellationToken.m; sourceTree = ""; }; + F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocksmithError.swift; path = Source/LocksmithError.swift; sourceTree = ""; }; + F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppEventsDeviceInfo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsDeviceInfo.m; sourceTree = ""; }; + F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKCoreKit.h; path = FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h; sourceTree = ""; }; + F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoSOAPWriter.m; path = Pod/SOAP/PicoSOAPWriter.m; sourceTree = ""; }; + F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKBridgeAPIProtocol.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h; sourceTree = ""; }; + F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKTooltipView.h; path = FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h; sourceTree = ""; }; + F7337BAD9C60377C227015A11AA1188B /* GoogleNetworkingUtilities.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleNetworkingUtilities.framework; path = Frameworks/GoogleNetworkingUtilities.framework; sourceTree = ""; }; + F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "add_photo@2x.png"; path = "Pod/Assets/add_photo@2x.png"; sourceTree = ""; }; + F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKCheckmarkIcon.m; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKCheckmarkIcon.m; sourceTree = ""; }; + F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SOAP11Body.m; path = Pod/SOAP/SOAP11/SOAP11Body.m; sourceTree = ""; }; + F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAccessTokenCache.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.m; sourceTree = ""; }; + F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKShareOpenGraphObject.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.m; sourceTree = ""; }; + F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Locksmith-dummy.m"; sourceTree = ""; }; + F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BFTaskCompletionSource.m; path = Bolts/Common/BFTaskCompletionSource.m; sourceTree = ""; }; + F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKAppEventsUtility.h; path = FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.h; sourceTree = ""; }; + F9DBFCA514FB992D29C80A5EC76D68E0 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAuthSwift-dummy.m"; sourceTree = ""; }; + FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKMessengerIcon.h; path = FBSDKShareKit/FBSDKShareKit/Internal/FBSDKMessengerIcon.h; sourceTree = ""; }; + FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BFAppLinkTarget.h; path = Bolts/iOS/BFAppLinkTarget.h; sourceTree = ""; }; + FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSDKCoreKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSDKLikeObjectType.h; path = FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.h; sourceTree = ""; }; + FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SOAP12Envelope.h; path = Pod/SOAP/SOAP12/SOAP12Envelope.h; sourceTree = ""; }; + FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PicoBoolConverter.m; path = Pod/Core/Converter/PicoBoolConverter.m; sourceTree = ""; }; + FD2E9185EE51467D606FBA66D243AA42 /* Pods-Vendoo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Vendoo-umbrella.h"; sourceTree = ""; }; + FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKAppInviteDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteDialog.m; sourceTree = ""; }; + FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreviewViewController.swift; path = Pod/Classes/Controller/PreviewViewController.swift; sourceTree = ""; }; + FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKInternalUtility.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.m; sourceTree = ""; }; + FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKMessageDialog.m; path = FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.m; sourceTree = ""; }; + FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSDKLogo.m; path = FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1206,11 +1889,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1DCC5C20D7BB942D89A1E6B830915B67 /* Frameworks */ = { + 0FE3804D0FBC0C2B53BC397CDF14BC28 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EAEAFB7B18D1E49758EFAC0A89DC02A7 /* Foundation.framework in Frameworks */, + 6DE785F0B2E1ED7669E819E49BA7DBA9 /* AeroGearHttp.framework in Frameworks */, + 8C207B123C54270F58E604A28E300A59 /* Foundation.framework in Frameworks */, + C2E1AFA724DFDA82D234F25BC9D623FB /* Security.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 13A554C835EB17F2E911CD6C5278EE01 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4709B3DC439F20AC0EE23258666AD2AF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1250,6 +1943,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 37DBD2A51AF2FCB1F61501BE1697A470 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 439ED7008937D5940809FFB6B19332C0 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 433A59F508FC8EDC7E634862A2B36779 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 08DF92C398441AD329AE3D30BD424F0E /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 46EE8E1617E1454BFB2F6FBA85243645 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1262,11 +1971,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 73B2836AECEE3AF241B179F18A2F7CAA /* Frameworks */ = { + 5F18E4A411E091B87ADDE4BE398609A6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B7E78BE631013A49254E1937486B9DD9 /* Foundation.framework in Frameworks */, + 9AA1F38B13D6C8E732014B430FD80EC3 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 60C3D26E2C8843CA90222B621C57A0DA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8FFE0CA5DFE3379BBDA253EBFF2D07E2 /* CoreGraphics.framework in Frameworks */, + 27840D8AC96D3180626B40D4AE7A715F /* Foundation.framework in Frameworks */, + AC7C6289920D865E6FBFC20F0DC4F252 /* MobileCoreServices.framework in Frameworks */, + 59E32510D0201F13D14DF5CB41CD0E96 /* Security.framework in Frameworks */, + F7BCC0CB8DFB22AB34ECE9BC5C72DD2B /* SystemConfiguration.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 70CDA343BB312ACD5681F677DF2266FB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 80B976E03ABBC93F3D35CD0380D59E88 /* CoreGraphics.framework in Frameworks */, + CD38B0DFE4C5503D3A4A913BB30EAB74 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1293,11 +2023,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9B9C6C9CA912EF2660D7F5236BAD6059 /* Frameworks */ = { + 93A4D91EC2C81BAAD49104AA0CDE1B1D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F0D041A5A3F0412BE6AEAE23CDB0FBDD /* Foundation.framework in Frameworks */, + BD3FB5E4DDA22FF3B8E50FC29E9BCA73 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1327,20 +2057,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E709984F33EBB676FADBDCF970806D02 /* Frameworks */ = { + E76F4132D285A646A31227F89B6D60B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A5C0CCB7592B4AB0554D304C79E2FF99 /* Foundation.framework in Frameworks */, + 4186787644AF6C98193CCF8C12E8D6B0 /* AFNetworking.framework in Frameworks */, + 263150DA2DD0AA9AF442DA4068164DF8 /* CFNetwork.framework in Frameworks */, + 7480883DDFB8F42068AFF34CAFA4183A /* Foundation.framework in Frameworks */, + E13F5F9A8FD28C1DDCC3AAF3A778B436 /* GDataXML_HTML.framework in Frameworks */, + 07499EF9512559F0D0DAB19855FCB45D /* MobileCoreServices.framework in Frameworks */, + 4740F7545240B7461849EFDC0F075166 /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E8D04554C7BAE6F58A49A52A816EB428 /* Frameworks */ = { + F583AF500829E8383DB5FDD6E6AAD956 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7E0FB67B25F1F754BFD01E4D1D01C131 /* CoreGraphics.framework in Frameworks */, - A7E8650E83E1E1772F4EB92B563B4EED /* Foundation.framework in Frameworks */, + 0A9A3F9CCE438996942DA3B5A067BD01 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1357,1076 +2091,1437 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 07E0521BC7D8D23DE0EE84DE9EFBBA5D /* GoogleNetworkingUtilities */ = { + 06BC65EC8555178401515199505D0E55 /* Products */ = { isa = PBXGroup; children = ( - 15036870A343E1E5598A9A06FCAA1BD3 /* Frameworks */, + B5027A66F337B67B57F24D6A037785E8 /* AeroGearHttp.framework */, + 55E0553BC1CEA1822AA7826599C94FD4 /* AeroGearOAuth2.framework */, + E67B7295241B586BE9B4D6D6FAF28583 /* AFNetworking.framework */, + F9DBFCA514FB992D29C80A5EC76D68E0 /* Alamofire.framework */, + 368891931E4FDAD657575C866C45466D /* Alamofire_SwiftyJSON.framework */, + 2988D6367AC970D13B7AE0B9C4B3A5CF /* Bolts.framework */, + 4578E1AEB9C23435264A4E8697646F3B /* BSGridCollectionViewLayout.framework */, + 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */, + 2E9442C823B6DA7C3A7653A638F855F9 /* BSImagePicker.framework */, + 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */, + 97B4A4D306EEEA7C0295BDE0FCAE7142 /* FBSDKLoginKit.framework */, + 3738A2FF8F7328CA11038CA2E0550FDB /* FBSDKShareKit.framework */, + 5005A8699C453626503502CFA2E8301E /* GDataXML_HTML.framework */, + D2BB4811335CB496B9C2A6AF4620DDBC /* Locksmith.framework */, + 5767233EA7637354C8E61061C9409DBB /* OAuthSwift.framework */, + D97527C094DC8D0AE452F5F42CB83BC4 /* PicoKit.framework */, + CB283AABF3CEE07C086FE8E23F363434 /* Pods_Vendoo.framework */, + 64F849AB0C6D915F04D9363C0EB073CB /* Pods_Vendoo_VendooTests.framework */, + 0B5E34F5C87CFA9E2E41449FFC06ACE1 /* Pods_Vendoo_VendooUITests.framework */, + F2CDAC06F3EBFD5E85269D393C273544 /* SwiftyJSON.framework */, + 49B6B3AA873F4F4971FAAFC663B2E729 /* SWRevealViewController.framework */, + AB0620F3D4C46CD8189B8495F8F05288 /* TYMActivityIndicatorView.framework */, + E2D7A400CB4341C8290E8D4301ED9DBB /* UIImageViewModeScaleAspect.framework */, ); - path = GoogleNetworkingUtilities; + name = Products; sourceTree = ""; }; - 0AA65BCB14150D67F688924E78A8A434 /* Support Files */ = { + 06C640D12AD3535F41CEAC55EBD4C0FA /* iOS */ = { isa = PBXGroup; children = ( - A4BBF453AAC16CD7F9902537A7929C40 /* Alamofire.modulemap */, - A64CC2379D15B8836FC514FF08B72380 /* Alamofire.xcconfig */, - EB3133F1AEA905BE7126A452DF153B94 /* Alamofire-dummy.m */, - C1D69DBFE1A5226399649E80E7BA71CF /* Alamofire-prefix.pch */, - 55CA6E736C9F7DC63AEEBF63B4C2A705 /* Alamofire-umbrella.h */, - D4F473C585AFA2F6979B7AE8CBBD7A27 /* Info.plist */, + C49D5E408220FD79661F21912A9E0B1B /* CFNetwork.framework */, + BD1F56F908F066FF2D4BFD2FF8769FE3 /* CoreGraphics.framework */, + 32A4E81652A1B2DE99DB0F20A826B3C8 /* Foundation.framework */, + 0869CA58F7F30AC160140737D5D081ED /* MobileCoreServices.framework */, + E52CFB5C20763A830341CDF43564E66C /* Photos.framework */, + 53345A9F5D7F786336FC7A9A67541B0E /* Security.framework */, + 5A0FAAC595560D83A7B63EA9AF4B550B /* SystemConfiguration.framework */, + A9EB92AC1D944731F800A2630030A9DA /* UIKit.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 08E27163AC2565A04F3DAF72DD1949E7 /* GDataXML-HTML */ = { + isa = PBXGroup; + children = ( + 0DA6D2F389AF14019E8BA74FF2690A20 /* GDataXMLNode.h */, + 3D806C1208A915E669BD4FBC2B95D419 /* GDataXMLNode.m */, + BA68F370EF4DEB8DCE046469A531757E /* Support Files */, + ); + path = "GDataXML-HTML"; + sourceTree = ""; + }; + 0A0612EF72AC2AB92D1FDE05D748714B /* Alamofire-SwiftyJSON */ = { + isa = PBXGroup; + children = ( + C2D0820C1A666D1E9B32168829B4DBA8 /* AlamofireSwiftyJSON.swift */, + 2EA3166D589F15D977635F2B96899D6C /* Support Files */, + ); + path = "Alamofire-SwiftyJSON"; + sourceTree = ""; + }; + 0AB7E25EE0656493E818C770C9310143 /* Support Files */ = { + isa = PBXGroup; + children = ( + 911E65118A7D0BF59B6B87A72C15A8D5 /* Info.plist */, + CB2AB1C902FDE1FE0843304C021048E7 /* PicoKit.modulemap */, + E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */, + 812DD1515DD556A3A49D9EC899A4ED72 /* PicoKit-dummy.m */, + C23D125D092073492AC609DE12362557 /* PicoKit-prefix.pch */, + AF82297E8079D5C3248A0A2E6836E27C /* PicoKit-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/Alamofire"; + path = "../Target Support Files/PicoKit"; sourceTree = ""; }; - 1105D7F0B6FD1BE11A428FACFA47920C /* Support Files */ = { + 0B63332F2C06215723740D87352A1B37 /* OAuthSwift */ = { isa = PBXGroup; children = ( - 995F19662EE7096D3D4D1A840FB5890B /* FBSDKLoginKit.modulemap */, - 6E0ED8FCD4706F179875E8FDDD376C07 /* FBSDKLoginKit.xcconfig */, - B2867BE8B62EED56F2B08637171C4B73 /* FBSDKLoginKit-dummy.m */, - 2135E2E37257F55C789EB33AEC3421DF /* FBSDKLoginKit-prefix.pch */, - 83A6E5C7F12A45D81A0E380CAC42E359 /* FBSDKLoginKit-umbrella.h */, - 95B151D4B1B9EA435ECC83CA9D958F74 /* Info.plist */, + 9B23270B90154C8717C59ED97E384A6D /* Dictionary+OAuthSwift.swift */, + 10151E0C079192034F4E43D1C6EA2B70 /* HMAC.swift */, + 3C65B098C671D17C341DD62FC173ECFB /* Int+OAuthSwift.swift */, + 6B9B5F2B450B68490F72E20AC3FDDF8A /* NSData+OAuthSwift.swift */, + B827D1699F32E2F4CAC5D644CFF639D1 /* NSDate+OAuthSwift.swift */, + 9EB313A7713C337756FD509E928ECD8F /* NSURL+OAuthSwift.swift */, + E858FA74CC061E2522FBC38DCB79D3A9 /* OAuth1Swift.swift */, + 6CB5F994A6A4BCEA588CB83296658340 /* OAuth2Swift.swift */, + 81DFE4210F32934A2DFD9AA6F34234CC /* OAuthSwift.swift */, + DB0A045B230B8CCD0523F87D3DEF8C9F /* OAuthSwiftClient.swift */, + 5723F2733FF874F7D39410C656B6D874 /* OAuthSwiftCredential.swift */, + 8F259A10A758FB0A23ADF86E84EC2856 /* OAuthSwiftHTTPRequest.swift */, + 8863DA4F57229E96C23A8B1C60634F18 /* OAuthSwiftMultipartData.swift */, + 921ABC778785955368CEA89269359BE6 /* OAuthSwiftURLHandlerType.swift */, + 17AEA9A9B2375BC5CE57EA3B2727844A /* OAuthWebViewController.swift */, + B94FCF221AE2FCDF46BACAC60EEAA6B7 /* SHA1.swift */, + ACF40FC7D507D88B3E42184744763A9D /* String+OAuthSwift.swift */, + D0744F82A6C9E3539065BDBFB5D12A9E /* UIApplication+OAuthSwift.swift */, + 34179205B39B7F983FC2D11EE089F0CB /* Utils.swift */, + 587CF6CF8FBEAA0F359A675ADD9326FA /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/FBSDKLoginKit"; + path = OAuthSwift; sourceTree = ""; }; - 1485FEE2C0BD4DC7A78E97B899B6961C /* Resources */ = { + 0F86076203C80A8776F3B111E5826203 /* Pods-Vendoo */ = { isa = PBXGroup; children = ( - A5E3A93CD7001D355E1DD4DDB84A2486 /* TYMActivityIndicatorView.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 15036870A343E1E5598A9A06FCAA1BD3 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 57E7C1F37F56E246732F49E4100939A3 /* GoogleNetworkingUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 153351DC80CF71A1A10042E8708AB61A /* Pods */ = { - isa = PBXGroup; - children = ( - 70AC2D8E70B24B114B25C86CC9C11B4F /* Alamofire */, - 90780AF59E36200E3302B58D8EFB5695 /* Alamofire-SwiftyJSON */, - 1F54DECA1154379F8807438A55FBCB48 /* Bolts */, - 1CB2A04B49DEA7DAC2C182D9C92CDC0F /* BSGridCollectionViewLayout */, - 3DD23ADF1E2313250361851038D5DD4F /* BSImagePicker */, - 472B376190535754374ABC7115CB26FE /* FBSDKCoreKit */, - 3052A03854A467DDA21A040AAB788E20 /* FBSDKLoginKit */, - 36176CD169EB2306F597ADB1EA5CCF77 /* FBSDKShareKit */, - 6B05BBD96AA67C7A917B201E5A2DA14C /* Firebase */, - 8177FB4DC9EF86B339353B1F300240DD /* FirebaseAnalytics */, - 3544FE17B83CD8D0FD85465E990948C3 /* FirebaseAuth */, - 97CF3F6E66CC40FE0E3AFCAD1EFFE95B /* FirebaseDatabase */, - AC558853995AEBA0FA1FEC22CA5FB68E /* FirebaseInstanceID */, - 4FC3EC65D6855850FD798084D270214F /* FirebaseStorage */, - D4B72A5FFAA0E3E6C4C22482913C11D3 /* GoogleInterchangeUtilities */, - 07E0521BC7D8D23DE0EE84DE9EFBBA5D /* GoogleNetworkingUtilities */, - 45F0A05C267ADD7D871596EA6EAD54EA /* GoogleParsingUtilities */, - 844A079F8A411FAEC15E69860D48FEDF /* GoogleSymbolUtilities */, - F826E9FF215374026A2CF0A967CFFCD6 /* GoogleUtilities */, - 4ED8D136A03F9C3F74C1F5DFD2633F88 /* Locksmith */, - 526D1733CF228A5217D0E11C79EC0245 /* OAuthSwift */, - AAA1D3A3F3C54BF2499415C99B264DD6 /* SwiftyJSON */, - 42354B8EB6BB0BBE74254C481A64C826 /* SWRevealViewController */, - 2452F21EA12894573FA6C5ACD1B70109 /* TYMActivityIndicatorView */, - 46D3B2F2E1D90CBFF3B014B205131ED9 /* UIImageViewModeScaleAspect */, - ); - name = Pods; - sourceTree = ""; - }; - 1969DB7011D9EA98995A08C202E8C6CD /* Pods-Vendoo */ = { - isa = PBXGroup; - children = ( - CC77D8F0FF7989D8A20AF358B7DCC72A /* Info.plist */, - 19161281FF159035CE4CAECBC4DBBCF9 /* Pods-Vendoo.modulemap */, - 57A5E781E0DA0CF2341FEE600C1B4E39 /* Pods-Vendoo-acknowledgements.markdown */, - 59F08ECEBAF4DE8D2AD5A8B967CBE5A7 /* Pods-Vendoo-acknowledgements.plist */, - 7EBEA79B4C2F3D8E52CF265ABC735AB5 /* Pods-Vendoo-dummy.m */, - A4751F0213EF5963575881BE33F69C17 /* Pods-Vendoo-frameworks.sh */, - 4F9E7DD6C25F2643B3BA5639C3BA1CF2 /* Pods-Vendoo-resources.sh */, - 2447F5DBEE128CAF41B98AC7FA62B9AE /* Pods-Vendoo-umbrella.h */, - 6A57654440ECBD6CD1038E8AFFA0900E /* Pods-Vendoo.debug.xcconfig */, - 5B75EF4922B59E4FF64F55B2A2126190 /* Pods-Vendoo.release.xcconfig */, + E0BC2808CF5B9E44587BBD8297655C3A /* Info.plist */, + CED57E4B4A724E39170C9056EC8F29E6 /* Pods-Vendoo.modulemap */, + 42377CA15BC4A1804E1B51F383CC187C /* Pods-Vendoo-acknowledgements.markdown */, + 45C2113345F291B93A3A47FEC42E9D6B /* Pods-Vendoo-acknowledgements.plist */, + 35773BF3F8D35D8635CE8E04D3381269 /* Pods-Vendoo-dummy.m */, + 7CC12098B0F5B8F0228D39F0FCEA1DF3 /* Pods-Vendoo-frameworks.sh */, + 08605C3156BFC50AC0F7824EF800A43A /* Pods-Vendoo-resources.sh */, + FD2E9185EE51467D606FBA66D243AA42 /* Pods-Vendoo-umbrella.h */, + 54A978CB632AD6DA73D28D7061829190 /* Pods-Vendoo.debug.xcconfig */, + 8F4B77E1672A1DC2211428EFE20BA4A1 /* Pods-Vendoo.release.xcconfig */, ); name = "Pods-Vendoo"; path = "Target Support Files/Pods-Vendoo"; sourceTree = ""; }; - 1CB2A04B49DEA7DAC2C182D9C92CDC0F /* BSGridCollectionViewLayout */ = { + 1323CC8DD6F7F5E82EF49DD27FB294DA /* AppLinks */ = { isa = PBXGroup; children = ( - C8C6236ABFFD8A77AB460AAFB2C1522E /* GridCollectionViewLayout.swift */, - 46E56E485CAFC14C2B28AA978F463652 /* Support Files */, + D619A54243FC9B2160AA5D4B6C5CD555 /* BFAppLink.h */, + A1B9210099E8B96F329A0B4B62A8832F /* BFAppLink.m */, + 1217C16EE78E51CB579D919EFC117D8C /* BFAppLink_Internal.h */, + 3D94224C11E07BFE6398DA6B809C8ABA /* BFAppLinkNavigation.h */, + 5B5DA369D0C58EE56D3E8C3EFA5C3C08 /* BFAppLinkNavigation.m */, + 07AF52AC3FBAF8F0E6DD211EC27DCCB7 /* BFAppLinkResolving.h */, + 01E0ED5376FAD457FCE98776DE572BCD /* BFAppLinkReturnToRefererController.h */, + D70416A9A53143F089245C8D1297E324 /* BFAppLinkReturnToRefererController.m */, + 0CD0CBE8E2D4D32170E3B8904D57E899 /* BFAppLinkReturnToRefererView.h */, + CE21D887507B6EF0FD3663F5B97CE311 /* BFAppLinkReturnToRefererView.m */, + 1E1E2CED915287AA3461F6300AB4951A /* BFAppLinkReturnToRefererView_Internal.h */, + FAC70453D59F96B06BD9FF0FEF95CE0A /* BFAppLinkTarget.h */, + 3A626DB8AFDA446283E4671635902BC8 /* BFAppLinkTarget.m */, + 8E41D020269E4E75B44C7D9C75652F71 /* BFMeasurementEvent.h */, + BC96B2330EF98C37540EB7E74CDE2055 /* BFMeasurementEvent.m */, + B32366F1FB0F564EAF9203EA84A59435 /* BFMeasurementEvent_Internal.h */, + 01F36C7E584CBFEE0C3DE0159BF1B826 /* BFURL.h */, + 1C8F47E5144DC8935E946E23C6D16070 /* BFURL.m */, + CC8A83F328DA69E4AD4AACB2E781F811 /* BFURL_Internal.h */, + 3A40D0DDD7DC17526BD52BCF79500DB7 /* BFWebViewAppLinkResolver.h */, + C9965D39BCC0F34498A187EE769956D9 /* BFWebViewAppLinkResolver.m */, ); - path = BSGridCollectionViewLayout; + name = AppLinks; sourceTree = ""; }; - 1F54DECA1154379F8807438A55FBCB48 /* Bolts */ = { + 1578585ADB3F51FFF0AB85FCE27336EE /* Reachability */ = { isa = PBXGroup; children = ( - BB2653E9BE5B047517F3BE0E1030A544 /* AppLinks */, - DD1BF6EB403414FC59E0B5A3CFE01BBC /* Support Files */, - BC397FBD41557BEFB534449957C97BCC /* Tasks */, + ED6E22F1D0CC20210179A91B27BC34EC /* AFNetworkReachabilityManager.h */, + F666F4AD6771C67E12F920EE14503EB1 /* AFNetworkReachabilityManager.m */, ); - path = Bolts; + name = Reachability; sourceTree = ""; }; - 227969BF498DD67FD1502E3309F37269 /* Frameworks */ = { + 16327DEBBB47D0A98F35685FC3BEEB28 /* Support Files */ = { isa = PBXGroup; children = ( - F6287DCDBD7BE416F16E981D39F5AF6C /* FirebaseDatabase.framework */, + A5650BEC57516F5DCA7170EC7EF29DDA /* Alamofire.modulemap */, + A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */, + F220BFDFE04C5E44BF4CD17A497DA847 /* Alamofire-dummy.m */, + 4FA352C897875F16D04154699FD41CCF /* Alamofire-prefix.pch */, + 383EB2C549433904BE20DE9CF33B6800 /* Alamofire-umbrella.h */, + 0153AE17D43D9366820D16273D0C2232 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 1BABDC773269F05D4A039AC3372296E8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0187BE1EE97858C5A1A6C7BD4099CA4B /* Info.plist */, + A280A2681340B1F86B5264F7B4E8889B /* SwiftyJSON.modulemap */, + BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */, + A1422D5F425FF8918E84920784D3551D /* SwiftyJSON-dummy.m */, + 669778F135362ED70DD925DB53B18444 /* SwiftyJSON-prefix.pch */, + A10466265173AB31436F0B7210B31F86 /* SwiftyJSON-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftyJSON"; + sourceTree = ""; + }; + 1D998FC360E497FC0623DDBCA3B3D58D /* Locksmith */ = { + isa = PBXGroup; + children = ( + 59732171D966B182230711C2A962C3A2 /* Dictionary_Initializers.swift */, + B9791ABFFE20ED94BF192C7531A3A38F /* Locksmith.h */, + 8AEE765274745516CF2663BAD619AAA2 /* Locksmith.swift */, + 86A2836FC6242D140DE7679038EA30E7 /* LocksmithAccessibleOption.swift */, + F388A6999ED21F6E0CDA986059254761 /* LocksmithError.swift */, + 287B2FC046CD7E5286E13024FA041690 /* LocksmithInternetAuthenticationType.swift */, + 778B859863182A0F8ED549FE794E9B22 /* LocksmithInternetProtocol.swift */, + 5979CC154FB100FDC06A627A0912EF1C /* LocksmithSecurityClass.swift */, + 1E76AA161136CD9436FDD16B9DF93AA4 /* Support Files */, + ); + path = Locksmith; + sourceTree = ""; + }; + 1E76AA161136CD9436FDD16B9DF93AA4 /* Support Files */ = { + isa = PBXGroup; + children = ( + DA43B264B353C84DB380D6CF195B67D6 /* Info.plist */, + 5076B7CD77208083D1E3BE8579D7AE81 /* Locksmith.modulemap */, + 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */, + F8AFE5EB7076EFE8F34B0E147AA970B4 /* Locksmith-dummy.m */, + E6087AF82C717C34954BFF6BE6FD54B8 /* Locksmith-prefix.pch */, + 361326F6C653527F508CB94E067782E3 /* Locksmith-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/Locksmith"; + sourceTree = ""; + }; + 1FB1AD1BFDC12437FEF3A335105F99C7 /* OrderedDictionary */ = { + isa = PBXGroup; + children = ( + 9F0C1767521D7661349467F04D1AE8BB /* OrderedDictionary.h */, + 98E829CCA52F80AB06FB40F9BB42D357 /* OrderedDictionary.m */, + ); + name = OrderedDictionary; + sourceTree = ""; + }; + 2400E3AE035A7F576262EA8FA91CA9E8 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ABE9EB19902AD4B0590EC1442B76D124 /* GoogleSymbolUtilities.framework */, ); name = Frameworks; sourceTree = ""; }; - 2452F21EA12894573FA6C5ACD1B70109 /* TYMActivityIndicatorView */ = { + 25025A34C3A70208BF165330E1A770BF /* Frameworks */ = { isa = PBXGroup; children = ( - A10218D8B31AC8814359543B426DB575 /* TYMActivityIndicatorView.h */, - 05077CAB156AE33EC587C987ECDC5CB9 /* TYMActivityIndicatorView.m */, - 1485FEE2C0BD4DC7A78E97B899B6961C /* Resources */, - DF62990F57E9D51121AD659BBB895112 /* Support Files */, + 9F47766C8E83F00B0791A0EDA791260D /* FirebaseStorage.framework */, ); - path = TYMActivityIndicatorView; + name = Frameworks; sourceTree = ""; }; - 3052A03854A467DDA21A040AAB788E20 /* FBSDKLoginKit */ = { + 29CA0E1A269C06D45763886D05B7CCA3 /* Analytics */ = { isa = PBXGroup; children = ( - A963EED82F576FEA291A7D41EA855FA6 /* _FBSDKLoginRecoveryAttempter.h */, - 196BD4FA6EAC7DDC7D91D90CCDB2C2B1 /* _FBSDKLoginRecoveryAttempter.m */, - DBF01CF08E8093240296C746BD42B9DC /* FBSDKLoginButton.h */, - 7B022207009D691594C86EDF5E4367A0 /* FBSDKLoginButton.m */, - 8E297C702F67E5D9A6A352C3104BB138 /* FBSDKLoginCompletion.h */, - 587ADAAB96453CCCE7250700B5B0382C /* FBSDKLoginCompletion.m */, - 4982F8F1A67FBF21500301D2ED686222 /* FBSDKLoginCompletion+Internal.h */, - 8F391C0D12A784F565EC1552F97B07A0 /* FBSDKLoginConstants.h */, - A84FAB7F0AEEDB73B4F1C1A2754EB4DA /* FBSDKLoginConstants.m */, - 68C75E364438BD4A2A91EFA34C2EC4F5 /* FBSDKLoginError.h */, - 6F6AC5173F7217ABF3809A93327DD1B8 /* FBSDKLoginError.m */, - 50BB73F1953804776AE3B51434B4A808 /* FBSDKLoginKit.h */, - E1CFBAC345733CDF9D81CE659956FCFE /* FBSDKLoginKit+Internal.h */, - E40926780CBF827123D55435033CAB24 /* FBSDKLoginManager.h */, - 2C94BA028E584EB0BCB6128F43BFDB85 /* FBSDKLoginManager.m */, - 94DFF4BE2F56F696B7AF138F842DB762 /* FBSDKLoginManager+Internal.h */, - 23C663C1A94947DC754F5917C985A23E /* FBSDKLoginManagerLogger.h */, - 25214FC370DBA9171E505277714C6DAE /* FBSDKLoginManagerLogger.m */, - 36858D379ABF898862C0CC535C04F330 /* FBSDKLoginManagerLoginResult.h */, - 9139E797B9DD8806512CB1B143F3A007 /* FBSDKLoginManagerLoginResult.m */, - 539A45FF2820C0397EFA4E7CC7593DAA /* FBSDKLoginManagerLoginResult+Internal.h */, - 0695B1CE2AB89CBD00AF988F55F4AA28 /* FBSDKLoginTooltipView.h */, - 7563FF47193D1D8BAE56139D8D1EE1E5 /* FBSDKLoginTooltipView.m */, - 649842685524827C5A5DEFE8E2176519 /* FBSDKLoginUtility.h */, - 8D449C964012C71CF2F1634115426DDB /* FBSDKLoginUtility.m */, - 6FF1A4CB76EA84CE3085BBB9C9668594 /* FBSDKTooltipView.h */, - B1FCBBBBE8561B3A94CEDD05E76B5987 /* FBSDKTooltipView.m */, - 1105D7F0B6FD1BE11A428FACFA47920C /* Support Files */, + D12D2F6E0AE57FDC45E04A168061412D /* Firebase.h */, ); - path = FBSDKLoginKit; + name = Analytics; sourceTree = ""; }; - 3544FE17B83CD8D0FD85465E990948C3 /* FirebaseAuth */ = { + 2AEA15F60540B1D423D74B3A237E794C /* AFNetworking */ = { isa = PBXGroup; children = ( - 8EFA56456464354C86D659C13204BC48 /* Frameworks */, + 1ED18EAECBF26A7A58C5BCC9ADFED3D0 /* AFNetworking.h */, + 8D4DC7CE92AB96C1F72322AFB2E7DD0C /* NSURLConnection */, + 48B5D8FF5D6DB1163E2DCCD589EDADAB /* NSURLSession */, + 1578585ADB3F51FFF0AB85FCE27336EE /* Reachability */, + A54BFD8BDD7E78D01F5762FAE290A89B /* Security */, + 57567BE5C611F4F808A93FF0D1CAA25C /* Serialization */, + 48CE3F7AE6C948493D4FB11D74DE2DAC /* Support Files */, + D2084E0C4E10BC98AE2ED31B1C232A39 /* UIKit */, ); - path = FirebaseAuth; + path = AFNetworking; sourceTree = ""; }; - 36176CD169EB2306F597ADB1EA5CCF77 /* FBSDKShareKit */ = { + 2D8CC0BEBC02303458C5F95CF79941BC /* GoogleInterchangeUtilities */ = { isa = PBXGroup; children = ( - 489A35D242969C1E44FED7F42241982F /* FBSDKAppGroupAddDialog.h */, - 074E31C7E72CB0A28336BD0B2B3C9B86 /* FBSDKAppGroupAddDialog.m */, - D2C392D522C846CCD8DA11C2063034A4 /* FBSDKAppGroupContent.h */, - 8E66B0CA1D0CE47F01ED37FB8B0B0C06 /* FBSDKAppGroupContent.m */, - 2DFFB7866D23E56DAD81C5AC4FA3678B /* FBSDKAppGroupJoinDialog.h */, - CFD0550ABCF9C421265864FAFF072379 /* FBSDKAppGroupJoinDialog.m */, - 6909C0A42D79A9E7E20C15555B7D3AF6 /* FBSDKAppInviteContent.h */, - 90D28FCC8F6E75B2650EB26E715C0D44 /* FBSDKAppInviteContent.m */, - 2FEE53D9E68500DF3C93E39CD3D6BDED /* FBSDKAppInviteDialog.h */, - B0F468D2D85E60F7B77ADF876970CE0F /* FBSDKAppInviteDialog.m */, - 5A2338515D2F2F6F202A29F5805FCC6E /* FBSDKCheckmarkIcon.h */, - B64DF11C8BD499A4782241F992AA7E92 /* FBSDKCheckmarkIcon.m */, - 94A183C715041E6B90628D05EAEF64B3 /* FBSDKGameRequestContent.h */, - A60B16716C97852AB1160B56E65418AF /* FBSDKGameRequestContent.m */, - 67D1860D7A5238ACC9C6038E11D199E7 /* FBSDKGameRequestDialog.h */, - 825440041869A6F73297E2C3A80B8FE2 /* FBSDKGameRequestDialog.m */, - FE68BF533DCCFE85E4DA6016E0D8FC13 /* FBSDKGameRequestFrictionlessRecipientCache.h */, - A43E138280037788B9779E42E7F26840 /* FBSDKGameRequestFrictionlessRecipientCache.m */, - 570EF570439698547CFD0918103B0FC8 /* FBSDKHashtag.h */, - 8BBEBB8FF0BC75C5D51499B3D5A85B84 /* FBSDKHashtag.m */, - 947C7CF8D13DD272C34EAC17D688FF53 /* FBSDKLikeActionController.h */, - A5745BA5021C755277F1A3A3ED896463 /* FBSDKLikeActionController.m */, - 5B848E82108125EC326D47AB31A2F22C /* FBSDKLikeActionControllerCache.h */, - 900C71B8EEDA1FC7F1B63B41300A448D /* FBSDKLikeActionControllerCache.m */, - 96225DC450AAD892FB05C3505015895D /* FBSDKLikeBoxBorderView.h */, - CD9267006DA0E35298E9396AABEC8B97 /* FBSDKLikeBoxBorderView.m */, - 04020163FF5B24AD27377748BC8095DF /* FBSDKLikeBoxView.h */, - 894B1052D8FE7F7E8F3E7D9FD7596337 /* FBSDKLikeBoxView.m */, - 41B8B0DA585E794AE8D2DD50B6A99586 /* FBSDKLikeButton.h */, - B79530D590E94662B85BFBEDD3D22CEE /* FBSDKLikeButton.m */, - 796A60127F07661498934C4B1F59F171 /* FBSDKLikeButton+Internal.h */, - 2D3BA5332F468A9B5097D7C52556D260 /* FBSDKLikeButtonPopWAV.h */, - 2E7B38A2ADB965EBA1F5E4B1C5484296 /* FBSDKLikeButtonPopWAV.m */, - 6962FBDE51D8EE80C263B9AAC3E73544 /* FBSDKLikeControl.h */, - ADD2E42A6319CD9E3F0A34D1037E1418 /* FBSDKLikeControl.m */, - 4B60A968F064418A22AC21AB3643E58A /* FBSDKLikeControl+Internal.h */, - A52BC5DBEC25748270082E0734AFBF4C /* FBSDKLikeDialog.h */, - CA244E7A0D35D33D57C548DDF0AB0B22 /* FBSDKLikeDialog.m */, - DEECAAB37A6681AD4FAB57CA6E7837D0 /* FBSDKLikeObjectType.h */, - AB8823A03E191C71883E441FC7E08C0B /* FBSDKLikeObjectType.m */, - F11558B5B3AC9BE785C8E35879597413 /* FBSDKLiking.h */, - 5CEAD1F5161DF65F4720143F881D2784 /* FBSDKMessageDialog.h */, - D4DFC37175F17A9B211FCABE8479CBCD /* FBSDKMessageDialog.m */, - 4FD7CCB6792182DD4227D2463ECB14EE /* FBSDKMessengerIcon.h */, - FEFA9D0FEB4A4C75DBB6D48AB9A7C9CE /* FBSDKMessengerIcon.m */, - C09ECA7A1D4E39B59707C2BBCCFA72AE /* FBSDKSendButton.h */, - C6FCC98C3852492E9E49162158659C67 /* FBSDKSendButton.m */, - DD51F82902D19C076CE879D3C265923E /* FBSDKShareAPI.h */, - 47BEFCC11356F38906F17BD5C394F6A0 /* FBSDKShareAPI.m */, - F2C8A15982EEB3CE2E6DA7322C7CB00A /* FBSDKShareButton.h */, - 56F2893A29CDE9E46883B855EB5076A8 /* FBSDKShareButton.m */, - 23C8141614EF6669CCFA02483E2635A9 /* FBSDKShareConstants.h */, - 288D9E5050F0E674F404A205AD3EAD7D /* FBSDKShareConstants.m */, - C1B0821A122C8F1A370FB1CB606CA8DD /* FBSDKShareDefines.h */, - 1940DF00D66DFDE7FE11EC605934F2AF /* FBSDKShareDialog.h */, - 59F2E1B94E40710E052D28853EED0B21 /* FBSDKShareDialog.m */, - 3C6F7AE195176FE8089A0F90778840C9 /* FBSDKShareDialogMode.h */, - 8923C60E9F94D742D3E09828D91D0EAD /* FBSDKShareDialogMode.m */, - 865087E2141F346423CE18A38514C82C /* FBSDKShareError.h */, - BA0DE4CF0C56BF6055AC9F74F721AE61 /* FBSDKShareError.m */, - CCED804762182AD2EC34151E37BCECE0 /* FBSDKShareKit.h */, - 602327647D485001C987606923812A24 /* FBSDKShareKit+Internal.h */, - D8F213DFE873FD0A34331A35D6F1F875 /* FBSDKShareLinkContent.h */, - BDD20D1858222BBBBFCDD1E9E6494BE1 /* FBSDKShareLinkContent.m */, - D95597CD9766285AF79187C1D127FAF5 /* FBSDKShareLinkContent+Internal.h */, - 9E8757B8C83282F0EAFB61326094B507 /* FBSDKShareMediaContent.h */, - 346BFB52A6FE166A7644F1EA2D2F17F9 /* FBSDKShareMediaContent.m */, - 9B8178B458BE535BB1F89EBD46A95E14 /* FBSDKShareOpenGraphAction.h */, - 6A8C961059630A4710A51B63E77C7166 /* FBSDKShareOpenGraphAction.m */, - 8593DD424DA11B636CB13941114645A8 /* FBSDKShareOpenGraphContent.h */, - 78A2822B4B35937899E996FBBE5686F7 /* FBSDKShareOpenGraphContent.m */, - E258B73A3759630B94AECA7A4FEE4480 /* FBSDKShareOpenGraphObject.h */, - 6FB3EF87C00E30203385004F25C6217B /* FBSDKShareOpenGraphObject.m */, - A919B72478A17620F59FD497656264B5 /* FBSDKShareOpenGraphValueContainer.h */, - 608E3ABD377E82496A5337A79A221D08 /* FBSDKShareOpenGraphValueContainer.m */, - 3576CAD60037909CEC7337D1032EE1B8 /* FBSDKShareOpenGraphValueContainer+Internal.h */, - 7F1C58FBC8D46FEADC084B36BB31E5E8 /* FBSDKSharePhoto.h */, - AA627632BB4E6AF9AC1CB76F6D62EB84 /* FBSDKSharePhoto.m */, - FD08C8E1501053F9128D6C88AE55C609 /* FBSDKSharePhotoContent.h */, - 6BF2E459AE017AF237B83ABD87D07644 /* FBSDKSharePhotoContent.m */, - B3E529C1567A298A27D4C2347B639E96 /* FBSDKShareUtility.h */, - 8F2D479798E817CFCD34A83767459319 /* FBSDKShareUtility.m */, - B4C39842A3D945B75A883E0368E349E1 /* FBSDKShareVideo.h */, - CEB9E8B88091771CF8F46E704F83D60A /* FBSDKShareVideo.m */, - 89F08BE14793B3EA58B3AD92AE96A07A /* FBSDKShareVideoContent.h */, - 87EA03B9137A04087367F68DFB797902 /* FBSDKShareVideoContent.m */, - 22D303DFDF96F1212BF6DB6B55685FB7 /* FBSDKSharing.h */, - EC6C8BFBC2C98F3D4CCEE2512B693405 /* FBSDKSharingButton.h */, - 612DCA919E91F9CD41BC8508DEC999B6 /* FBSDKSharingContent.h */, - 68CF7BC3B9485BE695AF33C0B983466C /* FBSDKVideoUploader.h */, - D82299FA979F95F70A9302C7ECE7C1BA /* FBSDKVideoUploader.m */, - 75C255B0D775504F4F3FF851E470630F /* Support Files */, + 77F2785B56B417E3DA451815BDED0A53 /* Frameworks */, ); - path = FBSDKShareKit; + path = GoogleInterchangeUtilities; sourceTree = ""; }; - 392503BEED354583B9976D179AB67D4A /* Support Files */ = { + 2EA3166D589F15D977635F2B96899D6C /* Support Files */ = { isa = PBXGroup; children = ( - 4C0F8821F5CCEE5139C5BCFF4E1EE8D2 /* Alamofire-SwiftyJSON.modulemap */, - 0FC3E22BBB7E987F4750CCFD0A1BABA5 /* Alamofire-SwiftyJSON.xcconfig */, - DF640AED47FA26774752EF8D52D21EBA /* Alamofire-SwiftyJSON-dummy.m */, - 5BF98092840C7E3915480838332E903E /* Alamofire-SwiftyJSON-prefix.pch */, - DBB85EFB024B4573B463572560164EC9 /* Alamofire-SwiftyJSON-umbrella.h */, - 9A66E06D98AEE2FD51E5CC36DE00FF80 /* Info.plist */, + AE1DA495E928D690201F9215A2A38DDB /* Alamofire-SwiftyJSON.modulemap */, + 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */, + 25B20BB03E7D279E9F725AD6385BF70F /* Alamofire-SwiftyJSON-dummy.m */, + EBFC4268527D9F8038C26EE670CDE796 /* Alamofire-SwiftyJSON-prefix.pch */, + 9A971778971AA4D5CF1381782196B511 /* Alamofire-SwiftyJSON-umbrella.h */, + B1101ABA749E243E9DAAC2C7D8FECBBA /* Info.plist */, ); name = "Support Files"; path = "../Target Support Files/Alamofire-SwiftyJSON"; sourceTree = ""; }; - 3975CEF5F6116FA7290D51AD1D72A047 /* Frameworks */ = { + 33C83BF3190CA129C81079F014E29A1F /* Frameworks */ = { isa = PBXGroup; children = ( - 10A85418756A6DCDB3B53A2EC15140B9 /* GoogleParsingUtilities.framework */, + D4BD9D1803DACCD677E16D897C4986A4 /* AeroGearHttp.framework */, + 15711FB818776F1D8CB48B60128D6DA6 /* AFNetworking.framework */, + 0A04452A724860D85F3FC806E0147F14 /* Alamofire.framework */, + 6F6348EDC411B3A390715BBDE4A0A553 /* Bolts.framework */, + 3C1AA7FFD701C1A7D3F654C6E8FC6EF4 /* BSGridCollectionViewLayout.framework */, + FB8231AB6B7EFC465CB6EB21C2BF39E1 /* FBSDKCoreKit.framework */, + 4B68653733D3131EABDCBB864E04AD74 /* GDataXML_HTML.framework */, + 31513EB23B093A6F2C70644F9587813B /* SwiftyJSON.framework */, + 35E922A51EACCBA7AE6AC58D002E4A0B /* UIImageViewModeScaleAspect.framework */, + 06C640D12AD3535F41CEAC55EBD4C0FA /* iOS */, ); name = Frameworks; sourceTree = ""; }; - 3DD23ADF1E2313250361851038D5DD4F /* BSImagePicker */ = { + 370FC070B73A3B3B7A07F3ECBD83AB9F /* Support Files */ = { isa = PBXGroup; children = ( - EAE367EE87BF153FFB5F6128EDF8A0EA /* AlbumCell.swift */, - 6DB66E858784BB94825DC58A68DC73FE /* AlbumsViewController.swift */, - 153D1C677A1493BBD4CE01B8DE923330 /* AlbumTableViewDataSource.swift */, - 2957F2B96367541C9992911375DEAD3F /* AlbumTitleView.swift */, - A009960F5CE077103C2136FDF71707FA /* BSImagePickerSettings.swift */, - 4F62499A17E949433ED6392AD5830F9F /* BSImagePickerViewController.swift */, - 0C5ACA0DCDF125E916672B9D869B5DDB /* CameraCell.swift */, - 3C74938FAAF8997FDD495A4FE80C88E5 /* CameraCollectionViewDataSource.swift */, - A8B1F143DEED52672FF770D256AD406F /* ComposedCollectionViewDataSource.swift */, - 9D8F47426E921C346338816A886FAEAD /* NSIndexSet+NSIndexPath.swift */, - D9FE7450DC72C8EE682287452D97D4D7 /* PhotoCell.swift */, - 2A057AA22CFCA210BB84AC4A5B093722 /* PhotoCollectionViewDataSource.swift */, - A591F168D1F2819D4B2FD74AAC4AC14C /* PhotosViewController.swift */, - F8BC9ACB06F42CA7669EE37ACD490CE3 /* PreviewViewController.swift */, - 30A4112D7F49026838195AFF9C399AAE /* SelectionView.swift */, - 54C7096A93492BE25FCD41B622F90137 /* Settings.swift */, - 0951CEC1D6FCB0423CCD5CD47A8C488E /* UIButton+NoAnimation.swift */, - 723ECCDDCC515AB5DF944A0CB5D38E68 /* UIViewController+BSImagePicker.swift */, - 0B521064CDB4147936190E4AFFCAFECD /* ZoomAnimator.swift */, - F1168DCC5700500D569FA08003E13827 /* Resources */, - E9EAD672FA75393A6F6C34EE81D2C13C /* Support Files */, + 266CB4545C6FD7A9D2B0E629F2E7D860 /* Bolts.modulemap */, + D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */, + DFB9B16A8846AA57E02117247CFAA15F /* Bolts-dummy.m */, + 2E1E0BF60942125C2F4FA0F0D9C3A482 /* Bolts-prefix.pch */, + 3E5458EC8B29B93BCD0F4DB01B9B129A /* Bolts-umbrella.h */, + 5207A19057DF081CF4F2BF90DFC02240 /* Info.plist */, ); - path = BSImagePicker; + name = "Support Files"; + path = "../Target Support Files/Bolts"; sourceTree = ""; }; - 42354B8EB6BB0BBE74254C481A64C826 /* SWRevealViewController */ = { + 3A2200257E7CC63B84F4B53C17C52328 /* Firebase */ = { isa = PBXGroup; children = ( - 48BAE11C2962723A078F03352E1BE903 /* SWRevealViewController.h */, - E001D62028040BFBE01777DFA9CFD9C5 /* SWRevealViewController.m */, - 4653DF2549DEFFAC55E5CA2BDCBC2237 /* Support Files */, + 29CA0E1A269C06D45763886D05B7CCA3 /* Analytics */, ); - path = SWRevealViewController; + path = Firebase; sourceTree = ""; }; - 45F0A05C267ADD7D871596EA6EAD54EA /* GoogleParsingUtilities */ = { + 3B021F36E2C1B8BB26AB2D4103F820B5 /* Support Files */ = { isa = PBXGroup; children = ( - 3975CEF5F6116FA7290D51AD1D72A047 /* Frameworks */, + DFC58BAC59B7138DCA9C331EB7AF3D72 /* FBSDKCoreKit.modulemap */, + E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */, + 717768FA09DE50DE39982007A3BB92FC /* FBSDKCoreKit-dummy.m */, + 6BFC736EF30D49729E53EC5AC8310491 /* FBSDKCoreKit-prefix.pch */, + D3D407F1FAF969C893C8548A561838CA /* FBSDKCoreKit-umbrella.h */, + 6338A6287B607CCD2B89962C6901CC22 /* Info.plist */, ); - path = GoogleParsingUtilities; + name = "Support Files"; + path = "../Target Support Files/FBSDKCoreKit"; sourceTree = ""; }; - 4653DF2549DEFFAC55E5CA2BDCBC2237 /* Support Files */ = { + 3DEAABAA4328FF2D8B0511477AA80EC0 /* GoogleSymbolUtilities */ = { isa = PBXGroup; children = ( - BECAC58391762DB300B8254BAF2FB7C1 /* Info.plist */, - 76B2D5A4FDBAFE8045DC81718CC04804 /* SWRevealViewController.modulemap */, - DFC9E360846DDD167FA6396AAA74DD8C /* SWRevealViewController.xcconfig */, - 2A6FA2A392C919EB362600EAF8949D6A /* SWRevealViewController-dummy.m */, - A879893BFDF857AC99298CA7929CD6BB /* SWRevealViewController-prefix.pch */, - B8F1099EB7F8574D950BC2F249B59132 /* SWRevealViewController-umbrella.h */, + 2400E3AE035A7F576262EA8FA91CA9E8 /* Frameworks */, + ); + path = GoogleSymbolUtilities; + sourceTree = ""; + }; + 48B5D8FF5D6DB1163E2DCCD589EDADAB /* NSURLSession */ = { + isa = PBXGroup; + children = ( + 7D120FCA90A26497DB58AD40797D5E66 /* AFHTTPSessionManager.h */, + 25FAC2A080395962E19435E0617178AD /* AFHTTPSessionManager.m */, + 7229378569C294E7ADDAEA7B3F9F1A62 /* AFURLSessionManager.h */, + EDF1E12CC3EB15DB99FCE3C4F8364295 /* AFURLSessionManager.m */, + ); + name = NSURLSession; + sourceTree = ""; + }; + 48CE3F7AE6C948493D4FB11D74DE2DAC /* Support Files */ = { + isa = PBXGroup; + children = ( + BC180D6D81DC4BBFDA2050D4480C41FC /* AFNetworking.modulemap */, + 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */, + E27C526A9DC03AC25201A7B5842662EE /* AFNetworking-dummy.m */, + 756045EA57C784EEB157B18756DCCE1E /* AFNetworking-prefix.pch */, + 864DABD30F3F33A39046A68A238FF93B /* AFNetworking-umbrella.h */, + 81F08B43E92B486C2C86F709681C9AFD /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/AFNetworking"; + sourceTree = ""; + }; + 4F2CF4E37105DEF3B788F41555C65451 /* Support Files */ = { + isa = PBXGroup; + children = ( + 126AE26BF4C4370952DC6B3B8EF9B26A /* FBSDKShareKit.modulemap */, + 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */, + 4E5193101046966C83A1A42EAA37AE6E /* FBSDKShareKit-dummy.m */, + 0FAD2E1B6781BFA7E28D456F1CAED86C /* FBSDKShareKit-prefix.pch */, + 207FA511B14970E71D1B9CB632BE129A /* FBSDKShareKit-umbrella.h */, + E49EE569473201E432EEFB06FE40EF81 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FBSDKShareKit"; + sourceTree = ""; + }; + 510A9C803CFB7C0B43B0AFDFEEE5E690 /* Frameworks */ = { + isa = PBXGroup; + children = ( + C8A734338301554C8CE020D17C928865 /* GoogleParsingUtilities.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 57567BE5C611F4F808A93FF0D1CAA25C /* Serialization */ = { + isa = PBXGroup; + children = ( + 5E9A787207342FCEA2EED4ABC8971410 /* AFURLRequestSerialization.h */, + 6AE1DAC81DA71B7B0830E680E6E181BC /* AFURLRequestSerialization.m */, + AE1EEE58FCE4838280DE4790FDDCC978 /* AFURLResponseSerialization.h */, + 6DA86555A9697F4831C5CAD6FC704BF5 /* AFURLResponseSerialization.m */, + ); + name = Serialization; + sourceTree = ""; + }; + 5771D549B9C8265CF01C9C7474D3D389 /* UIImageViewModeScaleAspect */ = { + isa = PBXGroup; + children = ( + 57DC59837CE442B112C29429512ECB06 /* UIImageViewModeScaleAspect.h */, + 6C7199A87E3366F1A836A8BEE11092CC /* UIImageViewModeScaleAspect.m */, + C2DA0322F2A0EE09E30294A1A431C4F5 /* Support Files */, + ); + path = UIImageViewModeScaleAspect; + sourceTree = ""; + }; + 587CF6CF8FBEAA0F359A675ADD9326FA /* Support Files */ = { + isa = PBXGroup; + children = ( + 5424DE5409E08C2F52D10017A2211C1B /* Info.plist */, + 43840A1884785D097D5B32FD47F9D5ED /* OAuthSwift.modulemap */, + 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */, + F9EC1EC3B939DC697CE92B67649E662F /* OAuthSwift-dummy.m */, + 0C486B4727AFE0A4797C33C8E2765A92 /* OAuthSwift-prefix.pch */, + BD02AC2B9FF3AEA022D757C1E6A92F8C /* OAuthSwift-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/OAuthSwift"; + sourceTree = ""; + }; + 59A80EE8128BEB42174AF56238C330BE /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5150E3628702E4006BBC221030EDED31 /* FirebaseAuth.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5E2FB1B83273C67B81346A81A9F8C3B5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + F7337BAD9C60377C227015A11AA1188B /* GoogleNetworkingUtilities.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5F5DA892D45C3E3F7E73A067C130BF75 /* GoogleNetworkingUtilities */ = { + isa = PBXGroup; + children = ( + 5E2FB1B83273C67B81346A81A9F8C3B5 /* Frameworks */, + ); + path = GoogleNetworkingUtilities; + sourceTree = ""; + }; + 5F84A318A39080B22B349B2EB6F346AC /* Support Files */ = { + isa = PBXGroup; + children = ( + E7A35B11971B1FA23EA748323A8E8C0B /* Info.plist */, + 8A72F2A0364E85BCEF535172B07A0757 /* SWRevealViewController.modulemap */, + 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */, + 7D923143858CA62956A9EF95B09F354D /* SWRevealViewController-dummy.m */, + 66D71F6E609FAFF75BA34F31AC4A6F98 /* SWRevealViewController-prefix.pch */, + D7CDD094D4209E5C102D154AB6D938C4 /* SWRevealViewController-umbrella.h */, ); name = "Support Files"; path = "../Target Support Files/SWRevealViewController"; sourceTree = ""; }; - 46D3B2F2E1D90CBFF3B014B205131ED9 /* UIImageViewModeScaleAspect */ = { + 65AEDAEFE046A6942729E3E8193B5AB7 /* FBSDKShareKit */ = { isa = PBXGroup; children = ( - 847B59EB48D8E27A629770FE018FC186 /* UIImageViewModeScaleAspect.h */, - 8518604B1DDA50C4A7334973D987D7D9 /* UIImageViewModeScaleAspect.m */, - 8CDE43687EABB6E34897D01EDBB1005F /* Support Files */, + BB8054E3A2BF18C9FE46CAB71B66CE10 /* FBSDKAppGroupAddDialog.h */, + 0840F65EC8E68957C520055A54DB2D44 /* FBSDKAppGroupAddDialog.m */, + E185BFAA94FAB3FD3156D77FF1CDC014 /* FBSDKAppGroupContent.h */, + EFEA264F83FCD09489CBB48FEC925925 /* FBSDKAppGroupContent.m */, + 614DE4EB432D19E0071EC7F596F51B39 /* FBSDKAppGroupJoinDialog.h */, + BC651BA0CE2DD998966FD25782EDCD2A /* FBSDKAppGroupJoinDialog.m */, + B90E27BE66B999EC2CDAC5B19354AE2B /* FBSDKAppInviteContent.h */, + 9EB3411A4897BE31E6C94EE384B01CB4 /* FBSDKAppInviteContent.m */, + AA19B9FCEAB5C854FF3C8FDF93BA2343 /* FBSDKAppInviteDialog.h */, + FD8F5E8625B631F1FAE445F5514F36A4 /* FBSDKAppInviteDialog.m */, + 82CAB572E7F231888D8E94DCD2A61FF5 /* FBSDKCheckmarkIcon.h */, + F76E54B8245E01726AF6EF16AD3827E4 /* FBSDKCheckmarkIcon.m */, + 5595F78F1E2E6FCCD38460CBE7987096 /* FBSDKGameRequestContent.h */, + 8DAB4E6850F562A49891BD2F721134D0 /* FBSDKGameRequestContent.m */, + 06BB4A7B39E0E9479C628B1BA291C629 /* FBSDKGameRequestDialog.h */, + 36E7B859CCB46F89F12DA7DC11793B6E /* FBSDKGameRequestDialog.m */, + 4C931FD6874CA306EC6486FD08D6E0AF /* FBSDKGameRequestFrictionlessRecipientCache.h */, + 6F867D48DD2E43C581E8112360E73F64 /* FBSDKGameRequestFrictionlessRecipientCache.m */, + 7EAB3635919B2B67D51AF7B9E62C78C4 /* FBSDKHashtag.h */, + 717C21EDAE454445C37AA0B5F44D2757 /* FBSDKHashtag.m */, + 1CE8840CF0E2F288EB9C4341DA8885F1 /* FBSDKLikeActionController.h */, + B3A88E6CEBA5538C50D867C2EA9552F5 /* FBSDKLikeActionController.m */, + 16FF99E2896CF92A099F5543EE4C8D6F /* FBSDKLikeActionControllerCache.h */, + DA75AB0F3BE8C976FD171BC3ACF4FD4D /* FBSDKLikeActionControllerCache.m */, + CC26E8E3D7351E9DE44685C51F98DFD0 /* FBSDKLikeBoxBorderView.h */, + B1D4D60E118BCEA00D0A4FEB5BAEC77F /* FBSDKLikeBoxBorderView.m */, + D8179B84003C81BB0751EE43A1DCABA9 /* FBSDKLikeBoxView.h */, + 1696EFC8EA369560ED9338FA360ECD1B /* FBSDKLikeBoxView.m */, + C2E92C48C304CFB5DB7E4C56850F571D /* FBSDKLikeButton.h */, + 120C755E2F74CF17A20BEC02328DE095 /* FBSDKLikeButton.m */, + 7ED3CE884BE63449A8C1FCAD839407AB /* FBSDKLikeButton+Internal.h */, + 273630BE380A291388E4950457CF8180 /* FBSDKLikeButtonPopWAV.h */, + 557568B70198CCB91B18F73222FBD415 /* FBSDKLikeButtonPopWAV.m */, + C3C273A675675AFA07126712D2EA3173 /* FBSDKLikeControl.h */, + 41480A800CA8D057E4E67FE080FADDE1 /* FBSDKLikeControl.m */, + 02C6157ACA718F0F7E9454BDAFB56BC3 /* FBSDKLikeControl+Internal.h */, + 62BED900052A470AA2FD9D41F5A2C3D4 /* FBSDKLikeDialog.h */, + 6E163856F56716D12F898C0A82D64649 /* FBSDKLikeDialog.m */, + FBBFE6AF49749C0490901A34948C12EB /* FBSDKLikeObjectType.h */, + B6CB8CE0FC24F09A6F44117F43DD0456 /* FBSDKLikeObjectType.m */, + 5BD323F793AB7CDD39EB4D804B4D375B /* FBSDKLiking.h */, + E3A2D38C759F5C76D318AD4D8E4D3907 /* FBSDKMessageDialog.h */, + FE27E73AB9D1AB7B10C63C2322C0AA58 /* FBSDKMessageDialog.m */, + FA7505206E90180002A81B093D8205B7 /* FBSDKMessengerIcon.h */, + C30A2644F497757FCC7E6FEEC1B99F65 /* FBSDKMessengerIcon.m */, + 4CA72A1074E7109FC13F485003BC05BB /* FBSDKSendButton.h */, + C96B1B2AA428FF9D71E28986AD0FB079 /* FBSDKSendButton.m */, + 7B46725242B6A8D8B1BEF0CB4200A3D8 /* FBSDKShareAPI.h */, + 4BEA5EC0AB6FAB0B19DCAF3A724F4124 /* FBSDKShareAPI.m */, + 4C98B3727457492BB0D47AF3DADE79F9 /* FBSDKShareButton.h */, + 330B9B5C67D0B9BB12D7824AD0EF8750 /* FBSDKShareButton.m */, + 3A41012D8C5AB02333B4B83045FA2747 /* FBSDKShareConstants.h */, + BD896B3E9F6212E57F7DFA89C796A56A /* FBSDKShareConstants.m */, + 64C7A07AEB5BAB49571A15D937796AFA /* FBSDKShareDefines.h */, + 47958682789C056D40BF7CF6F9573F85 /* FBSDKShareDialog.h */, + 359E31341B1154FBF255EEACA441C5CC /* FBSDKShareDialog.m */, + 7D08394BB3C986C1BFA07FFBB2E4B874 /* FBSDKShareDialogMode.h */, + 2A92694D4C8888731C04E9642E31FE5A /* FBSDKShareDialogMode.m */, + 22DD31CF2A28813447CE2E93E7D2B6B9 /* FBSDKShareError.h */, + D524E45F72B7D5706A8E8FC890847D37 /* FBSDKShareError.m */, + B4A0E7CCC37A109F70EFE4BD2BB09E92 /* FBSDKShareKit.h */, + 5BF6084BAFE5ED9FC99C7A0DAE908761 /* FBSDKShareKit+Internal.h */, + 32112D00215016946FAEEE2B94201268 /* FBSDKShareLinkContent.h */, + 3A78489641F4A18BFD6D66C4D6E6C758 /* FBSDKShareLinkContent.m */, + A5631680EF3178C439DDE980A1EE3898 /* FBSDKShareLinkContent+Internal.h */, + B1FC4DD456599D262758B5E9C8B2DC0B /* FBSDKShareMediaContent.h */, + C1ACB5EDF85279E3FD1D9AEBB80F4CEF /* FBSDKShareMediaContent.m */, + 4B3924AE90C6D5F8F96E7BD456532B5C /* FBSDKShareOpenGraphAction.h */, + 2CA877959747A4B4F9B66EEBDD2A82C0 /* FBSDKShareOpenGraphAction.m */, + 598683C00218E1CF2B8D6DF6063D3969 /* FBSDKShareOpenGraphContent.h */, + CBED686AC5937A6ED7CF2977FDFCC0DF /* FBSDKShareOpenGraphContent.m */, + 430CAB53B85B55094DB5D6A89759833D /* FBSDKShareOpenGraphObject.h */, + F7F9001E7D084976BD80994B7BE41383 /* FBSDKShareOpenGraphObject.m */, + E4C5AC4A40579BDC28AF236C903221A5 /* FBSDKShareOpenGraphValueContainer.h */, + 1EF195E634F9163762F5DC62B9188FBD /* FBSDKShareOpenGraphValueContainer.m */, + 9CEC32AA1EFCCD3D9FE925C92ADA221E /* FBSDKShareOpenGraphValueContainer+Internal.h */, + 5F0B831082C42B3020735802E52BC8FE /* FBSDKSharePhoto.h */, + A43EB3A8DCD0A4C27452C8900575B96D /* FBSDKSharePhoto.m */, + 08B653C67501AFD8AFDD3A405C0880A4 /* FBSDKSharePhotoContent.h */, + BA7B9A6B84F8456FE9697EFA139611D6 /* FBSDKSharePhotoContent.m */, + 93DE6005FDBC23FF2787B3E3FF80C8EA /* FBSDKShareUtility.h */, + 19557DF0E158ABDD908E6E12B73E7785 /* FBSDKShareUtility.m */, + 19C9163A29E6B760F9AABFC94E3688AE /* FBSDKShareVideo.h */, + 032369198D27ED73A6270FE2BA6EA7E0 /* FBSDKShareVideo.m */, + 735F19B7A2C3BFEB5A21280A6D04E96D /* FBSDKShareVideoContent.h */, + A95B66EEBACD15151751D10533D6728B /* FBSDKShareVideoContent.m */, + C489FB9E0E070EC28E945BF04E301177 /* FBSDKSharing.h */, + BC9F89F276D1597E6B7DBFFD42073256 /* FBSDKSharingButton.h */, + 97ECE805E43DC2A61EB23ABF06EB1EA6 /* FBSDKSharingContent.h */, + 61BB47AAE0B85BB22104E949B5F979C3 /* FBSDKVideoUploader.h */, + 240B369BAE1858571F81882692762672 /* FBSDKVideoUploader.m */, + 4F2CF4E37105DEF3B788F41555C65451 /* Support Files */, ); - path = UIImageViewModeScaleAspect; + path = FBSDKShareKit; sourceTree = ""; }; - 46E56E485CAFC14C2B28AA978F463652 /* Support Files */ = { + 6CB8A372BE9AD1BBEC68B7DCD6EE3D18 /* SWRevealViewController */ = { isa = PBXGroup; children = ( - F2172CB2FDCF71DC69EA6125E2EBF6F1 /* BSGridCollectionViewLayout.modulemap */, - BAD806F54BFBB7F262E3CD8FDDB7C8C0 /* BSGridCollectionViewLayout.xcconfig */, - A5834D092F8D0171E162692CB9CE409E /* BSGridCollectionViewLayout-dummy.m */, - B9689B1813828B8D437224F5DEE84D7E /* BSGridCollectionViewLayout-prefix.pch */, - 0FCC6C6024CBFE7AFD347F0EF2814B7B /* BSGridCollectionViewLayout-umbrella.h */, - 94D62EC341B1028589E38ED0B4F02B70 /* Info.plist */, + 7F2F303A3598169884F80D7E47D14E6F /* SWRevealViewController.h */, + 0D1EC6AEDA20BD0303DE7A08B08C8E8D /* SWRevealViewController.m */, + 5F84A318A39080B22B349B2EB6F346AC /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/BSGridCollectionViewLayout"; + path = SWRevealViewController; sourceTree = ""; }; - 472B376190535754374ABC7115CB26FE /* FBSDKCoreKit */ = { + 73100B1D781A7937E0B59F78422A2B69 /* Frameworks */ = { isa = PBXGroup; children = ( - 04284A439C8B4AC0CBA14CA4B8270F58 /* _FBSDKTemporaryErrorRecoveryAttempter.h */, - E253AA9DDF4247F2A171F3E1EF35B36D /* _FBSDKTemporaryErrorRecoveryAttempter.m */, - 4F0D17FD15E6DFF97362D33AEC4326C3 /* FBSDKAccessToken.h */, - 3BD69B6755759E2317F5C2E4D31CCBB0 /* FBSDKAccessToken.m */, - 47AED76C491A5F8A6AEAB5B5B18FE8E8 /* FBSDKAccessTokenCache.h */, - A1AF57D1ABD07CD95A06371FCADAFAA4 /* FBSDKAccessTokenCache.m */, - AC992D0918BFC1A52F94F18F146E330F /* FBSDKAccessTokenCacheV3.h */, - 629D29F9DF390FF1F77C146BA3772941 /* FBSDKAccessTokenCacheV3.m */, - EB259F7DF0ADA129965FDEAD7B452A3E /* FBSDKAccessTokenCacheV3_17.h */, - 32D0BA59E7B6E322356BDBA5A4A13C66 /* FBSDKAccessTokenCacheV3_17.m */, - D4120DAD43A2DD22905D8EE5A4ED932D /* FBSDKAccessTokenCacheV3_21.h */, - 6A2B615A6D122C23E743AE0723C10D70 /* FBSDKAccessTokenCacheV3_21.m */, - 593AB69DED4AEFE1CEDA10CADD30A12F /* FBSDKAccessTokenCacheV4.h */, - E7D969E26C97DE3830657256C23CE423 /* FBSDKAccessTokenCacheV4.m */, - 75776C83CEA1021EE206F357065A5D4E /* FBSDKAccessTokenCaching.h */, - FB62E7B6205255E836FA08D344D2FF5D /* FBSDKAppEvents.h */, - DD236ABE38E9FECEE2D4CF2EEB68502E /* FBSDKAppEvents.m */, - 2E676AC1FA3482D6F980BFC914F4FA22 /* FBSDKAppEvents+Internal.h */, - 8074D60BE815B5CA7232FC7D727AD3F7 /* FBSDKAppEventsDeviceInfo.h */, - AF08E2ED6C33FDFB14F81A3FE3221CE6 /* FBSDKAppEventsDeviceInfo.m */, - FE5D976B59D850BD3A152D7A3DCFDF2A /* FBSDKAppEventsState.h */, - D83DCEFBF3B74BBF36975295642693E7 /* FBSDKAppEventsState.m */, - 1D386E6050818511B409492006499F4C /* FBSDKAppEventsStateManager.h */, - 92C6A76B7934E11453ADC3EF3002AD8A /* FBSDKAppEventsStateManager.m */, - E7954DF8AA6F3D2E5974439B648823E6 /* FBSDKAppEventsUtility.h */, - EC9756846F12CD66E7DD424EC3747FF8 /* FBSDKAppEventsUtility.m */, - 58F6736D9F0B1505FFFFE7AC412FD10B /* FBSDKApplicationDelegate.h */, - F212EF02CAE8C4C1085FC42B289F2E43 /* FBSDKApplicationDelegate.m */, - 356FAE7ECA100C903CFCEB942B5376B2 /* FBSDKApplicationDelegate+Internal.h */, - 519E05B853D79A208722EF4CB5011EB3 /* FBSDKAppLinkResolver.h */, - DC75847399876CDA58AB6D155B8B6E22 /* FBSDKAppLinkResolver.m */, - A74DED87D6572B81079AC5978E308C8A /* FBSDKAppLinkUtility.h */, - 619CB520EFECE118A9C289E3E1B551A6 /* FBSDKAppLinkUtility.m */, - 23DA1DC267E2A66C8752071214DF8C25 /* FBSDKAudioResourceLoader.h */, - D1EF2B7569E44BFCFAAD97352F88C43B /* FBSDKAudioResourceLoader.m */, - C2417AB9A025F84684E47E88C1BC08A3 /* FBSDKBase64.h */, - FF7944625454B89BEC43950C629C0CFD /* FBSDKBase64.m */, - B547061AE29C155294FD910F2E9C0AA4 /* FBSDKBoltsMeasurementEventListener.h */, - 4D7D50BD827D5D31C946A7E81340210D /* FBSDKBoltsMeasurementEventListener.m */, - 6CE8B1280DDF3E2A4C5C90889E9CAD86 /* FBSDKBridgeAPICrypto.h */, - 60B4782E67D6262642548419F18E80D2 /* FBSDKBridgeAPICrypto.m */, - 739CA6E9C8A7BF2A1448A3B54EC17D75 /* FBSDKBridgeAPIProtocol.h */, - 62D2E2DF74BBF1B25658A15C2D14C38B /* FBSDKBridgeAPIProtocolNativeV1.h */, - 3801439DB12503E7AEE6DAE4126062F6 /* FBSDKBridgeAPIProtocolNativeV1.m */, - 4B1872ADAF509392B8CAD989661AC908 /* FBSDKBridgeAPIProtocolType.h */, - 6D1F0C2758F3377EB56AD6B70AD9E31F /* FBSDKBridgeAPIProtocolWebV1.h */, - 011B426855F3AD1EDBA51DFCC7356304 /* FBSDKBridgeAPIProtocolWebV1.m */, - 7D3DC244D1A3E747B9692BFD580EA4B9 /* FBSDKBridgeAPIProtocolWebV2.h */, - 0481D060F297511141C86A7373CFC26A /* FBSDKBridgeAPIProtocolWebV2.m */, - 4965430D42EE44449BD839211B14CBBA /* FBSDKBridgeAPIRequest.h */, - 372F83A049E110D3040FD608B0821469 /* FBSDKBridgeAPIRequest.m */, - 390305A498AAE4FA6384C23885D35381 /* FBSDKBridgeAPIRequest+Private.h */, - D2FCE62A67FEB578FB2815B01E13EA31 /* FBSDKBridgeAPIResponse.h */, - 6F638C0DC2035DDD0C99EFA5D2CB04C0 /* FBSDKBridgeAPIResponse.m */, - 6ABB4A1B059F2C3DB988E439B0663CED /* FBSDKButton.h */, - 3A9008D2C5B0F8B7778C46F17423B567 /* FBSDKButton.m */, - A9C67E54A63A56CCE60847C6FA3EBF1F /* FBSDKButton+Subclass.h */, - 876B4625B11E425B58C9AC9535433FD0 /* FBSDKCloseIcon.h */, - 1790F6F4C004F61B68BBF9E98AC671A5 /* FBSDKCloseIcon.m */, - 06B15BA2F96A1B552097D87B1811F8BA /* FBSDKColor.h */, - EF5F547944D3F031CA55532A5C29A8AB /* FBSDKColor.m */, - 1A5B64745B9C832249713091DC0D800E /* FBSDKConstants.h */, - 587E054373A1A6251BBFA320F1C5E777 /* FBSDKConstants.m */, - CCBC1A264CFE6A49DCF38544FB6A0F2A /* FBSDKContainerViewController.h */, - CC999ECAF7159164D07D9DA350E76CB3 /* FBSDKContainerViewController.m */, - 670484F0A8B2B977BF70D2F460F5D072 /* FBSDKCopying.h */, - 8630F8225C102A413417B6B07A4F5D13 /* FBSDKCoreKit.h */, - 1BFEE98DAB1DFB8964A7A708B278CCC2 /* FBSDKCoreKit+Internal.h */, - 81A9055B74C0D7BA3FC38D2A71D1D43C /* FBSDKCrypto.h */, - E7FE9051E610568618F17E68647F27BE /* FBSDKCrypto.m */, - 056A50E41ACD45E5A241F1874759D8A6 /* FBSDKDialogConfiguration.h */, - 4B27661861AC166A62F7292B060A1BFE /* FBSDKDialogConfiguration.m */, - E03E4D4068D5191AD0C43A607990EACE /* FBSDKDynamicFrameworkLoader.h */, - 00585ED6A1E3ADC4B1994D9C52CB75CB /* FBSDKDynamicFrameworkLoader.m */, - 1FC0B01FFCB35DD68C88FACD120209CB /* FBSDKError.h */, - F6A197FDDCD2FD3140F5233432C064D3 /* FBSDKError.m */, - F0CA3B2F59101138C7090208330C8A92 /* FBSDKErrorConfiguration.h */, - C719DD6339632EB66A3CAE72B5B6E089 /* FBSDKErrorConfiguration.m */, - 9F85846DD3E423756586063E4709D1B5 /* FBSDKErrorRecoveryAttempter.h */, - 9005C358A54C7976DB11F820376783D0 /* FBSDKErrorRecoveryAttempter.m */, - 5D1F4EAA1153A5002ACC7E79A05ABF2B /* FBSDKErrorRecoveryConfiguration.h */, - 465F04A17DBA63E2C076BF1CF0A261C8 /* FBSDKErrorRecoveryConfiguration.m */, - E8A91E39A71A6A9250E003756420C869 /* FBSDKGraphErrorRecoveryProcessor.h */, - F3DC348F8E164E9470500E7CB23F1C0B /* FBSDKGraphErrorRecoveryProcessor.m */, - 8B24C65D035024B4009D1610DDA85698 /* FBSDKGraphRequest.h */, - 82675B7575195852CE5569845110C28D /* FBSDKGraphRequest.m */, - 55E623E7FFD7CF91879C1D9E565E9E9F /* FBSDKGraphRequest+Internal.h */, - 3E6A72177AE03D0D3FFAACB09A64122F /* FBSDKGraphRequestBody.h */, - A1300BC8F2586C188E564C086A3DBA8A /* FBSDKGraphRequestBody.m */, - 0B799862E6D27A87E62087D5C721A71D /* FBSDKGraphRequestConnection.h */, - 821C105E7B37A67F473C27DC5BE33ABB /* FBSDKGraphRequestConnection.m */, - 4C1E69121493656638A217E352916884 /* FBSDKGraphRequestConnection+Internal.h */, - 595C6C688A14F796BDDAC11D3561EBFA /* FBSDKGraphRequestDataAttachment.h */, - 310A08853EFDDC0E46DF9D3C1AB0C08A /* FBSDKGraphRequestDataAttachment.m */, - 038DCD35AF2E4D43A7BDB46B7EF1DB22 /* FBSDKGraphRequestMetadata.h */, - A71AC4C06ED50F6E1C0D138D5488CCDF /* FBSDKGraphRequestMetadata.m */, - FBA5EA28E653B922762C6E060349477D /* FBSDKGraphRequestPiggybackManager.h */, - 2FB1BAFCED2F024669E48A13C76E8B23 /* FBSDKGraphRequestPiggybackManager.m */, - 49E8704CC714CCD7BB22ECC051374143 /* FBSDKIcon.h */, - 102531FFA6A4A73B60BE15B1DBC2101C /* FBSDKIcon.m */, - C8CD7E5F23E765659BE7C6397DAABE2C /* FBSDKInternalUtility.h */, - 152BCCF1CFA7E763815F5810D92C77D3 /* FBSDKInternalUtility.m */, - 117B725E5F86F0C275D2D9877C3C200E /* FBSDKKeychainStore.h */, - 74155F71266D75256737B79453D89972 /* FBSDKKeychainStore.m */, - BF0C0045C8C2051D47C6F90A915989D5 /* FBSDKKeychainStoreViaBundleID.h */, - CEBC6702BBB87A96B0484ADDF6716C4F /* FBSDKKeychainStoreViaBundleID.m */, - BC725275AA45A0885B33AEE67A027A34 /* FBSDKLogger.h */, - 9A2DEAD1D8707724838B84F7D63C9427 /* FBSDKLogger.m */, - 4BDBA9CD01260465C28385EF473F325A /* FBSDKLogo.h */, - 66E96A6BEBE3696A76E3490F422AE22D /* FBSDKLogo.m */, - 9C2DC012AC8044C478D4048744B178BE /* FBSDKMacros.h */, - D93556F46740D98ECBCA680695466352 /* FBSDKMaleSilhouetteIcon.h */, - 175899CDEF776171B1712A088B6C559F /* FBSDKMaleSilhouetteIcon.m */, - BF18A807EDDCB404301BEA34E3A96E5A /* FBSDKMath.h */, - A77983C538FD722D81EC3D841C1E0D90 /* FBSDKMath.m */, - 586BDB44B6FD3A349451AA76505E44DE /* FBSDKMonotonicTime.h */, - C1CA78786A0DC12B5DC7109736F0BAF6 /* FBSDKMonotonicTime.m */, - 59CB452D60719872A8D8D2A9E6B0033F /* FBSDKMutableCopying.h */, - 4367B6DA4D1004FD4A9D7F67350A4185 /* FBSDKOrganicDeeplinkHelper.h */, - 86734F85827ED40DF80B50C3E34715A4 /* FBSDKOrganicDeeplinkHelper.m */, - A86AF9A2EF93E594325C866E6D47CAFC /* FBSDKPaymentObserver.h */, - 0F652D5887C997300B6B384F094AF3BA /* FBSDKPaymentObserver.m */, - 6F77A73860E4CC16A3D7909ABD371A2B /* FBSDKProfile.h */, - 09954C2EF6C77A3F9B3B13F5C568E64A /* FBSDKProfile.m */, - 05D012656C9A828B81C86CBFE14D38C5 /* FBSDKProfile+Internal.h */, - 6A96153A48825817291791F039CA46BC /* FBSDKProfilePictureView.h */, - F938D73A07A30E71EF4CB4237677BF2A /* FBSDKProfilePictureView.m */, - 31FDC0408245A5A640235A8331A74003 /* FBSDKServerConfiguration.h */, - 50398AACB5DCECEA07598D46262F60C1 /* FBSDKServerConfiguration.m */, - F3F51A11C71140CDF8FE797C94F87766 /* FBSDKServerConfiguration+Internal.h */, - 7344AD8B08164EEC7FE43F081D1BFCF7 /* FBSDKServerConfigurationManager.h */, - 6FF34EF9AD5646F68DC259202336F9C6 /* FBSDKServerConfigurationManager.m */, - 67FDC82380588290CC983685C24A9BEF /* FBSDKServerConfigurationManager+Internal.h */, - BFA54A4EC8026DF17CBCD4D4CC6E3D83 /* FBSDKSettings.h */, - 848CB23B7D7142592ADD551D8361E7AE /* FBSDKSettings.m */, - C36E333F288C77A5DB664E62FC9606CC /* FBSDKSettings+Internal.h */, - 0BB4966A17805B570E55239F70E8086B /* FBSDKSystemAccountStoreAdapter.h */, - 7912F4113AE8DD62E802CB866FDFD246 /* FBSDKSystemAccountStoreAdapter.m */, - 2C1BF16F3FC60A2E31302FEAB3EC5656 /* FBSDKTestUsersManager.h */, - AEC9C5A6A009014AB0BC52DD36222826 /* FBSDKTestUsersManager.m */, - B462D9F6E39FE8267C21A60C174E4AE3 /* FBSDKTimeSpentData.h */, - D7DFBDA3180EF00443EAF69DD71FFAFB /* FBSDKTimeSpentData.m */, - 7D39668D19B520F2D0D59135BFB85EFF /* FBSDKTriStateBOOL.h */, - A278B2F70AF954A065AE9C303067A04C /* FBSDKTriStateBOOL.m */, - 8FFB3BDA70B4188039760330C17F308D /* FBSDKTypeUtility.h */, - 966F52BCE6A299FDA79088511DFAF0A5 /* FBSDKTypeUtility.m */, - 982F2721D6A780FBA5FE26976E687F06 /* FBSDKUIUtility.h */, - 7A56569177353F8896A4CA98F95A1694 /* FBSDKURLConnection.h */, - C8EAAB36169AFCA3D293ECB1F507F4E0 /* FBSDKURLConnection.m */, - CD63648FF0505F7CF7AFA8A015F0139A /* FBSDKURLOpening.h */, - 65565131FFA5724E2E45C2EDA504D7EC /* FBSDKUtility.h */, - EA5D3E2313791FD2EAC0E91B916A783A /* FBSDKUtility.m */, - 7AFE88C9CA52195835FDA349B8BD0456 /* FBSDKViewImpressionTracker.h */, - C1DEDCD30982A3D5FF7B3DADACC9EB7E /* FBSDKViewImpressionTracker.m */, - 7C2B4DA54AE1DC17D644FDA1E22DA6B1 /* FBSDKWebDialog.h */, - 7D7F48A0DF39B55921FABEAF6D1D831B /* FBSDKWebDialog.m */, - B005E7104367C75FF2F67F81434D99B0 /* FBSDKWebDialogView.h */, - F474576E40301E26AD3948F02C4A08DE /* FBSDKWebDialogView.m */, - D56DBD206E52077496A785412C374673 /* Support Files */, - ); - path = FBSDKCoreKit; - sourceTree = ""; - }; - 4ED8D136A03F9C3F74C1F5DFD2633F88 /* Locksmith */ = { - isa = PBXGroup; - children = ( - A5ECCE32286C17193FDAB658F298D8D7 /* Dictionary_Initializers.swift */, - 26403593A6C217EE7E59810DD5176551 /* Locksmith.h */, - 977A77D81A88A77122FFA1749EAFD6DB /* Locksmith.swift */, - D2DD3E17B44CBCFB305A36E92FF96030 /* LocksmithAccessibleOption.swift */, - EAF19A60B1F095512C96C03D35BE819B /* LocksmithError.swift */, - 9EB632DE0EA204AD6BAF7139F6B3F896 /* LocksmithInternetAuthenticationType.swift */, - 95248638D5A56898FE10483CF301310F /* LocksmithInternetProtocol.swift */, - B68BF04DB97D03BE014CA5EFA5213898 /* LocksmithSecurityClass.swift */, - AB7FB3EA6EBCB3F70BD52974F6F2654A /* Support Files */, - ); - path = Locksmith; - sourceTree = ""; - }; - 4F2E319320E62430EF8AD4E7DC041930 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 9EB2D5998BDF99BDD3FC12DCA12FD09B /* GoogleInterchangeUtilities.framework */, + A65175DAA7EE302823F34D9CE4AE69A8 /* FirebaseInstanceID.framework */, ); name = Frameworks; sourceTree = ""; }; - 4FC3EC65D6855850FD798084D270214F /* FirebaseStorage */ = { + 73F1FE7E86CE5EB92AE209D54671BCAF /* AeroGearOAuth2 */ = { isa = PBXGroup; children = ( - 745DB7A03CAF3877246F092C87CE465E /* Frameworks */, + 886D7D03EBAC732A6A21ABD7EBCF211A /* AccountManager.swift */, + 34FF6B5D4B9E52421A24E3412E1278E9 /* Config.swift */, + A22771953D292A59A20DAD8FF70F8F64 /* DateUtils.swift */, + C51B5750BB15F67ED3A8ED2357279441 /* FacebookOAuth2Module.swift */, + 5E5EE933149C0FF460A4687AE134384A /* KeycloakOAuth2Module.swift */, + 70576938AE450669B1DB018253E1AC6D /* OAuth2Module.swift */, + D5DE4D754EE820BB60C454F9F10447F9 /* OAuth2Session.swift */, + BA12066C10BAF4B75F5321914140A8CB /* OAuth2WebViewController.swift */, + 11F710E23B17AD395719BE3EAAC633F4 /* OpenIDClaim.swift */, + 5D15177C9B13D89F5AAF4A67DC7B8931 /* TrustedPersistantOAuth2Session.swift */, + 7432AAACA1A0F6AF9BE4E9B44472450A /* UntrustedMemoryOAuth2Session.swift */, + 7FD02E0F41EE5094DFC4F8A3986C8E53 /* Support Files */, ); - path = FirebaseStorage; + path = AeroGearOAuth2; sourceTree = ""; }; - 526D1733CF228A5217D0E11C79EC0245 /* OAuthSwift */ = { + 77CD72E4DC2DD087CFD550AA1E5E3CC3 /* WebService */ = { isa = PBXGroup; children = ( - C7A8D06D1CD34DC280BD5683F6957575 /* Dictionary+OAuthSwift.swift */, - 26DFAB28BA2294A94CD5364E7BA270B0 /* HMAC.swift */, - 49E72B8577A635603DBCB22B7F47E74B /* Int+OAuthSwift.swift */, - 047043BA5ED1DFFAA5FF9EFB9BE03583 /* NSData+OAuthSwift.swift */, - 7880F3320D04C201FD607D4928B457C0 /* NSDate+OAuthSwift.swift */, - F510C9A8D0B8A523DFAD85725A15999B /* NSURL+OAuthSwift.swift */, - BB3B42F37F833F7170CC38A6583B9FD7 /* OAuth1Swift.swift */, - C642432897993B50FBB5C89BDE82CE6B /* OAuth2Swift.swift */, - 51CABEFFE4D4CA365C2BE1A9DFEC042E /* OAuthSwift.swift */, - B42B3E70D5EEF8CFD0B43AE4DEBC5EFC /* OAuthSwiftClient.swift */, - C1444C252F858D5B70E6613EB1A27425 /* OAuthSwiftCredential.swift */, - 28A97A75036D889273A7E5A183268DBE /* OAuthSwiftHTTPRequest.swift */, - EE2E6EB2A01419E699FEDC9FB1286BFD /* OAuthSwiftMultipartData.swift */, - 1AD43EA0E0F580401449137B75CA5A8C /* OAuthSwiftURLHandlerType.swift */, - 90C38784FF7BEBF18081122CEB322A50 /* OAuthWebViewController.swift */, - F8BED27F246E70ED0FBB0137173A333B /* SHA1.swift */, - 493EA3001F82D4B6A91B88080CC1E4CF /* String+OAuthSwift.swift */, - D441620CC602845E8AB77EF29A9F8287 /* UIApplication+OAuthSwift.swift */, - 0BE906BE36F26EA382DF3448C0164804 /* Utils.swift */, - B05050E1ACAF17CBF9E1A41B0AE027D9 /* Support Files */, + 335B2839720289446894B5AA6E9E71ED /* PicoSOAPClient.h */, + 728250A42897ED5C6F6E4620AAC65540 /* PicoSOAPClient.m */, + C7B1E889F5927ED22DF36A2A7140EEE7 /* PicoSOAPRequestOperation.h */, + F144E0ADE3648A5D32EFCA69C0B7234E /* PicoSOAPRequestOperation.m */, + AEEA0794FACCC4E189ED617A88D17555 /* PicoXMLClient.h */, + 6642E596F792AF16DC5C1AB3B08BEC72 /* PicoXMLClient.m */, + 11A2711929C1B7BF4E7C006BB6829240 /* PicoXMLRequestOperation.h */, + 2B7CF4F7D74D9A0BB6F4222611D6C64F /* PicoXMLRequestOperation.m */, ); - path = OAuthSwift; + name = WebService; sourceTree = ""; }; - 6B05BBD96AA67C7A917B201E5A2DA14C /* Firebase */ = { + 77F2785B56B417E3DA451815BDED0A53 /* Frameworks */ = { isa = PBXGroup; children = ( - BC246452CD6D6090A0C25EA8284A4F68 /* Analytics */, - ); - path = Firebase; - sourceTree = ""; - }; - 70AC2D8E70B24B114B25C86CC9C11B4F /* Alamofire */ = { - isa = PBXGroup; - children = ( - 4353290ADBE9EFE332DFDE3890A3F8AB /* Alamofire.swift */, - 61CAAEFC2E3CD7D22729B1A9187B1E22 /* Download.swift */, - DCA443A27C6C94B24F73AEB9B6B2860F /* Error.swift */, - 065D53220074C0C7F3881F4382724E6F /* Manager.swift */, - 95807CF52F27BCECF4EE6F1D9C392729 /* MultipartFormData.swift */, - CD4653F9EF5387CFD789FA4ED63FF612 /* NetworkReachabilityManager.swift */, - 10B905ED7F63BEF70749F20B9BD9E1AA /* Notifications.swift */, - 9245421EE502846626B3F29FDB2FAB97 /* ParameterEncoding.swift */, - D5F93202835BAA301F3A04AC551D8A42 /* Request.swift */, - 0C6B54C15DCB9A7BA20CDE7BFA5AA373 /* Response.swift */, - 991E400F5F8D69F5A3F934C47D1BCB33 /* ResponseSerialization.swift */, - DCD79FB400792E3DBBE83BC113792B86 /* Result.swift */, - 1557F9A73BCA4280CFF38131D0CC8DFF /* ServerTrustPolicy.swift */, - 4712F3D9080BCC05C5A73AC51038AF3A /* Stream.swift */, - 4BAD57A11B70C897CC5BBDF0F8343761 /* Timeline.swift */, - B65BCE37CAB750EAEFE28F575BDCCC7E /* Upload.swift */, - 65CFD899AB7F08E9D9E85D71B99AF379 /* Validation.swift */, - 0AA65BCB14150D67F688924E78A8A434 /* Support Files */, - ); - path = Alamofire; - sourceTree = ""; - }; - 745DB7A03CAF3877246F092C87CE465E /* Frameworks */ = { - isa = PBXGroup; - children = ( - F056A9C27709D0D3A3BA5DA9F03E0216 /* FirebaseStorage.framework */, + 6C0497209BB7308E6684025BD2BE8076 /* GoogleInterchangeUtilities.framework */, ); name = Frameworks; sourceTree = ""; }; - 755D7FA3F63B668790BF96390F7111A3 /* Pods-VendooUITests */ = { + 79C1F66DDAB18BBA6634A8DCBD69EFC4 /* Resources */ = { isa = PBXGroup; children = ( - A56E1A33D3D9ED85AE740818A3D4CD49 /* Info.plist */, - 342D2D14F18FE74BB6A6CE738A0B2CB7 /* Pods-VendooUITests.modulemap */, - 3FCA0B46ACD95E77B874B5D80F96479D /* Pods-VendooUITests-acknowledgements.markdown */, - E870D826781CE652F4FF0FA34C714313 /* Pods-VendooUITests-acknowledgements.plist */, - ED1D2220615A13294FD6AEC63793DA67 /* Pods-VendooUITests-dummy.m */, - B86D51F51FBA591C5B810A2F43C81C20 /* Pods-VendooUITests-frameworks.sh */, - 3C8BE375E1765DAF55901B9869FA373A /* Pods-VendooUITests-resources.sh */, - AF79BC0792545A7FE5B98E8EE5A6BAE4 /* Pods-VendooUITests-umbrella.h */, - 7E2783BFC3EE592D41AAEFE93C7A48B7 /* Pods-VendooUITests.debug.xcconfig */, - 92AD10E370437A3B99BD3B82AF4F13ED /* Pods-VendooUITests.release.xcconfig */, + 2FCC794790A65115BA5F8CA188FC8686 /* TYMActivityIndicatorView.bundle */, ); - name = "Pods-VendooUITests"; - path = "Target Support Files/Pods-VendooUITests"; + name = Resources; sourceTree = ""; }; - 75C255B0D775504F4F3FF851E470630F /* Support Files */ = { + 79CA9D6EB80C6A2B12F0999B3381B97C /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - 9D81576415EC296582C94B7E28F346A1 /* FBSDKShareKit.modulemap */, - EE69BBDAFF6767E4992F7CB741AA1820 /* FBSDKShareKit.xcconfig */, - EF8FF7F1F5A41A485B53F14572555D88 /* FBSDKShareKit-dummy.m */, - 2E548FFBBFFC3C638DFAB13AD28BD54D /* FBSDKShareKit-prefix.pch */, - 6D0FB6610DC6E2EE881A7DC1A27AE08B /* FBSDKShareKit-umbrella.h */, - F2765CA8447B43DFF8B68458AE7D25E1 /* Info.plist */, + DBE93CBDEFD92C5A6B6946A42984901C /* Frameworks */, ); - name = "Support Files"; - path = "../Target Support Files/FBSDKShareKit"; + path = FirebaseAnalytics; sourceTree = ""; }; 7DB346D0F39D3F0E887471402A8071AB = { isa = PBXGroup; children = ( 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, - D84398D4DCD31EBA034CEBAF0B06890C /* Frameworks */, - 153351DC80CF71A1A10042E8708AB61A /* Pods */, - DA524A4BABCEFD58FD053D657ED447C1 /* Products */, - 9C6047AF09B8C095E15AD8C92F6A9D70 /* Targets Support Files */, + 33C83BF3190CA129C81079F014E29A1F /* Frameworks */, + A6FE4711112EE3BC7280F9280BEB9761 /* Pods */, + 06BC65EC8555178401515199505D0E55 /* Products */, + F585CC511838E9673860926B85847598 /* Targets Support Files */, ); sourceTree = ""; }; - 8177FB4DC9EF86B339353B1F300240DD /* FirebaseAnalytics */ = { + 7E311918B2F9BDA3AFB0E1B60E6EE141 /* FirebaseDatabase */ = { isa = PBXGroup; children = ( - CF57E3504A944319467E26254244393F /* Frameworks */, - ); - path = FirebaseAnalytics; - sourceTree = ""; - }; - 844A079F8A411FAEC15E69860D48FEDF /* GoogleSymbolUtilities */ = { - isa = PBXGroup; - children = ( - B2110E1DDB1CE32924209F9BCA34EA79 /* Frameworks */, - ); - path = GoogleSymbolUtilities; - sourceTree = ""; - }; - 8CDE43687EABB6E34897D01EDBB1005F /* Support Files */ = { - isa = PBXGroup; - children = ( - B8E9DBCEFC048D84C7CEC243E6863381 /* Info.plist */, - 06286AA0E769984E843A1778D7010958 /* UIImageViewModeScaleAspect.modulemap */, - 51B1CDD76CB64351C364ACFF728F151B /* UIImageViewModeScaleAspect.xcconfig */, - 147C50DF4618A2768681CE1518C192B2 /* UIImageViewModeScaleAspect-dummy.m */, - 4BBCF838F7437F8E93662CE1878488F2 /* UIImageViewModeScaleAspect-prefix.pch */, - 93C40B150A72DE55C306B15C57167AF3 /* UIImageViewModeScaleAspect-umbrella.h */, - ); - name = "Support Files"; - path = "../Target Support Files/UIImageViewModeScaleAspect"; - sourceTree = ""; - }; - 8D994B6BEACE14689423BD852649AB1E /* Frameworks */ = { - isa = PBXGroup; - children = ( - C28132383D2E38FDB041C12682C37F66 /* FirebaseInstanceID.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 8EFA56456464354C86D659C13204BC48 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 40CF302F95419BE6C84F48DF81501253 /* FirebaseAuth.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 90780AF59E36200E3302B58D8EFB5695 /* Alamofire-SwiftyJSON */ = { - isa = PBXGroup; - children = ( - C50A792ECB8AF43DED6E4C88AFA7B8D3 /* AlamofireSwiftyJSON.swift */, - 392503BEED354583B9976D179AB67D4A /* Support Files */, - ); - path = "Alamofire-SwiftyJSON"; - sourceTree = ""; - }; - 97CF3F6E66CC40FE0E3AFCAD1EFFE95B /* FirebaseDatabase */ = { - isa = PBXGroup; - children = ( - 227969BF498DD67FD1502E3309F37269 /* Frameworks */, + 906B71F37F869685481FB3FB7B5C2C8C /* Frameworks */, ); path = FirebaseDatabase; sourceTree = ""; }; - 9C6047AF09B8C095E15AD8C92F6A9D70 /* Targets Support Files */ = { + 7E770BE874214A92CECEFC31BDDC84C9 /* BSGridCollectionViewLayout */ = { isa = PBXGroup; children = ( - 1969DB7011D9EA98995A08C202E8C6CD /* Pods-Vendoo */, - ECFACD077B2A093918E8C39125BBE3E1 /* Pods-VendooTests */, - 755D7FA3F63B668790BF96390F7111A3 /* Pods-VendooUITests */, + 512B061CCD4719F2DB8CF067B61BB903 /* GridCollectionViewLayout.swift */, + B3CF272E5BBBFBE177CA800C7847274D /* Support Files */, ); - name = "Targets Support Files"; + path = BSGridCollectionViewLayout; sourceTree = ""; }; - AAA1D3A3F3C54BF2499415C99B264DD6 /* SwiftyJSON */ = { + 7FD02E0F41EE5094DFC4F8A3986C8E53 /* Support Files */ = { isa = PBXGroup; children = ( - 4C68F495B7D884C7BC1E249C8DA53550 /* SwiftyJSON.swift */, - F0CA32CF6FA3CEBBE4407B68602484FD /* Support Files */, + B5A1B9E4A75F5B62A073311D80F9253E /* AeroGearOAuth2.modulemap */, + 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */, + 7FDDEF84189F43CFB074278587F13019 /* AeroGearOAuth2-dummy.m */, + 332E9ADCDB1A37E41540865A4A73B07B /* AeroGearOAuth2-prefix.pch */, + 1558E1357BE03000E98FFEE56D1E1DE3 /* AeroGearOAuth2-umbrella.h */, + 8C2D0E6279241B28F02C33D1A4C39DF3 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/AeroGearOAuth2"; + sourceTree = ""; + }; + 851E08BBE73E33520598809DF0769E7F /* FBSDKCoreKit */ = { + isa = PBXGroup; + children = ( + 274402C750F02C7753DA0A1808189AF9 /* _FBSDKTemporaryErrorRecoveryAttempter.h */, + 5AA8F245D01102A52F45777264C584FA /* _FBSDKTemporaryErrorRecoveryAttempter.m */, + 2D38A4B06DBCE6241BF23EE59DA2EC00 /* FBSDKAccessToken.h */, + 0BA69F359686D0DF13E8908891278F2B /* FBSDKAccessToken.m */, + E317B9D5CFF520B3690F6E5AD930138D /* FBSDKAccessTokenCache.h */, + F7D1135C708CFABDCEF0A3508501EA2D /* FBSDKAccessTokenCache.m */, + 037BEC0658766E3CC7D1521E3D8314B5 /* FBSDKAccessTokenCacheV3.h */, + C07887C7B74DD6446A7AE9876C719B95 /* FBSDKAccessTokenCacheV3.m */, + 1F84E0250821081E5D6E4D529F79671F /* FBSDKAccessTokenCacheV3_17.h */, + 80625927A0A8240A11820485C1B89E1D /* FBSDKAccessTokenCacheV3_17.m */, + 73F1953D06394C717AE56AEF0BDDB4FA /* FBSDKAccessTokenCacheV3_21.h */, + 90589F272B98647EC0E23AFCCA91E6B8 /* FBSDKAccessTokenCacheV3_21.m */, + 3392A1562EEECDDCE5ABD3904BFAF496 /* FBSDKAccessTokenCacheV4.h */, + 71C78B47AAD708C337C652098585D02D /* FBSDKAccessTokenCacheV4.m */, + CC7827DFEA640657B36BF25F407DE23F /* FBSDKAccessTokenCaching.h */, + BBEBC850596B4F6F86F529C0BCA43EDE /* FBSDKAppEvents.h */, + DC9BED0D6C773E3725A004F799012C45 /* FBSDKAppEvents.m */, + 9E37232EA795BD54902F9DA507144E03 /* FBSDKAppEvents+Internal.h */, + 3801A6586C20BA514D687E5CB9811FE3 /* FBSDKAppEventsDeviceInfo.h */, + F403D913349292156367832BB68EDEBA /* FBSDKAppEventsDeviceInfo.m */, + 9116DB6971CA6E1FF43A462B21D1B7A3 /* FBSDKAppEventsState.h */, + 13E485FD2622941556EC545D8E597CD9 /* FBSDKAppEventsState.m */, + D3219AEED0D229D413971C6A2DCEB389 /* FBSDKAppEventsStateManager.h */, + D3C023CAB4F2364653FE94AE7D7989C9 /* FBSDKAppEventsStateManager.m */, + F9C7C0D3ADE9E5FDD958B1F54E512561 /* FBSDKAppEventsUtility.h */, + 42BDF66743CD3E171F3466C6982B33AF /* FBSDKAppEventsUtility.m */, + 7A25AEEBB73C1A6F99CE31001CC8E7D5 /* FBSDKApplicationDelegate.h */, + 72245D286497643AEC39CFD51C055F36 /* FBSDKApplicationDelegate.m */, + 97397E57104D5D6DEC9FE2ECE449F708 /* FBSDKApplicationDelegate+Internal.h */, + BFF8C76E844CB9E2F51EE0CA89497C4F /* FBSDKAppLinkResolver.h */, + 56C62ACDBAC74EBED7CA84A6A12227C6 /* FBSDKAppLinkResolver.m */, + 815884EE68A2843EE9E92A62361D5865 /* FBSDKAppLinkUtility.h */, + CB03DF2760683BF429AE919F41884E80 /* FBSDKAppLinkUtility.m */, + CE3B4D504E1D4AEB468003967B2EBE94 /* FBSDKAudioResourceLoader.h */, + 40860CE4791C20738F3B29A2D545328F /* FBSDKAudioResourceLoader.m */, + CA18F7E3B63386B99BC27FE3891447FB /* FBSDKBase64.h */, + 179F7B8C1F165CEA1130EABEEC849EB9 /* FBSDKBase64.m */, + B63504FA5832B525F19DF6594AC6FB9D /* FBSDKBoltsMeasurementEventListener.h */, + 3873EE2B52B1DF5A7434C81CD98CE17B /* FBSDKBoltsMeasurementEventListener.m */, + DCCA5879C89062A06F6669EEC7EE9423 /* FBSDKBridgeAPICrypto.h */, + 57B4E1E26A52262A705E7EAA60D4F3C0 /* FBSDKBridgeAPICrypto.m */, + F5BD3504B96359BD27FEBA4D8AD4E18A /* FBSDKBridgeAPIProtocol.h */, + C58103D81E9C42491AA9266AE753D199 /* FBSDKBridgeAPIProtocolNativeV1.h */, + 8A38272687E05C4229D23CB5DE59A4FD /* FBSDKBridgeAPIProtocolNativeV1.m */, + 80EFAB771868CE6DEFEEC2E09785125B /* FBSDKBridgeAPIProtocolType.h */, + 04C630A21B0B22B553420BCFFF34A307 /* FBSDKBridgeAPIProtocolWebV1.h */, + CDB067EADA78F19BE0B2C323DAC087BA /* FBSDKBridgeAPIProtocolWebV1.m */, + 59294C30161CC7DA8F58614411D98259 /* FBSDKBridgeAPIProtocolWebV2.h */, + 2A97717F4F7ECC0DEC471C7C302AF960 /* FBSDKBridgeAPIProtocolWebV2.m */, + B80A07D9D7AFB969E72F14412BEB388B /* FBSDKBridgeAPIRequest.h */, + B3C7FB15CC8A499B4E316FCF04D2E2FF /* FBSDKBridgeAPIRequest.m */, + 831F01F23D3F1DC8A1E13167976B0163 /* FBSDKBridgeAPIRequest+Private.h */, + 66024A49B3EC28081C1692C2040D11D7 /* FBSDKBridgeAPIResponse.h */, + 4879AE8293911291B535A5FF6E44592C /* FBSDKBridgeAPIResponse.m */, + 0BDD86C6317DD2E1A2D61337F22A55DE /* FBSDKButton.h */, + 975515A6E522EEF8B1D5CEC7BCC5679B /* FBSDKButton.m */, + EC9F13F9E8CAAACFF78326E45C40599F /* FBSDKButton+Subclass.h */, + 806C2D6BD79698DD3F5D505EC0EF3137 /* FBSDKCloseIcon.h */, + 0DCDACB474AC3ADD768D6B1C3DC646FE /* FBSDKCloseIcon.m */, + 0FA328E4B9D90899E6BC7FC9780CD385 /* FBSDKColor.h */, + B34B8DDB4A0AB0AE10712A6E9AD3AD98 /* FBSDKColor.m */, + 65E09A4D2744DCD15D59FFBEC09F06FE /* FBSDKConstants.h */, + 3B81CC9EF67BDCEF23158C3FFEAA9F5A /* FBSDKConstants.m */, + 9CEFAD237F62111CE519B3B3D8CEB628 /* FBSDKContainerViewController.h */, + CEEDEAA3B1D0E7F51C42A0FF4D04155F /* FBSDKContainerViewController.m */, + 7AAAF26C01B2BFD6C274E707708CFFE9 /* FBSDKCopying.h */, + F53B4CC4415CE07123BF063BBB373F7C /* FBSDKCoreKit.h */, + E71829FF290118344E90D187DAB55969 /* FBSDKCoreKit+Internal.h */, + B5CC773751C97D5CF077570D03A9765F /* FBSDKCrypto.h */, + 0DF0F9821ABBDAACF5F415C842360459 /* FBSDKCrypto.m */, + EB342C66340F0F9CC8BC06EA44FB9716 /* FBSDKDialogConfiguration.h */, + 42EED0D66730A14C542FFAB588757458 /* FBSDKDialogConfiguration.m */, + 5171047B32E16A56212576AF9C927ACD /* FBSDKDynamicFrameworkLoader.h */, + B62A5569FC7D6F49DDF2E9EE5A048EB3 /* FBSDKDynamicFrameworkLoader.m */, + 9DF40AE913CA0B12932E513EA49D973D /* FBSDKError.h */, + BB69CDD045397A0C3BBD4BA9E14DC9EB /* FBSDKError.m */, + 00A4FA97903758A3B2737BD06B92134C /* FBSDKErrorConfiguration.h */, + 5072C8B1E1D466A2BB7524C239A94612 /* FBSDKErrorConfiguration.m */, + 658C82613C9FB905AB99A1A9CF2F6372 /* FBSDKErrorRecoveryAttempter.h */, + 410ACCE4C6EEFC8B50268F3ADB5D4A10 /* FBSDKErrorRecoveryAttempter.m */, + 2BA6133139D645A886D2696A5332348C /* FBSDKErrorRecoveryConfiguration.h */, + 34C0B1F7EB452212E19F6C9997008B3A /* FBSDKErrorRecoveryConfiguration.m */, + 24D5D774BFB590DE4A8D8308CA4249E6 /* FBSDKGraphErrorRecoveryProcessor.h */, + 0FDCFC0010E47AC0BE5AE3E177D32528 /* FBSDKGraphErrorRecoveryProcessor.m */, + AE174E4E8CAD8215E3889AD1FDF89D60 /* FBSDKGraphRequest.h */, + BF4ABFB3666982C4726ADDAC9255BAAE /* FBSDKGraphRequest.m */, + 12C1E065A6B3D67E434B973AE1123ACA /* FBSDKGraphRequest+Internal.h */, + 9030292F16ADD1982577B2FDD78186B9 /* FBSDKGraphRequestBody.h */, + 5EB68B5A119AFA8929C94D2CB9AD2A37 /* FBSDKGraphRequestBody.m */, + 0D9C8E01DB21AAF105C10CF909B18718 /* FBSDKGraphRequestConnection.h */, + 88800517C0B4F604753E9AFF3E380BAD /* FBSDKGraphRequestConnection.m */, + 45A9A8FCBE779F8A7ACE59BD1AE2066F /* FBSDKGraphRequestConnection+Internal.h */, + 87DAE8DD5362B98E2BC36A88BA93AEEA /* FBSDKGraphRequestDataAttachment.h */, + 0E3CC35EBB907779C52E2BA419C652C7 /* FBSDKGraphRequestDataAttachment.m */, + 0210649A551E0AFEB3BE52532D0579EA /* FBSDKGraphRequestMetadata.h */, + 7451DC440007CAE64F8E4F46AF67ADA2 /* FBSDKGraphRequestMetadata.m */, + 66DBCB3C69D5BEC6307565074B290069 /* FBSDKGraphRequestPiggybackManager.h */, + 8CB0342EBAA4FFC79E61FB37A28AE1B0 /* FBSDKGraphRequestPiggybackManager.m */, + ED48F8029AD4431700989A7222F7E972 /* FBSDKIcon.h */, + 6564D6E0C0B299EF82715CA242A8DB02 /* FBSDKIcon.m */, + 18A7615FFEDC1FB3348C7337D0FE0C71 /* FBSDKInternalUtility.h */, + FDEE1A982BF65E50670F7668F193DBC3 /* FBSDKInternalUtility.m */, + 45D5C4E7D18866F0718F53294F8092B7 /* FBSDKKeychainStore.h */, + 5763164C84BA1444CC801F972E189C0A /* FBSDKKeychainStore.m */, + 2A8EB10B18921992E9989829B0393AC9 /* FBSDKKeychainStoreViaBundleID.h */, + 31197CF960F9C2232A1DDCAB3F8DB68A /* FBSDKKeychainStoreViaBundleID.m */, + 2F70D5CBD03BBE49AB8DC112573F8844 /* FBSDKLogger.h */, + E86011139202C985DE4BDA1418B15737 /* FBSDKLogger.m */, + 53EA5490BD2D8F3B93640F57466D86F1 /* FBSDKLogo.h */, + FE7056B94E9F7C98902BD400A22CD9DB /* FBSDKLogo.m */, + AC85F823B6A43EA175D2E6FAF7318FF4 /* FBSDKMacros.h */, + BD0949DB26EE5E98FA8179E03525183C /* FBSDKMaleSilhouetteIcon.h */, + 2A6819D9457898F2A08A44231008DB20 /* FBSDKMaleSilhouetteIcon.m */, + 1230D4DFFC0A1487CBEA467F6A300C4C /* FBSDKMath.h */, + BD9C731E16EF98A744EA0140D9B661A9 /* FBSDKMath.m */, + 6715DBC39B429F89E9D03F7BC03F2176 /* FBSDKMonotonicTime.h */, + 92C59EBDF18FC2BF05CB5407C4A0E77D /* FBSDKMonotonicTime.m */, + 688D4D0BE6D044686882A32AACB60D78 /* FBSDKMutableCopying.h */, + 7B23EEC9EF98E18BA78C2574CB347939 /* FBSDKOrganicDeeplinkHelper.h */, + CA9561940BD63CEA1F00E7E114F5705B /* FBSDKOrganicDeeplinkHelper.m */, + 4FCEA524CE985F9574ABDED0790C8315 /* FBSDKPaymentObserver.h */, + 1659A098D97B7F23B12651594133C44F /* FBSDKPaymentObserver.m */, + 822D72BA8B1F86602793321A425FE83A /* FBSDKProfile.h */, + 7B1DA2F438778DFCB7E920B0ADEE002A /* FBSDKProfile.m */, + 44BA5CB60B2E0632713031C09DA8FF35 /* FBSDKProfile+Internal.h */, + A9E02F55BA8A59296583E6985EDA7384 /* FBSDKProfilePictureView.h */, + 79ABEA5584C4377DCDDAFFAA0E036696 /* FBSDKProfilePictureView.m */, + 215716BB207EFED998E747C8916018F9 /* FBSDKServerConfiguration.h */, + 15B0D519C13A85B81EBA251944FD9E65 /* FBSDKServerConfiguration.m */, + 8A6772F2DEDFB439091E0C61DA3CEC95 /* FBSDKServerConfiguration+Internal.h */, + BDCDB4AC58638D44FA6AFD685AD3513F /* FBSDKServerConfigurationManager.h */, + 769BE9934A6B18F097264F40ED80D5DB /* FBSDKServerConfigurationManager.m */, + 23D9EA6CD3EA83023E3E99F37858D897 /* FBSDKServerConfigurationManager+Internal.h */, + 211FC4C7B1EDCEA8885F03EB57487C9D /* FBSDKSettings.h */, + 8E1044C75CB962E20676E677131B7087 /* FBSDKSettings.m */, + EFDB9B82E6870E8F4E1F563CB761F2B4 /* FBSDKSettings+Internal.h */, + 58FE854B7DE94EBF654DC928C4316293 /* FBSDKSystemAccountStoreAdapter.h */, + 7D97429AD2D786FDD7A057B4B5BA31FB /* FBSDKSystemAccountStoreAdapter.m */, + 57C261DD8D16CB4A5AA9E9C697887864 /* FBSDKTestUsersManager.h */, + A43CAD01E6E600EA142DEA4770099EA9 /* FBSDKTestUsersManager.m */, + A15B02EF19E187B02A55F3C1ECAD08BF /* FBSDKTimeSpentData.h */, + C852408AFC2802B823BA4A17ADF80B1B /* FBSDKTimeSpentData.m */, + AAE788501ADB377A8157DE39AFD5A8B5 /* FBSDKTriStateBOOL.h */, + 1485CD0D6CC46C66362314FFA0A959A6 /* FBSDKTriStateBOOL.m */, + B57041BF243720546E2B3BBEBAB9A548 /* FBSDKTypeUtility.h */, + 7D03884E6D124364437EC429FFB2DF62 /* FBSDKTypeUtility.m */, + AF824C365242B0C20945253374774C1F /* FBSDKUIUtility.h */, + 98DBA61E57524B271DACDBF349DC5DB6 /* FBSDKURLConnection.h */, + 978A4B1D5DD8E6E69DF6BD58923D66BB /* FBSDKURLConnection.m */, + BDC826F2E70996C9AE87B96D3211DA29 /* FBSDKURLOpening.h */, + 998D15982DC46B745B0595086744C788 /* FBSDKUtility.h */, + DF2271DD0897F59E56F8E7966E5AC243 /* FBSDKUtility.m */, + 2C3240C489113EC7B1A848A55548D802 /* FBSDKViewImpressionTracker.h */, + EC88F0E7D91840D2776494E7DCDFEA1C /* FBSDKViewImpressionTracker.m */, + 601D3CA4BD4F7F6D295C4947E66295EB /* FBSDKWebDialog.h */, + 14D5C9BBF76C567DFE57F34DBDE0602A /* FBSDKWebDialog.m */, + 91BAD915B94B6D087A68C7166E45C7FD /* FBSDKWebDialogView.h */, + 5EB5B13D0786F0EDE912B10169B689A5 /* FBSDKWebDialogView.m */, + 3B021F36E2C1B8BB26AB2D4103F820B5 /* Support Files */, + ); + path = FBSDKCoreKit; + sourceTree = ""; + }; + 8A9528511EB91A680411348277F9404B /* GoogleUtilities */ = { + isa = PBXGroup; + children = ( + C3F96170CB3C14E83628D013D268D271 /* Frameworks */, + ); + path = GoogleUtilities; + sourceTree = ""; + }; + 8D4DC7CE92AB96C1F72322AFB2E7DD0C /* NSURLConnection */ = { + isa = PBXGroup; + children = ( + 0DB476976DBD8C5481E989BDDB475605 /* AFHTTPRequestOperation.h */, + 754B56B34B29990770364603E688F08B /* AFHTTPRequestOperation.m */, + 4852ABFCF4F0FA929A4EC5BC39C0B44F /* AFHTTPRequestOperationManager.h */, + DC4358A4E9F5CD0E977BA79631BAD3F3 /* AFHTTPRequestOperationManager.m */, + 64E3B4BBF0885812ABC85A381066A943 /* AFURLConnectionOperation.h */, + 1F3045CE36007174B5AE014116FB12A5 /* AFURLConnectionOperation.m */, + ); + name = NSURLConnection; + sourceTree = ""; + }; + 906B71F37F869685481FB3FB7B5C2C8C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 8CEAF64433FE0B8BF0E4044AB798F808 /* FirebaseDatabase.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 92E54435F2489E6CFE86D553B52ED5A5 /* SwiftyJSON */ = { + isa = PBXGroup; + children = ( + 868DCF6FDE1015433F1DDF2E38D64C1E /* SwiftyJSON.swift */, + 1BABDC773269F05D4A039AC3372296E8 /* Support Files */, ); path = SwiftyJSON; sourceTree = ""; }; - AB7FB3EA6EBCB3F70BD52974F6F2654A /* Support Files */ = { + 96945DDB31DDA27C2E4F23A8091D9B49 /* Support Files */ = { isa = PBXGroup; children = ( - E50C257D125578872432FA2F3BC0A52D /* Info.plist */, - BC12A644E7E0FEFC6DCD6F6A1D034644 /* Locksmith.modulemap */, - 93CBD14BDECEE87E398D848CC0A0EA09 /* Locksmith.xcconfig */, - D60BEEDE547DC959C87DCE5C2A337F9D /* Locksmith-dummy.m */, - 8BA8338F6BF956A91C26B9D066B2DFD4 /* Locksmith-prefix.pch */, - EAA9D82577DC9D1232A8084E5A58EBE2 /* Locksmith-umbrella.h */, + 154E3CF52EB5D09A7733CBB9D06C1EF5 /* AeroGearHttp.modulemap */, + E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */, + BBBB1EB8362300197917511E324A727C /* AeroGearHttp-dummy.m */, + 1BDC798AC5D47CD190B16D3757D416CD /* AeroGearHttp-prefix.pch */, + E64651DB95E0B15BB312F6312ACBE569 /* AeroGearHttp-umbrella.h */, + A5C54E6B310A8A6D5F17E487F4FD4E90 /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/Locksmith"; + path = "../Target Support Files/AeroGearHttp"; sourceTree = ""; }; - ABE34226E332DF745FE8334DBB867686 /* Frameworks */ = { + 98CF92F5D08DBDC8EA7830F69F2FBE7A /* Support Files */ = { isa = PBXGroup; children = ( - 3AFD6C397A221C31DE7997B10C3D850B /* GoogleUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - AC558853995AEBA0FA1FEC22CA5FB68E /* FirebaseInstanceID */ = { - isa = PBXGroup; - children = ( - 9979151D596195B9E1C34D2A8365DB5A /* FIRInstanceID.h */, - 8D994B6BEACE14689423BD852649AB1E /* Frameworks */, - ); - path = FirebaseInstanceID; - sourceTree = ""; - }; - B05050E1ACAF17CBF9E1A41B0AE027D9 /* Support Files */ = { - isa = PBXGroup; - children = ( - B317C24D2CB6CA066AD0FAF5257A423C /* Info.plist */, - 1F2211F49BEF06357468E22B95441F3A /* OAuthSwift.modulemap */, - 41A74D3149BFEEC597096530B36B7834 /* OAuthSwift.xcconfig */, - 618ECCEC9BCD09F8899F23521B734CBD /* OAuthSwift-dummy.m */, - E980B04EA5C4322F570E132ED0D0736F /* OAuthSwift-prefix.pch */, - 4A8D1A1E332DFDF95E8E370C8940881D /* OAuthSwift-umbrella.h */, + C1A5C330776B11C1F30A3F5D7CE61FFE /* FBSDKLoginKit.modulemap */, + 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */, + C2A024614035DD5EB6FBDE765EC32C7C /* FBSDKLoginKit-dummy.m */, + A3523A664363BAA156F31B974381BCEE /* FBSDKLoginKit-prefix.pch */, + 0FF02B199B8D42DE42D826C56B971B1C /* FBSDKLoginKit-umbrella.h */, + 8BB8FDCE60E4FDDFB68FCF6AFB09D36A /* Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/OAuthSwift"; + path = "../Target Support Files/FBSDKLoginKit"; sourceTree = ""; }; - B2110E1DDB1CE32924209F9BCA34EA79 /* Frameworks */ = { + 995159D6C63302734CB20CD4DCC73797 /* Tasks */ = { isa = PBXGroup; children = ( - 3717EB739327385302B6EAA327973473 /* GoogleSymbolUtilities.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - BB2653E9BE5B047517F3BE0E1030A544 /* AppLinks */ = { - isa = PBXGroup; - children = ( - 3F28C68F0202A4B8EC327676473C1978 /* BFAppLink.h */, - FD9D2CF433AB125F0F2DBE488512280A /* BFAppLink.m */, - 7EEAF1C38B82F546FC2E987DDE5BE1E6 /* BFAppLink_Internal.h */, - F54CFBF87AEAC1E83DFEBDCB60482AFF /* BFAppLinkNavigation.h */, - 99C61F87C58C6A6FE77802A33C76C0B4 /* BFAppLinkNavigation.m */, - 07D2032BA6AF5FA88BD87D90D636C72B /* BFAppLinkResolving.h */, - 6F451A818A81CE1CA2997B22E2F824A8 /* BFAppLinkReturnToRefererController.h */, - 7941E4F5171B1B346547196159B7F021 /* BFAppLinkReturnToRefererController.m */, - 9BEE32B89BD2CDA670B4D1507F00992E /* BFAppLinkReturnToRefererView.h */, - 6E5404BA7A65D9B812D0B579ACAE32C0 /* BFAppLinkReturnToRefererView.m */, - CEA9386492AC92260F438C39865D53BF /* BFAppLinkReturnToRefererView_Internal.h */, - 5AAE1FAA427602B915E89F31BE922DFD /* BFAppLinkTarget.h */, - A22A44A17DA26A3B0EC4CA6E006CFE44 /* BFAppLinkTarget.m */, - 01AB2860D5960EAA904307CF3042B0F4 /* BFMeasurementEvent.h */, - 9F7781103637255790BB03201581135E /* BFMeasurementEvent.m */, - A2D095F04810C64D707A11D98A7C416B /* BFMeasurementEvent_Internal.h */, - 94E7B97DC3EA06B40957CEF0B7D91DA2 /* BFURL.h */, - 3487F9F0834A2984F7A6CBBFE77832C0 /* BFURL.m */, - 0EED591AA757A6FCEFA54E96E28A6D30 /* BFURL_Internal.h */, - 0286AC40763D10FB43674412311E2DA5 /* BFWebViewAppLinkResolver.h */, - 42FB835A81494D3C2D0A0B220A8832F7 /* BFWebViewAppLinkResolver.m */, - ); - name = AppLinks; - sourceTree = ""; - }; - BC246452CD6D6090A0C25EA8284A4F68 /* Analytics */ = { - isa = PBXGroup; - children = ( - 29C13EFF6729A5A452F92A4C55268FC0 /* Firebase.h */, - ); - name = Analytics; - sourceTree = ""; - }; - BC397FBD41557BEFB534449957C97BCC /* Tasks */ = { - isa = PBXGroup; - children = ( - 87A2AE4A4B440B1E19C1CCD0DB7E28CD /* BFCancellationToken.h */, - 24866B7E01F0D0B56791D75DB796B482 /* BFCancellationToken.m */, - B6166152F208DD96BC186D561AE2B763 /* BFCancellationTokenRegistration.h */, - B3256BD4C788B18CDBE7E1C8D56A1143 /* BFCancellationTokenRegistration.m */, - 23F17D991038A432C69A54A10A996371 /* BFCancellationTokenSource.h */, - 09F9D53B5C1E6B52A37D1EC474EA9DAF /* BFCancellationTokenSource.m */, - D4EEDCFEAF51272FF38ACF0E280CD319 /* BFExecutor.h */, - 846B4EBC0175F58BE1532936CBFE5775 /* BFExecutor.m */, - E60FE64092695C063A33536C0DA25435 /* BFTask.h */, - E620664FFCA546D866EB4CCE3169560D /* BFTask.m */, - C17713B1BE88DBC925AACAFAA39431DE /* BFTask+Exceptions.h */, - 02D0B5FD4BF9A0FCF2244EF888F8B2E5 /* BFTask+Exceptions.m */, - 5DAF450F014E35FD0336C9A78C4DCADF /* BFTaskCompletionSource.h */, - EB5B9669CD4CEF740D2D480081DC9727 /* BFTaskCompletionSource.m */, - 40865343B41DE6056DC3EFBB6E81BB8B /* Bolts.h */, - 65B02BB38EC53DDB0CCEB2EA4FA4860C /* Bolts.m */, + 7A7C7CEED29FD3533FA87314D4AAD92E /* BFCancellationToken.h */, + F3656113C4722F5334A57E106D278299 /* BFCancellationToken.m */, + EB76ABEEC84D94281BBA33F8A707F52B /* BFCancellationTokenRegistration.h */, + 78707D42C9424E9D1BC3A19DE5C23E39 /* BFCancellationTokenRegistration.m */, + 521428FAB97E69066F88237BE8C4AE9B /* BFCancellationTokenSource.h */, + 4FC5191945366DAC35747F2456E28998 /* BFCancellationTokenSource.m */, + 83046507F9437DD39784307FE629DB93 /* BFExecutor.h */, + B11102A8441AC1AA0813A59FC1535D98 /* BFExecutor.m */, + 6A460517F9FC1CD644C63D90CA376D69 /* BFTask.h */, + 561CE7829E757FDC6AC24B2794E98D95 /* BFTask.m */, + EADAF8354E076C200F01AD3E52A05201 /* BFTask+Exceptions.h */, + 2847E87631E080F6DE4980B5438780DA /* BFTask+Exceptions.m */, + 6D4F3DD6A7BF4185DFE772EA964B09F7 /* BFTaskCompletionSource.h */, + F8DFF9AD2140B7424CF0E7B0C26DC7E9 /* BFTaskCompletionSource.m */, + D5230F3C993EF53931931F6A58EBBECD /* Bolts.h */, + 26D049B6CDE17197E09B5FFAE7F64565 /* Bolts.m */, ); name = Tasks; sourceTree = ""; }; - CF57E3504A944319467E26254244393F /* Frameworks */ = { + A4AF5BF99A081992C196CE67842D29BA /* Support Files */ = { isa = PBXGroup; children = ( - 357F22F5B12D009C8BE64107264128C3 /* FirebaseAnalytics.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - D21C7252823043EDBEBA7200C8424C5E /* iOS */ = { - isa = PBXGroup; - children = ( - EEDB7FCF970C84E7527FEE289032673D /* CoreGraphics.framework */, - A6F6DCEBF30F4BAECFEDC43F39980261 /* Foundation.framework */, - AAA01DE0111A9F506F2FB39CE5E3169C /* Photos.framework */, - 0C7E41DB504B5085893E87016F3220F8 /* Security.framework */, - B8055667DA374E73C342D2DD45A6F89A /* UIKit.framework */, - ); - name = iOS; - sourceTree = ""; - }; - D4B72A5FFAA0E3E6C4C22482913C11D3 /* GoogleInterchangeUtilities */ = { - isa = PBXGroup; - children = ( - 4F2E319320E62430EF8AD4E7DC041930 /* Frameworks */, - ); - path = GoogleInterchangeUtilities; - sourceTree = ""; - }; - D56DBD206E52077496A785412C374673 /* Support Files */ = { - isa = PBXGroup; - children = ( - C295B51F9D7E65337D04BA5663D5F544 /* FBSDKCoreKit.modulemap */, - 362F5A481DC62449AFCAAF53EBECE26C /* FBSDKCoreKit.xcconfig */, - E1910BE40252D644B8733445F7138F26 /* FBSDKCoreKit-dummy.m */, - C1332FD6082FD3B76210A6EC4E5679F2 /* FBSDKCoreKit-prefix.pch */, - 6DE86188A6FCBF74B3DDF80DAF762D8D /* FBSDKCoreKit-umbrella.h */, - DB838EA038B55246C881AF9E2F078E56 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FBSDKCoreKit"; - sourceTree = ""; - }; - D84398D4DCD31EBA034CEBAF0B06890C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 567F503770CF61BE79C2E1751B9251D0 /* Alamofire.framework */, - 07D413BD2B46425A6A1570F69E06C663 /* Bolts.framework */, - 2A34BB9DBD8BFBD180408D721C9FC5F7 /* BSGridCollectionViewLayout.framework */, - 33E1AD8B8BF1ABC79CAA7A95CC8704B8 /* FBSDKCoreKit.framework */, - FE02C758654AB2888DD2337A0369A037 /* SwiftyJSON.framework */, - 843C8694F530D4A2885C27905C175FF5 /* UIImageViewModeScaleAspect.framework */, - D21C7252823043EDBEBA7200C8424C5E /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - DA524A4BABCEFD58FD053D657ED447C1 /* Products */ = { - isa = PBXGroup; - children = ( - 6C0A13967CBFD7F1D7FD1ED5F2048ABD /* Alamofire.framework */, - 8E70857388786A651E3CF481AB2FFF10 /* Alamofire_SwiftyJSON.framework */, - 54D37A71D5C1658176DA169EBEA190C6 /* Bolts.framework */, - 7FA06726A3A4D67408C806746E96C8AC /* BSGridCollectionViewLayout.framework */, - DC61298D95492056180D4E82292683B9 /* BSImagePicker.bundle */, - 8AD8294FA33B540803065AE414509D9A /* BSImagePicker.framework */, - 1B9C980B413AF0E3F9E186379A2FD391 /* FBSDKCoreKit.framework */, - F1928779CEF4CD1A263424A872232529 /* FBSDKLoginKit.framework */, - AC9CD4F004FF533C025FB4E737A3F025 /* FBSDKShareKit.framework */, - AD7EBAD61399E3717AB01A6384AA0138 /* Locksmith.framework */, - 1C158E27C24A605F4302621C79D582AF /* OAuthSwift.framework */, - 8E0BA22D04666FB9DDE0C4885B0444B1 /* Pods_Vendoo.framework */, - C2763D30AE4336F601544511DC43E030 /* Pods_VendooTests.framework */, - FDB65941B0254FEBDF7F6E2EBEE5E543 /* Pods_VendooUITests.framework */, - CF55D20CB00B94AE727AC53258C519D1 /* SwiftyJSON.framework */, - 2FDAC9906562FC9E71C406DB31C0404C /* SWRevealViewController.framework */, - B9253D261519F463CAFDB4CD54513A8F /* TYMActivityIndicatorView.framework */, - 2A2D2B645208072C2D8DFFD1C8D5734B /* UIImageViewModeScaleAspect.framework */, - ); - name = Products; - sourceTree = ""; - }; - DD1BF6EB403414FC59E0B5A3CFE01BBC /* Support Files */ = { - isa = PBXGroup; - children = ( - 8476590EA3BB4BB64470DDFEE45C57BD /* Bolts.modulemap */, - 75AA560774BFE5E9C616BDBB3A1F6BB9 /* Bolts.xcconfig */, - 8CD7F38060C10058D9FB08266437FF03 /* Bolts-dummy.m */, - 2F6256FC09BBDE9115365A362848005F /* Bolts-prefix.pch */, - 8310D2F6EE6852D032E667DD27336189 /* Bolts-umbrella.h */, - F8ACA9F968399D2C0D34994083F572BF /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Bolts"; - sourceTree = ""; - }; - DF62990F57E9D51121AD659BBB895112 /* Support Files */ = { - isa = PBXGroup; - children = ( - D2BDF3CB9D517B8429177DC10DAAF96F /* Info.plist */, - A4C42BED88954FB383E83660959F39CA /* TYMActivityIndicatorView.modulemap */, - 842CF92121F511EEE4EFFB78442505C1 /* TYMActivityIndicatorView.xcconfig */, - 08AAC66ECED2E479C06BEA3F3C1C6417 /* TYMActivityIndicatorView-dummy.m */, - EA04DC006F02C822BA7226AE7B9B3705 /* TYMActivityIndicatorView-prefix.pch */, - EC2646324FA503B2A002538249794190 /* TYMActivityIndicatorView-umbrella.h */, + 5377850009ED2C9DCC8B62C24AAC728A /* Info.plist */, + 3D2898F978B2ED9E604E36EA4FF85288 /* TYMActivityIndicatorView.modulemap */, + D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */, + 5ED6116A97A900E30653A427BC042E62 /* TYMActivityIndicatorView-dummy.m */, + 899A95C142F12D481CD55CE31B877707 /* TYMActivityIndicatorView-prefix.pch */, + 67F91B1466145C07925698D1F7162CB9 /* TYMActivityIndicatorView-umbrella.h */, ); name = "Support Files"; path = "../Target Support Files/TYMActivityIndicatorView"; sourceTree = ""; }; - E9EAD672FA75393A6F6C34EE81D2C13C /* Support Files */ = { + A52CD0F05E111D038AE0F3823BBDB923 /* Bolts */ = { isa = PBXGroup; children = ( - C1DD9897D06257D0B212A2BBD5712048 /* BSImagePicker.modulemap */, - 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */, - 074666F512EE438B13AA9E58016D5764 /* BSImagePicker-dummy.m */, - B866A1B2AAFB2EFE6555C3ACC2D9C9FF /* BSImagePicker-prefix.pch */, - 9BBC6109805EA4248DE2E19CE824D9A4 /* BSImagePicker-umbrella.h */, - 6AAA9B94C373DE09E8EAF39FB517C3AB /* Info.plist */, - F020574A3BF87444EAC7679966B92DAB /* ResourceBundle-BSImagePicker-Info.plist */, + 1323CC8DD6F7F5E82EF49DD27FB294DA /* AppLinks */, + 370FC070B73A3B3B7A07F3ECBD83AB9F /* Support Files */, + 995159D6C63302734CB20CD4DCC73797 /* Tasks */, + ); + path = Bolts; + sourceTree = ""; + }; + A54BFD8BDD7E78D01F5762FAE290A89B /* Security */ = { + isa = PBXGroup; + children = ( + 11E9F653A2B9096D9B942AF36AF450D5 /* AFSecurityPolicy.h */, + 76C86C7E48E9DA6F8DFE5A2E31E43A7A /* AFSecurityPolicy.m */, + ); + name = Security; + sourceTree = ""; + }; + A61B6E1028EFDD5EF3D087E83C987E54 /* PicoKit */ = { + isa = PBXGroup; + children = ( + ACFBD72C3F7D37FA24A46FD3C65C7C82 /* Core */, + 1FB1AD1BFDC12437FEF3A335105F99C7 /* OrderedDictionary */, + C701E824A4DF7CBA99FE50E6EC127D1B /* Soap */, + 0AB7E25EE0656493E818C770C9310143 /* Support Files */, + 77CD72E4DC2DD087CFD550AA1E5E3CC3 /* WebService */, + FB95D8909D87C076DC9CABBD0833E70D /* XMLWriter */, + ); + path = PicoKit; + sourceTree = ""; + }; + A6FE4711112EE3BC7280F9280BEB9761 /* Pods */ = { + isa = PBXGroup; + children = ( + E94F5ACFDE74455027776112477F2BB6 /* AeroGearHttp */, + 73F1FE7E86CE5EB92AE209D54671BCAF /* AeroGearOAuth2 */, + 2AEA15F60540B1D423D74B3A237E794C /* AFNetworking */, + CE8F9E62CC87D6100649919DABAAB521 /* Alamofire */, + 0A0612EF72AC2AB92D1FDE05D748714B /* Alamofire-SwiftyJSON */, + A52CD0F05E111D038AE0F3823BBDB923 /* Bolts */, + 7E770BE874214A92CECEFC31BDDC84C9 /* BSGridCollectionViewLayout */, + E9A70ED2AD89F57E3C04E750457BF475 /* BSImagePicker */, + 851E08BBE73E33520598809DF0769E7F /* FBSDKCoreKit */, + BFD2AA546181C489417C37EFBED3A5C3 /* FBSDKLoginKit */, + 65AEDAEFE046A6942729E3E8193B5AB7 /* FBSDKShareKit */, + 3A2200257E7CC63B84F4B53C17C52328 /* Firebase */, + 79CA9D6EB80C6A2B12F0999B3381B97C /* FirebaseAnalytics */, + C22CE60DD5EEC4D0410B6966AB741397 /* FirebaseAuth */, + 7E311918B2F9BDA3AFB0E1B60E6EE141 /* FirebaseDatabase */, + C762480FB77E6E088828F873F5863F7D /* FirebaseInstanceID */, + B3589E829E0E23D26E3A68B9A1C402C1 /* FirebaseStorage */, + 08E27163AC2565A04F3DAF72DD1949E7 /* GDataXML-HTML */, + 2D8CC0BEBC02303458C5F95CF79941BC /* GoogleInterchangeUtilities */, + 5F5DA892D45C3E3F7E73A067C130BF75 /* GoogleNetworkingUtilities */, + E7BCFD662016F269AB99438F5A924BD2 /* GoogleParsingUtilities */, + 3DEAABAA4328FF2D8B0511477AA80EC0 /* GoogleSymbolUtilities */, + 8A9528511EB91A680411348277F9404B /* GoogleUtilities */, + 1D998FC360E497FC0623DDBCA3B3D58D /* Locksmith */, + 0B63332F2C06215723740D87352A1B37 /* OAuthSwift */, + A61B6E1028EFDD5EF3D087E83C987E54 /* PicoKit */, + 92E54435F2489E6CFE86D553B52ED5A5 /* SwiftyJSON */, + 6CB8A372BE9AD1BBEC68B7DCD6EE3D18 /* SWRevealViewController */, + C99A481225AABE529B82F6B38F367F9C /* TYMActivityIndicatorView */, + 5771D549B9C8265CF01C9C7474D3D389 /* UIImageViewModeScaleAspect */, + ); + name = Pods; + sourceTree = ""; + }; + ACFBD72C3F7D37FA24A46FD3C65C7C82 /* Core */ = { + isa = PBXGroup; + children = ( + DB866DB9DE8C316714FABD3690C1FB6F /* PicoBindable.h */, + 986183AA529E912B1C2EC48417B8A8B1 /* PicoBindingSchema.h */, + 2811C81F012D28F9EE3BED52201D1727 /* PicoBindingSchema.m */, + BC243D2E1C4F2FC292C0E39E689B5F0D /* PicoBoolConverter.h */, + FCAA36A134D55C201B7C9F0B1FB78EE7 /* PicoBoolConverter.m */, + 552F8C6AFBDAC976539CCE95279EFB00 /* PicoCache.h */, + C76755FC326B96C91E3B9227D2F4AF6F /* PicoCache.m */, + 2364FFE484047028D0864C0A9C409AA8 /* PicoCacheEntry.h */, + 6A2FF495ACA841678ABF1B82FF9DF99B /* PicoCacheEntry.m */, + B10D7016FB6C94ABFB9F51BC7762EFC9 /* PicoClassSchema.h */, + 6365223D2EE04FC4D1CBF866F038B308 /* PicoClassSchema.m */, + EAE080E43FE64694DEB0DE294C12D829 /* PicoConfig.h */, + 03E21F8FBBB65AE846CC06CAC959D4D8 /* PicoConfig.m */, + 1EAE2D13588C432E6B57CBCD939C6B4B /* PicoConstants.h */, + 6985E24A3958AF81630E6675F2B49884 /* PicoConstants.m */, + 91C12F6034F46AAC8A4681C7FF33414B /* PicoConvertable.h */, + CBE72FEA2F43AED48946AFC19793F24B /* PicoConverter.h */, + 81098AB9B6F098FF1D8D11E982676637 /* PicoConverter.m */, + 05511F985C1A4179E3E9024B07BE3DCB /* PicoDataConverter.h */, + 3E18B060939A2A20AC35F497BB8D9F7C /* PicoDataConverter.m */, + BA3F89C1AD1AD2D15A12A3B25F5C0C9F /* PicoDateConverter.h */, + C4ECE6267F2839D6ACCA3EBEF29942E9 /* PicoDateConverter.m */, + 293280C88802CCE9D78CD1E4253F3654 /* PicoNumberConverter.h */, + BBD5681377B692D09F16AB0C9AC0EC4F /* PicoNumberConverter.m */, + 522C992A032A2E406FD63462F865D592 /* PicoPropertySchema.h */, + 5B6C01EF3CFD2A471E161F4785915A2C /* PicoPropertySchema.m */, + B5983DBD6749A5D349163E0E21E89AF8 /* PicoReadable.h */, + B2360067ED951454DC182114DED0A114 /* PicoStringConverter.h */, + 1D5C2FDDF0F88752AF5E4684ED9E4F0E /* PicoStringConverter.m */, + 0422CFF19F0CCFB878B807ABC01C7866 /* PicoWritable.h */, + 88F86ECA1EA6EDABB24AF66849570899 /* PicoXMLElement.h */, + 2022303C12E152EA7B44B53848940E1C /* PicoXMLElement.m */, + 22D7031B071EF194F113DD5232C9B52A /* PicoXMLReader.h */, + B2E2FF3863A99E97ACD3D94F345939F3 /* PicoXMLReader.m */, + E32563002394581385A3D32A16C7719A /* PicoXMLWriter.h */, + 77F245EC157687963EDF650BBC4784FC /* PicoXMLWriter.m */, + ); + name = Core; + sourceTree = ""; + }; + B3589E829E0E23D26E3A68B9A1C402C1 /* FirebaseStorage */ = { + isa = PBXGroup; + children = ( + 25025A34C3A70208BF165330E1A770BF /* Frameworks */, + ); + path = FirebaseStorage; + sourceTree = ""; + }; + B3CF272E5BBBFBE177CA800C7847274D /* Support Files */ = { + isa = PBXGroup; + children = ( + 201F21FDB9DC9CB6D20957853F7ABF70 /* BSGridCollectionViewLayout.modulemap */, + C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */, + A4AE7EFCD4DFD967F80F5E666FCB9282 /* BSGridCollectionViewLayout-dummy.m */, + DCC445491493492EC123D21A28983519 /* BSGridCollectionViewLayout-prefix.pch */, + 2D9F9416BF5E8231542F184A97B97CE3 /* BSGridCollectionViewLayout-umbrella.h */, + 8D55AAF03A70BC4FAA313B2B6542B17C /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/BSGridCollectionViewLayout"; + sourceTree = ""; + }; + B97741E982BC51B89EDB5E7EF1230915 /* Resources */ = { + isa = PBXGroup; + children = ( + CEE29DA5F3F709007178DB0D8ACD98ED /* add_photo.png */, + F74C14BEF6DB17CD8EF940C4A4EEAC0F /* add_photo@2x.png */, + 6064ECECE29155F4247517D0C00AF3A5 /* add_photo@3x.png */, + A7535F846CF37530222EBC3F982229D3 /* Albums.storyboard */, + 878672475429BDB481207467B7AAE1A6 /* AlbumTitleView.xib */, + C9D8FBD89835630122F2346C2E06C937 /* arrow_down@1x.png */, + 8A9747642FF9076856DC777306ADCBF2 /* arrow_down@2x.png */, + DA4F83C6113FDD8CDA96DA359763EB39 /* arrow_down@3x.png */, + 9B3CA22AEC305112AA84ABC1273EE1DE /* CameraCell.xib */, + E0E604595694E7875598C8C51087F04B /* PhotoCell.xib */, + ); + name = Resources; + sourceTree = ""; + }; + BA68F370EF4DEB8DCE046469A531757E /* Support Files */ = { + isa = PBXGroup; + children = ( + B51DB1ADE6D8BE96F14089F82828C510 /* GDataXML-HTML.modulemap */, + AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */, + C8A6D2E098F2375395A4B9BF4B9221D0 /* GDataXML-HTML-dummy.m */, + 093DAF379B09CB9CC8C2594730E6C861 /* GDataXML-HTML-prefix.pch */, + 2E0A612D1C153F05BE41C16F4462C893 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/GDataXML-HTML"; + sourceTree = ""; + }; + BFD2AA546181C489417C37EFBED3A5C3 /* FBSDKLoginKit */ = { + isa = PBXGroup; + children = ( + F1765ACC268C5E65419329269F216130 /* _FBSDKLoginRecoveryAttempter.h */, + B14E14A70D93E17D007755A845A6F035 /* _FBSDKLoginRecoveryAttempter.m */, + 2D88B095A3E16088F69F7946ABFEEB71 /* FBSDKLoginButton.h */, + 36135C08380EB61B7ED8884350600F98 /* FBSDKLoginButton.m */, + 784FB02CAF784BEDDCEA4B30A3ABF477 /* FBSDKLoginCompletion.h */, + A7D89B9EE45612459A887A379DB0C6C2 /* FBSDKLoginCompletion.m */, + 5D4ED8D0A31D91EFC609099F382FA31B /* FBSDKLoginCompletion+Internal.h */, + 976B4D03A9321B412230E9EF4529F3F8 /* FBSDKLoginConstants.h */, + 75B013B5CC469E61C3A5FCE922726DCD /* FBSDKLoginConstants.m */, + 6E1B51E195D0E8064960DF10B15B6ED4 /* FBSDKLoginError.h */, + DEA9834FAC9B8FF918BDD38196090F4B /* FBSDKLoginError.m */, + 94492FDA360876E5CDA95B99988E2B94 /* FBSDKLoginKit.h */, + 5FEAE5B025211278744F393C5B0C36EB /* FBSDKLoginKit+Internal.h */, + 6D4331801A35FEB709F666C93CD2F86E /* FBSDKLoginManager.h */, + EA9672FE60ACFA6FD39010D2AA9CF225 /* FBSDKLoginManager.m */, + DA8D2F518A8BABD6E589DCC7ABAAD2D2 /* FBSDKLoginManager+Internal.h */, + 9F027A34F37FC5B1E04DA0CDAEEA3F90 /* FBSDKLoginManagerLogger.h */, + B27C96616209DB1E8C988C7A289AFC29 /* FBSDKLoginManagerLogger.m */, + 75717B0EE6927EDD4C83D0DA97D0FAD0 /* FBSDKLoginManagerLoginResult.h */, + B9A9E24E48892C412B3EBB0DD83970EE /* FBSDKLoginManagerLoginResult.m */, + D620CA6670E89627877735C51B3F6CF3 /* FBSDKLoginManagerLoginResult+Internal.h */, + 61B7F40A3681BE0DE011323E347C40F0 /* FBSDKLoginTooltipView.h */, + 1ADAAE793D80602C9B4C2663F838B071 /* FBSDKLoginTooltipView.m */, + 93CB1CDBD0B28BB95D1442933494F779 /* FBSDKLoginUtility.h */, + 4632B5EF96567E5690D2872ED18DB524 /* FBSDKLoginUtility.m */, + F6FE5C7BF10EBAD6F29B4122869155BC /* FBSDKTooltipView.h */, + 082189F18A13ACF939C12C480EAE5E35 /* FBSDKTooltipView.m */, + 98CF92F5D08DBDC8EA7830F69F2FBE7A /* Support Files */, + ); + path = FBSDKLoginKit; + sourceTree = ""; + }; + C22CE60DD5EEC4D0410B6966AB741397 /* FirebaseAuth */ = { + isa = PBXGroup; + children = ( + 59A80EE8128BEB42174AF56238C330BE /* Frameworks */, + ); + path = FirebaseAuth; + sourceTree = ""; + }; + C2DA0322F2A0EE09E30294A1A431C4F5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 354093A3F49294E88E6A9D1C720D76CE /* Info.plist */, + E8FDBBD68A80D214BC46B5AE53D4F76F /* UIImageViewModeScaleAspect.modulemap */, + 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */, + 5AAA9FA721AC86560C982C18A31F3D91 /* UIImageViewModeScaleAspect-dummy.m */, + 827DF8A7D55FF991FBAE6D38BA69E49A /* UIImageViewModeScaleAspect-prefix.pch */, + AEECAD598F614CB0F93432ADB80E8005 /* UIImageViewModeScaleAspect-umbrella.h */, + ); + name = "Support Files"; + path = "../Target Support Files/UIImageViewModeScaleAspect"; + sourceTree = ""; + }; + C3F96170CB3C14E83628D013D268D271 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 339D24377EF92D935F881CD2DDBCE13B /* GoogleUtilities.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + C701E824A4DF7CBA99FE50E6EC127D1B /* Soap */ = { + isa = PBXGroup; + children = ( + C1118BB5F6DDA46AAAB877C937B1F35A /* PicoSOAPReader.h */, + 41E305ED98B2F8952D7CDA42A7ADFBE9 /* PicoSOAPReader.m */, + 7DEA5BCBA51E22D7D5ADBCA12734090C /* PicoSOAPWriter.h */, + F59560067A0BF43C1DC254FA93DF5B7F /* PicoSOAPWriter.m */, + 420AA687265F34C1B92A6D2B694EED54 /* SOAP11Body.h */, + F7C5F771D232A4C7C5491ADB514E62CB /* SOAP11Body.m */, + 3B6284E8F6E616899222D07D6E94CFA6 /* SOAP11Detail.h */, + D672054D42DA9801632183EF1C590B71 /* SOAP11Detail.m */, + 5E7CC12D5F3E06BF8E801CE52A7A74D4 /* SOAP11Envelope.h */, + 1B07AA5EBDF3A432722AEA054F7AE702 /* SOAP11Envelope.m */, + CB3AE43A409680DFB7DA272E5663295F /* SOAP11Fault.h */, + E7A090313974760BAFE6E711F781CABA /* SOAP11Fault.m */, + E229D8176F4CEC52ACE0B7DD090CD054 /* SOAP11Header.h */, + 8ECC5535112943F64CCB311287110ADB /* SOAP11Header.m */, + 09523AB3CD75B683590559B093F010C0 /* SOAP12Body.h */, + 34DBB921CD25DBE5E18FEF70FED44E53 /* SOAP12Body.m */, + F10E09F24A3B6BA2E4BD36FCBAB32383 /* SOAP12Detail.h */, + 2A4B59D684FDB8F3B584C240E622C58A /* SOAP12Detail.m */, + FC702CB7B4E400D11C8330D914F6641A /* SOAP12Envelope.h */, + B557F414AD4CD70507913B3D559F93EC /* SOAP12Envelope.m */, + D65C597C7BFEA9ACB22F9D23F518616A /* SOAP12Fault.h */, + 08E86A9CEAE1073F8EB06D095899EC8E /* SOAP12Fault.m */, + C738D0637CB939CB88A8E9B07D9B0F6E /* SOAP12Faultcode.h */, + 75DA66CAE047B220F692A33AB8BBA621 /* SOAP12Faultcode.m */, + 0FDF3E2A68787915419418623FAE5E4A /* SOAP12FaultcodeEnum.h */, + CAD1C7D4763119F0CC06ED45B5D6F786 /* SOAP12FaultcodeEnum.m */, + 09C5F06A3BDBC389FC4668700A485B26 /* SOAP12Faultreason.h */, + B15A73D687F9E0EB14350C64DA7534F3 /* SOAP12Faultreason.m */, + 65943526BB25489F3C16E16622D1E779 /* SOAP12Header.h */, + 943A6529529ECC1F684DA2A4FEB226B9 /* SOAP12Header.m */, + 17D5F633C3BA9C080CCE39DFDEC7F5F2 /* SOAP12NotUnderstoodType.h */, + 254A8C0C0E243EE779478F2BABD0F2F8 /* SOAP12NotUnderstoodType.m */, + 2EF43C2EA6C705C1E7948DBEF8197450 /* SOAP12Reasontext.h */, + 6A0FF05765511513470CC978B10207D2 /* SOAP12Reasontext.m */, + 3D6C6609F47675D67542BFBA691F142A /* SOAP12Subcode.h */, + 0CC5A36875AFC0238B595A727AA19879 /* SOAP12Subcode.m */, + F0E46430AB0156C611FF7A4E3D4882A8 /* SOAP12SupportedEnvType.h */, + 45183A70E1DF80AA4424A99EBDD072BD /* SOAP12SupportedEnvType.m */, + 268C0B06B14A4BCDE90E3F5E70B93A61 /* SOAP12UpgradeType.h */, + 0A478018630430D50CB7CF361E5AB164 /* SOAP12UpgradeType.m */, + ); + name = Soap; + sourceTree = ""; + }; + C762480FB77E6E088828F873F5863F7D /* FirebaseInstanceID */ = { + isa = PBXGroup; + children = ( + DA94C6591FD96A4B7462E306BF834C57 /* FIRInstanceID.h */, + 73100B1D781A7937E0B59F78422A2B69 /* Frameworks */, + ); + path = FirebaseInstanceID; + sourceTree = ""; + }; + C99A481225AABE529B82F6B38F367F9C /* TYMActivityIndicatorView */ = { + isa = PBXGroup; + children = ( + 480EAF767C67AE676AFEBA2B2C72DD95 /* TYMActivityIndicatorView.h */, + 657944D0882FE5E3659E6739B34E4AC3 /* TYMActivityIndicatorView.m */, + 79C1F66DDAB18BBA6634A8DCBD69EFC4 /* Resources */, + A4AF5BF99A081992C196CE67842D29BA /* Support Files */, + ); + path = TYMActivityIndicatorView; + sourceTree = ""; + }; + CE8F9E62CC87D6100649919DABAAB521 /* Alamofire */ = { + isa = PBXGroup; + children = ( + E1498D3AB8502D993842832DE34046C3 /* Alamofire.swift */, + EDB6A7A2286F25B59DDAD3B2E68D208A /* Download.swift */, + 02F16D93F7CBC4DDFC72FC03A0E42E82 /* Error.swift */, + 727549E62BD7A32551D9A4A495E77A99 /* Manager.swift */, + E8EAA1D518760505308ED46344A40B55 /* MultipartFormData.swift */, + 6EDB9D463C502DF5FFF6440CAC522213 /* NetworkReachabilityManager.swift */, + EDDEC727D8DAF0DA2BBFB591ED21B56F /* Notifications.swift */, + 295C05B50FFE2CCBBD4D128933A88FDF /* ParameterEncoding.swift */, + 547F0F61578EE093020B8127CFD6661D /* Request.swift */, + D0386A7DC808534C0548BC11C07B7B9A /* Response.swift */, + 5E83C4119367B3BB115800ABB3DFA47F /* ResponseSerialization.swift */, + A185AC5E050F21355385EA759FE5EEF1 /* Result.swift */, + 63D541600AB0BC0B46F7A0D8896AC894 /* ServerTrustPolicy.swift */, + 0FBD5B2058DE2B16BC3F1B5A7B04E40F /* Stream.swift */, + 0E9E12C665A69B68F3CF98C3E7E2289C /* Timeline.swift */, + 10A4E1C9F61C475D495D58BF2DD5AEFF /* Upload.swift */, + 1AAF3229A34E9C0D5C8019CC2A75EEA5 /* Validation.swift */, + 16327DEBBB47D0A98F35685FC3BEEB28 /* Support Files */, + ); + path = Alamofire; + sourceTree = ""; + }; + D2084E0C4E10BC98AE2ED31B1C232A39 /* UIKit */ = { + isa = PBXGroup; + children = ( + 3B67245E41A4AF1938E37858C3C72D44 /* AFNetworkActivityIndicatorManager.h */, + C40DAE14029892B289A8FE01392AA863 /* AFNetworkActivityIndicatorManager.m */, + DD70A3643DC0CEFD5CBE01C0B6705477 /* UIActivityIndicatorView+AFNetworking.h */, + 79CA30FE6F1DBFBF380140B5FB47263C /* UIActivityIndicatorView+AFNetworking.m */, + 2B2F7EBA8867723F12C25840D1E88243 /* UIAlertView+AFNetworking.h */, + D9DD479673E8B396F89A7DAA2143A711 /* UIAlertView+AFNetworking.m */, + E9300385F72720F6C95944F2CBADC1F7 /* UIButton+AFNetworking.h */, + C1656555CF10DA82E136D8067B87620E /* UIButton+AFNetworking.m */, + D0010F5E558D2E0DD1C452C881BBAA6F /* UIImage+AFNetworking.h */, + 144D5484885E6C90AB797898C08E7374 /* UIImageView+AFNetworking.h */, + 8FA186481586667CF25E85D337A85871 /* UIImageView+AFNetworking.m */, + CCE3A0AEEA51C049E1C8A8C2335A32D2 /* UIKit+AFNetworking.h */, + FA2374B3C414371278389E8BD50D6C01 /* UIProgressView+AFNetworking.h */, + 32DA793C1694801D6DD0DD16FED99266 /* UIProgressView+AFNetworking.m */, + 0131DEFA58ED7F61883CE8CCFC049AF1 /* UIRefreshControl+AFNetworking.h */, + 1864F630CE031BF44EDE61E5DF26ECCD /* UIRefreshControl+AFNetworking.m */, + 2C7D30E84A7446738D0FC06667D18A86 /* UIWebView+AFNetworking.h */, + 7D5C411FA498BF0C8663F9BA74B398FC /* UIWebView+AFNetworking.m */, + ); + name = UIKit; + sourceTree = ""; + }; + DBE93CBDEFD92C5A6B6946A42984901C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 830D7C28C7F7C7E68853BAAF9C67506C /* FirebaseAnalytics.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + E3E2E316480FD05ECD4A96928D606694 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4C24E9863E58DC41ED1E5B1C4A56C71E /* BSImagePicker.modulemap */, + DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */, + 92259F25DCE2BF1611B75E4F4840AB5D /* BSImagePicker-dummy.m */, + 023F4374BD9F7B4F8555090AA7A8267E /* BSImagePicker-prefix.pch */, + CD33485C1C502613F59CF52A0AF56C00 /* BSImagePicker-umbrella.h */, + 7B3D6B712BF9A7AE7667FCF079270313 /* Info.plist */, + 0EFE3877D6773C11887700B43A5A1BC2 /* ResourceBundle-BSImagePicker-Info.plist */, ); name = "Support Files"; path = "../Target Support Files/BSImagePicker"; sourceTree = ""; }; - ECFACD077B2A093918E8C39125BBE3E1 /* Pods-VendooTests */ = { + E7BCFD662016F269AB99438F5A924BD2 /* GoogleParsingUtilities */ = { isa = PBXGroup; children = ( - BD08F133D8EC15B232B755CA87C1AB19 /* Info.plist */, - BD4092841A2D1EC9A6FF671A4F262686 /* Pods-VendooTests.modulemap */, - FA1DE33E39EEFE744A0564A8962CE927 /* Pods-VendooTests-acknowledgements.markdown */, - 31813545634047A7300CC635B8702212 /* Pods-VendooTests-acknowledgements.plist */, - 4D58E7F41DDEFC4928A1F0F58E051454 /* Pods-VendooTests-dummy.m */, - 34C62CB96E29378165F15DB1ED09D979 /* Pods-VendooTests-frameworks.sh */, - 64BA55A22C314C1BD5CC9F82142B5206 /* Pods-VendooTests-resources.sh */, - 48A543CE70E5133398E8F1067F58D68C /* Pods-VendooTests-umbrella.h */, - 7DCCDFA1452F66D49B71C642EDD50406 /* Pods-VendooTests.debug.xcconfig */, - D6584D06226BBE65D2C1B72854FAA452 /* Pods-VendooTests.release.xcconfig */, + 510A9C803CFB7C0B43B0AFDFEEE5E690 /* Frameworks */, ); - name = "Pods-VendooTests"; - path = "Target Support Files/Pods-VendooTests"; + path = GoogleParsingUtilities; sourceTree = ""; }; - F0CA32CF6FA3CEBBE4407B68602484FD /* Support Files */ = { + E94F5ACFDE74455027776112477F2BB6 /* AeroGearHttp */ = { isa = PBXGroup; children = ( - F5B38B4489E917061220B9496DBA064D /* Info.plist */, - EF4FCEE736A138EC69B469FE4F71743E /* SwiftyJSON.modulemap */, - 37DE2AA900EAF5881EB44BC3861C4B06 /* SwiftyJSON.xcconfig */, - 10EFD9326532CBF3A652E975458D4CA2 /* SwiftyJSON-dummy.m */, - A6B2A4F3EAFF983D30AB9D9BE14DCA09 /* SwiftyJSON-prefix.pch */, - 1A6C70240235B773AB077A864465CAB7 /* SwiftyJSON-umbrella.h */, + 63537DDFAEFE1F2749F7CB8138DE2F98 /* AuthzModule.swift */, + C403253C46C7A568F5503C1533E1A6DD /* Http.swift */, + 095E0A3472702B8830A756EDD556D632 /* HttpRequestSerializer.swift */, + CAF4FEBFDAA5E7131CB46C2415B06035 /* JsonRequestSerializer.swift */, + AABACEDD73398DA40B1435947C6ABC59 /* JsonResponseSerializer.swift */, + A70771279652CFA5CE255D71FEEF81F8 /* MultiPartData.swift */, + 3D7AFF33D7BD46B127501BFA1A1F3FCF /* RequestSerializer.swift */, + 4B6A56C3289C34F84A3243B0C29EFF86 /* ResponseSerializer.swift */, + 991BCEC0B65FED6B7FD2C418B7F2462E /* StringResponseSerializer.swift */, + 476CC038C9ACA70BB8A6166B222BCAD4 /* Utils.swift */, + 96945DDB31DDA27C2E4F23A8091D9B49 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/SwiftyJSON"; + path = AeroGearHttp; sourceTree = ""; }; - F1168DCC5700500D569FA08003E13827 /* Resources */ = { + E9A70ED2AD89F57E3C04E750457BF475 /* BSImagePicker */ = { isa = PBXGroup; children = ( - 0E70F017E5CF0CFA3D444BCEB3CACF58 /* add_photo.png */, - A752183093FFB2DEA5ADF6FEB2B34F85 /* add_photo@2x.png */, - 5CF391926CFB207F583FD6914621B8F3 /* add_photo@3x.png */, - CDC250023FB068DF3790C6FE60C27D7B /* Albums.storyboard */, - 5D4248B4248F09B04B1A091EDD65C941 /* AlbumTitleView.xib */, - 6AE20D4830FE4654C5D7177640373842 /* arrow_down@1x.png */, - BD76C21B5681D2A0A6E9FC0BCB016F64 /* arrow_down@2x.png */, - 2445A04A9C256BB3BD64868C9AC215B8 /* arrow_down@3x.png */, - 1BA542913C8A03B351A37D8EE0EA551C /* CameraCell.xib */, - 039C05F9C3BCBC8D702D0047CD702FEC /* PhotoCell.xib */, + 1B2C68E220839E29E6A84EBF102579FF /* AlbumCell.swift */, + BE89C747E695A6E4A2EA0E44966C2F7A /* AlbumsViewController.swift */, + D80E1C76A1D754C95364D1348D4C126D /* AlbumTableViewDataSource.swift */, + A9142058C7DCDCDF7FDA0BE52E8088C1 /* AlbumTitleView.swift */, + 1DEE2A1DC3205A63F646221427149EBC /* BSImagePickerSettings.swift */, + 5BEBBBF889045CD3EC3B7CDA99BC6C5C /* BSImagePickerViewController.swift */, + 4F48974850CDE3FAA87DE439C405E05D /* CameraCell.swift */, + 7C1B1BEC31288186EE8561AA7F71966C /* CameraCollectionViewDataSource.swift */, + DE82249BC48423C663A690EFFF728AA0 /* ComposedCollectionViewDataSource.swift */, + 012FC612A0C3FCDAB9DA9A4656CA3831 /* NSIndexSet+NSIndexPath.swift */, + 7AE0BBD7A0874B2672F5EC0AF4575B96 /* PhotoCell.swift */, + 487DE7F49F11B7D2AC55EA1944166AAF /* PhotoCollectionViewDataSource.swift */, + BB0BA77DCD3D63BB0322E2C78E4B8CA8 /* PhotosViewController.swift */, + FD9887BB7AC33622204D53639F7A1E17 /* PreviewViewController.swift */, + 58D9D0DA1ACDA3CDC1B76D9B740A1879 /* SelectionView.swift */, + 86C571A7C6CCB47DE0E45FFB6EBAFDAE /* Settings.swift */, + AD7F5C2E34CDB1EC74E0074099A8FF35 /* UIButton+NoAnimation.swift */, + 962CFAA54B4E9B6B2FAF786E86978FA7 /* UIViewController+BSImagePicker.swift */, + E3CE70F7EC79F8127B634681942B5E63 /* ZoomAnimator.swift */, + B97741E982BC51B89EDB5E7EF1230915 /* Resources */, + E3E2E316480FD05ECD4A96928D606694 /* Support Files */, ); - name = Resources; + path = BSImagePicker; sourceTree = ""; }; - F826E9FF215374026A2CF0A967CFFCD6 /* GoogleUtilities */ = { + F2A9C0177A485A9E6672EFB3141567E7 /* Pods-Vendoo-VendooTests */ = { isa = PBXGroup; children = ( - ABE34226E332DF745FE8334DBB867686 /* Frameworks */, + 52EB8E3A82853C0FBFC87CD6A335C47C /* Info.plist */, + B7B9928637FB4C7E9C4BE6F767CB5100 /* Pods-Vendoo-VendooTests.modulemap */, + 1195C4D4C4A323222EE46F4260672DC0 /* Pods-Vendoo-VendooTests-acknowledgements.markdown */, + 9B2D1E1EF672E5EE33B5D29EE3A0B867 /* Pods-Vendoo-VendooTests-acknowledgements.plist */, + 5B7F2F67EFB8A8B31FE8ED6A9104C3B0 /* Pods-Vendoo-VendooTests-dummy.m */, + 851DEBFE4286CC4586850D01A4791BC4 /* Pods-Vendoo-VendooTests-frameworks.sh */, + 6D711B5958F2624711CB342A5BBA5D17 /* Pods-Vendoo-VendooTests-resources.sh */, + E48063F76B420F3E35DAD13047D42C79 /* Pods-Vendoo-VendooTests-umbrella.h */, + 3D39DD62BD3344215867E4F6A59AFE01 /* Pods-Vendoo-VendooTests.debug.xcconfig */, + E178194C369B2D90EE7A9C838F1F3975 /* Pods-Vendoo-VendooTests.release.xcconfig */, ); - path = GoogleUtilities; + name = "Pods-Vendoo-VendooTests"; + path = "Target Support Files/Pods-Vendoo-VendooTests"; + sourceTree = ""; + }; + F37DEDD58D36362EC24A2D9E23A2052C /* Pods-Vendoo-VendooUITests */ = { + isa = PBXGroup; + children = ( + BFBF5E700A405FF727B768A4BA98846D /* Info.plist */, + 259D5CF25D587FDE7125A75DCD68A3D6 /* Pods-Vendoo-VendooUITests.modulemap */, + 188D44008D91F312115987B46D6CF552 /* Pods-Vendoo-VendooUITests-acknowledgements.markdown */, + 81D2A412E76804FC3F7D718F35862618 /* Pods-Vendoo-VendooUITests-acknowledgements.plist */, + 0A8A9F7077071AC139E54B95C669CBE2 /* Pods-Vendoo-VendooUITests-dummy.m */, + 9BAE61FD5950C3821410D0B7B20BC95F /* Pods-Vendoo-VendooUITests-frameworks.sh */, + B317DD89809B9FB54FE54A0A42095D10 /* Pods-Vendoo-VendooUITests-resources.sh */, + F360CE6486A747945443BA0C06AC2C99 /* Pods-Vendoo-VendooUITests-umbrella.h */, + 5255B7F22C5FA05618744F0C036E41B9 /* Pods-Vendoo-VendooUITests.debug.xcconfig */, + 8C7124C17B0E1F3CD45549F473D588E0 /* Pods-Vendoo-VendooUITests.release.xcconfig */, + ); + name = "Pods-Vendoo-VendooUITests"; + path = "Target Support Files/Pods-Vendoo-VendooUITests"; + sourceTree = ""; + }; + F585CC511838E9673860926B85847598 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 0F86076203C80A8776F3B111E5826203 /* Pods-Vendoo */, + F2A9C0177A485A9E6672EFB3141567E7 /* Pods-Vendoo-VendooTests */, + F37DEDD58D36362EC24A2D9E23A2052C /* Pods-Vendoo-VendooUITests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + FB95D8909D87C076DC9CABBD0833E70D /* XMLWriter */ = { + isa = PBXGroup; + children = ( + 6F43B1645F9281E3893D341A6889B613 /* XMLWriter.h */, + DAB1B89813CDD043CC410F5DFE0A6452 /* XMLWriter.m */, + ); + name = XMLWriter; sourceTree = ""; }; /* End PBXGroup section */ @@ -2586,20 +3681,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4F9C93C9FDCFE36B496EFFD2055C6D9C /* Headers */ = { + 56CB78EF78ADF2E03A1B2E479123B689 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9F6583620EA28E354C4A4F5891E087FA /* Pods-VendooUITests-umbrella.h in Headers */, + 79F94D1ECF73B695F68BBBF32E3FECDA /* TYMActivityIndicatorView-umbrella.h in Headers */, + F6163445CF35DF3EB671996F08D78344 /* TYMActivityIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A4E2814412DF492FBA3EAB8656DA208 /* Headers */ = { + 5BB87E2E65E7C2366E935A0A8903263E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A85A43FC997D389D0F634DAC33DC4D7A /* TYMActivityIndicatorView-umbrella.h in Headers */, - 4A538EABA423805871FA5434EDA89D9C /* TYMActivityIndicatorView.h in Headers */, + 2F8DC41254534116CBADC7701C24B7EA /* SWRevealViewController-umbrella.h in Headers */, + 811303DF3449C2B3B67CE2B601C0ACD0 /* SWRevealViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2640,11 +3736,125 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A921CF375FF53123C3D7628E0425175A /* Headers */ = { + 7AFA7DCE60377EB03504CFC4E62CF37C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 101C7F4C186E883172ABF5F6E3E1F7FF /* Pods-VendooTests-umbrella.h in Headers */, + 34BFAC18A269D413F0C10F40601D4095 /* AeroGearHttp-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7E65460631719E3179E60CFAF1DE4335 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + CA7846F048F40D61DD3100BA17B5C26C /* Pods-Vendoo-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 831A394A8E65A9E6E9A9F8D8E435E029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 08AFAB53FBB4A259D10CB27EC5CFE83E /* GDataXMLNode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 95EE69169CC28F281F0B27A490BDB19D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6B091151AE965C9F5462FDD25CB5551B /* Pods-Vendoo-VendooUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97F156524ABB48DC5541C69CE6309A33 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + CAC55489C107050F90C74EC7E0618EDB /* OrderedDictionary.h in Headers */, + BB938660E9F573C5569C0B2F76443DCE /* PicoBindable.h in Headers */, + 4CA2747F836DF4225DB2BBBF3C9857E9 /* PicoBindingSchema.h in Headers */, + 9F311BFDD71F019984158BF9906299F2 /* PicoBoolConverter.h in Headers */, + 8357FE41949BE1FCF43C1D2879DB6A29 /* PicoCache.h in Headers */, + 3723F9F27EC35F88F58EA3BF27AC7338 /* PicoCacheEntry.h in Headers */, + 4C8A700F201D817E06260539577C0778 /* PicoClassSchema.h in Headers */, + 1C384C9C00881F5B98D441807AA11D67 /* PicoConfig.h in Headers */, + 8C874B306AE5A045C9B7FD91B2CC8D31 /* PicoConstants.h in Headers */, + 1CE5848A3307E495D6DFD6390CCB886E /* PicoConvertable.h in Headers */, + 8B01AE7A2B6926117AF7AA7F921DB708 /* PicoConverter.h in Headers */, + 9B209880BF6C678EBB9FE3B5E1AFED77 /* PicoDataConverter.h in Headers */, + 42643BE23BCFC5EB0F4E7ED31768B68A /* PicoDateConverter.h in Headers */, + B237CE69F2373005B527EFF9204AA06B /* PicoKit-umbrella.h in Headers */, + F96355379B033320F4514495D1B81128 /* PicoNumberConverter.h in Headers */, + C2B409E16419D1783D04BA380DCBDDF5 /* PicoPropertySchema.h in Headers */, + DB1AEDB35C8A2BCE2A7C466A5EBE874D /* PicoReadable.h in Headers */, + 2F37D130B5D76485C1A990F248DC8354 /* PicoSOAPClient.h in Headers */, + 8BB5E13770325286C85E5205E0966FD7 /* PicoSOAPReader.h in Headers */, + E3998CCC046A80C9211440749CA6FA1F /* PicoSOAPRequestOperation.h in Headers */, + 911E724303BA23E8A474DD386FAC9C2B /* PicoSOAPWriter.h in Headers */, + 356C94C2276AD2EFDC966E226C8BB5F4 /* PicoStringConverter.h in Headers */, + 7A58F060AC2558071BD5B0B15AE596C6 /* PicoWritable.h in Headers */, + CE2528225E7F88C8FB7A0C48448B72E6 /* PicoXMLClient.h in Headers */, + A6245406942E1B12CA6B3037098E854F /* PicoXMLElement.h in Headers */, + 639F646ABB9A9E4D3666B6CDD155BDBD /* PicoXMLReader.h in Headers */, + 575E7CB2D6DE03AA64E69683F9FA9D0B /* PicoXMLRequestOperation.h in Headers */, + 3ABF5C6E772B5706FEC84D0F880E9061 /* PicoXMLWriter.h in Headers */, + 35053BA799D569D42234202DCE2DB786 /* SOAP11Body.h in Headers */, + 0D94C1A9F08091042D4566C5C7C5F88C /* SOAP11Detail.h in Headers */, + 9BA81C3A00FBFB0269E1F502C7CA7111 /* SOAP11Envelope.h in Headers */, + 1584E5A5BBCA3AA6E1ECD1E2C95D9830 /* SOAP11Fault.h in Headers */, + 3853FC6B534F1D3B97A5038666B97DA3 /* SOAP11Header.h in Headers */, + A2F0870136D90D9CE7905634CBEC46C2 /* SOAP12Body.h in Headers */, + 956CD88D16E0E4A464C3B382FAEEBFAD /* SOAP12Detail.h in Headers */, + F11BC473EEC07CA5407557FEED884280 /* SOAP12Envelope.h in Headers */, + 3AC3D4A319B72CA8EC9EE10DE609BF97 /* SOAP12Fault.h in Headers */, + 36F127350534946859EEB412AFAA0702 /* SOAP12Faultcode.h in Headers */, + 6C0346EF4F131C59680FB8DA3200AE1F /* SOAP12FaultcodeEnum.h in Headers */, + 4433527C657120BBB1978008CABDB7B3 /* SOAP12Faultreason.h in Headers */, + 4C49A4B4D6FB7CBBA27B18F0E001AE18 /* SOAP12Header.h in Headers */, + 17CBE972A85353EEC58B6CC0DBA34648 /* SOAP12NotUnderstoodType.h in Headers */, + AA3B76EE5D2EDCFC6BBC162662C9AB3F /* SOAP12Reasontext.h in Headers */, + B13DC7A0E6506DF7327E2AABA60FAE4F /* SOAP12Subcode.h in Headers */, + 71A7E055D787374AA8F2EC002811AED3 /* SOAP12SupportedEnvType.h in Headers */, + 9008E52F56E5C0AE4CC4747B573D404C /* SOAP12UpgradeType.h in Headers */, + 2E4CAFABE35B8FC728822895A3A7581C /* XMLWriter.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9C80F38D01CF08B0F39839F63560CCB2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 290353FFD70C6FED0E88244849792541 /* AFHTTPRequestOperation.h in Headers */, + 4126FC06B09C1514C4623BEF344EEDF2 /* AFHTTPRequestOperationManager.h in Headers */, + 43BC8D2611C04A47C0BE9FFB228E07A5 /* AFHTTPSessionManager.h in Headers */, + F2E9945B7494E20ED7DC4720A2B8CDC9 /* AFNetworkActivityIndicatorManager.h in Headers */, + 34BEE08ED8F8B9B3B939D4D732CFBEFE /* AFNetworking-umbrella.h in Headers */, + 96247D22CC837A06A450BB49F1D2F79E /* AFNetworking.h in Headers */, + 4F093F6FBA6E6B060CF66145CF214E14 /* AFNetworkReachabilityManager.h in Headers */, + 68F25493DF29423FEA798D2247A6C918 /* AFSecurityPolicy.h in Headers */, + 6FDE95FB21B7F5E1EC7A9F49489DAC62 /* AFURLConnectionOperation.h in Headers */, + D7C1594DC6A0E38E33E8971C288A9F82 /* AFURLRequestSerialization.h in Headers */, + 76C1FA68EFCD242119622AE2CEB4D24F /* AFURLResponseSerialization.h in Headers */, + DFC29AA19504EF95C8902348017273A8 /* AFURLSessionManager.h in Headers */, + 56C8D4F00869E61F210A24E0EE8F3A13 /* UIActivityIndicatorView+AFNetworking.h in Headers */, + CEDFE191DF66B8884828359B3494F8E9 /* UIAlertView+AFNetworking.h in Headers */, + 401C2DDD1436B4AD6B3A43D775389EA4 /* UIButton+AFNetworking.h in Headers */, + 76C72D9FA8C86EBBC7E3E4AF7F0B4BB5 /* UIImage+AFNetworking.h in Headers */, + 9E795055729E8F398250A5687BB00AE2 /* UIImageView+AFNetworking.h in Headers */, + C70AC3CB2D21E9466D55F37D6167DBA5 /* UIKit+AFNetworking.h in Headers */, + 7999F436677B92F6DDA1C3D45B67762F /* UIProgressView+AFNetworking.h in Headers */, + B42A49260E02658534FF92164B6FC311 /* UIRefreshControl+AFNetworking.h in Headers */, + 32BE0FB08D9ECD2974197D862E320E36 /* UIWebView+AFNetworking.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C2E9D2DD4DD231C6D48F80FE33A92698 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 25437F3A03168A7FF5A5F5864F0DA732 /* AeroGearOAuth2-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2707,6 +3917,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C981338E4789367705C6CD5F204C7C7F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 760438A92935D95218DB06E2E51ADA11 /* Pods-Vendoo-VendooTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CCE611FF59203C57951C5EA18DC90FC9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2715,14 +3933,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D2AF905A0E89F48852C4988E156810F8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F25201F062BFBC0F8287681C1C60472E /* Pods-Vendoo-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; EFDF3B631BBB965A372347705CA14854 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2740,18 +3950,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FCB8EB7A6CBD57001593E609C20FD6AC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0C153B7AC6B54E7BC47F6C1F02F97703 /* SWRevealViewController-umbrella.h in Headers */, - 6E5FF658A31E46A6FEBD04A1D1D89608 /* SWRevealViewController.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ + 0D52FE07CEB8B5458F3C73BB37A484FB /* SWRevealViewController */ = { + isa = PBXNativeTarget; + buildConfigurationList = E3CF142449AE910A4F17FC537FC26C6A /* Build configuration list for PBXNativeTarget "SWRevealViewController" */; + buildPhases = ( + DE1FDB78D374B01B803026B54B8097D6 /* Sources */, + 70CDA343BB312ACD5681F677DF2266FB /* Frameworks */, + 5BB87E2E65E7C2366E935A0A8903263E /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SWRevealViewController; + productName = SWRevealViewController; + productReference = 49B6B3AA873F4F4971FAAFC663B2E729 /* SWRevealViewController.framework */; + productType = "com.apple.product-type.framework"; + }; 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */ = { isa = PBXNativeTarget; buildConfigurationList = 7F53C29A72B6CC355FE4F6B52F98F774 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */; @@ -2767,7 +3985,7 @@ ); name = FBSDKCoreKit; productName = FBSDKCoreKit; - productReference = 1B9C980B413AF0E3F9E186379A2FD391 /* FBSDKCoreKit.framework */; + productReference = 3E761E000A87CDA00D2C3CB849EF5842 /* FBSDKCoreKit.framework */; productType = "com.apple.product-type.framework"; }; 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */ = { @@ -2784,25 +4002,62 @@ ); name = UIImageViewModeScaleAspect; productName = UIImageViewModeScaleAspect; - productReference = 2A2D2B645208072C2D8DFFD1C8D5734B /* UIImageViewModeScaleAspect.framework */; + productReference = E2D7A400CB4341C8290E8D4301ED9DBB /* UIImageViewModeScaleAspect.framework */; productType = "com.apple.product-type.framework"; }; - 2CCDCB2693626E9850F1E6B594D41754 /* TYMActivityIndicatorView */ = { + 21020CCDF572876803FA95BD48270386 /* Pods-Vendoo-VendooTests */ = { isa = PBXNativeTarget; - buildConfigurationList = ED771512D55A8281BFF8515F8C14C8E4 /* Build configuration list for PBXNativeTarget "TYMActivityIndicatorView" */; + buildConfigurationList = E5EC02A2108814137A0A3AF049261295 /* Build configuration list for PBXNativeTarget "Pods-Vendoo-VendooTests" */; buildPhases = ( - DDA7805040EF934A96EA3171744ED838 /* Sources */, - 73B2836AECEE3AF241B179F18A2F7CAA /* Frameworks */, - 6A4E2814412DF492FBA3EAB8656DA208 /* Headers */, - 72FDE398FA53029EA78FBD9684F1E214 /* Resources */, + 36DF42BD6E22493A19ED2F70A4C8D474 /* Sources */, + 5F18E4A411E091B87ADDE4BE398609A6 /* Frameworks */, + C981338E4789367705C6CD5F204C7C7F /* Headers */, ); buildRules = ( ); dependencies = ( + 84B095CBBFC68A656E23BEF02B03CF70 /* PBXTargetDependency */, + 3FC72D348981C0830C684B9C572E02F8 /* PBXTargetDependency */, + B856B8A5B91B44CD84038E8195FFD247 /* PBXTargetDependency */, + 4AD784C8D980750A2CB7E95896290010 /* PBXTargetDependency */, + C39D43F03F1411E89502B587B1865A33 /* PBXTargetDependency */, + B773C3612D7AF133BF82D57F6FC47068 /* PBXTargetDependency */, + FA95A1D7BB5FE8133DB1FA64BAB7CBC1 /* PBXTargetDependency */, + AD11165812BA6AA4ACEE70AD0BD6C61B /* PBXTargetDependency */, + 428C982B583847EB13F72DF45910CABB /* PBXTargetDependency */, + 345E0487028FB4D82EAF0FC5662B896B /* PBXTargetDependency */, + 522E6EB7CECCBCF3F38CFB5A76AEAADF /* PBXTargetDependency */, + EE33EB4676361F296C437CCF3B7847CB /* PBXTargetDependency */, + 4256BBDD507F4DE40DCCE146E845A710 /* PBXTargetDependency */, + 97D32DB23AC912C9D69A6038A7B5C898 /* PBXTargetDependency */, + 78A900EB389852F8263CBF79D6EB87E5 /* PBXTargetDependency */, + A10E65ED5829CD944029E3D86AA54B93 /* PBXTargetDependency */, + C48887691B1F74F82FA217F84A67BBD2 /* PBXTargetDependency */, + 0F7A35827C8E05655054B223DE6690FA /* PBXTargetDependency */, + 072755C69F34A8401FDDF78BE8391D09 /* PBXTargetDependency */, ); - name = TYMActivityIndicatorView; - productName = TYMActivityIndicatorView; - productReference = B9253D261519F463CAFDB4CD54513A8F /* TYMActivityIndicatorView.framework */; + name = "Pods-Vendoo-VendooTests"; + productName = "Pods-Vendoo-VendooTests"; + productReference = 64F849AB0C6D915F04D9363C0EB073CB /* Pods_Vendoo_VendooTests.framework */; + productType = "com.apple.product-type.framework"; + }; + 2AA2F4091B94E46EEE3AD6055CB49C7D /* PicoKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = 79337184FF0B6E518A3D52AD898F75CA /* Build configuration list for PBXNativeTarget "PicoKit" */; + buildPhases = ( + F30792D6744303FE669254A1A58D7E51 /* Sources */, + E76F4132D285A646A31227F89B6D60B5 /* Frameworks */, + 97F156524ABB48DC5541C69CE6309A33 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 7BF9371A4B5C78FAC1DDF181C60756EA /* PBXTargetDependency */, + 96F9D93D733BC5D8D8C686670AC2BDC1 /* PBXTargetDependency */, + ); + name = PicoKit; + productName = PicoKit; + productReference = D97527C094DC8D0AE452F5F42CB83BC4 /* PicoKit.framework */; productType = "com.apple.product-type.framework"; }; 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */ = { @@ -2821,38 +4076,42 @@ ); name = FBSDKShareKit; productName = FBSDKShareKit; - productReference = AC9CD4F004FF533C025FB4E737A3F025 /* FBSDKShareKit.framework */; + productReference = 3738A2FF8F7328CA11038CA2E0550FDB /* FBSDKShareKit.framework */; productType = "com.apple.product-type.framework"; }; - 3E1FC1FAA9613EB47901BE2F8E9758AA /* Pods-Vendoo */ = { + 31CABCBBC4853F0A3523D99FE6D41F17 /* TYMActivityIndicatorView */ = { isa = PBXNativeTarget; - buildConfigurationList = 962C27742B42661BF9BD0D34A2B12EAA /* Build configuration list for PBXNativeTarget "Pods-Vendoo" */; + buildConfigurationList = 5C8B6420BE123C383090EBA9FE223DEE /* Build configuration list for PBXNativeTarget "TYMActivityIndicatorView" */; buildPhases = ( - A91E35442DD00BB84D7AC6CBF12A5A0A /* Sources */, - 9B9C6C9CA912EF2660D7F5236BAD6059 /* Frameworks */, - D2AF905A0E89F48852C4988E156810F8 /* Headers */, + 6E86FEC0035AB46FF57CFFD0FDCEEC92 /* Sources */, + 93A4D91EC2C81BAAD49104AA0CDE1B1D /* Frameworks */, + 56CB78EF78ADF2E03A1B2E479123B689 /* Headers */, + A4059B06ADEA118479C3F16BBB829D14 /* Resources */, ); buildRules = ( ); dependencies = ( - F7A83627538E89E9ED5CA828D67C20D6 /* PBXTargetDependency */, - B6FFA132C61390BEADCC70E831C9E522 /* PBXTargetDependency */, - A67121242E16E7D4A18D5DFEB3F9D100 /* PBXTargetDependency */, - 5FDC706F40086C6545004EAA711A3F76 /* PBXTargetDependency */, - A5E30D5D0D510BA7FF65E8E7B32A70DB /* PBXTargetDependency */, - 4EB4FC723B25F65ED35AD5CB1EDCE2BB /* PBXTargetDependency */, - EE79D92B1E8697AEADE6F33BE7A63023 /* PBXTargetDependency */, - 0A1FDC517012B13A4E431EE83D7E85D8 /* PBXTargetDependency */, - 65A2D7177DEC012ADAA90417A9D2722C /* PBXTargetDependency */, - 1D275F6EDC406B518C4A280A9978A89C /* PBXTargetDependency */, - 5C06060E0E379F66CF71889DF0F53565 /* PBXTargetDependency */, - 023053AD9CA45DE70DE2244DF12274F5 /* PBXTargetDependency */, - E45E6A0E538DB547761F0F2E2E614763 /* PBXTargetDependency */, - 8D1BFEFEFEB3F8159AA49E652C0B0E75 /* PBXTargetDependency */, ); - name = "Pods-Vendoo"; - productName = "Pods-Vendoo"; - productReference = 8E0BA22D04666FB9DDE0C4885B0444B1 /* Pods_Vendoo.framework */; + name = TYMActivityIndicatorView; + productName = TYMActivityIndicatorView; + productReference = AB0620F3D4C46CD8189B8495F8F05288 /* TYMActivityIndicatorView.framework */; + productType = "com.apple.product-type.framework"; + }; + 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */ = { + isa = PBXNativeTarget; + buildConfigurationList = 7CD1D01AF31766606955AA9F3C4BEEF1 /* Build configuration list for PBXNativeTarget "GDataXML-HTML" */; + buildPhases = ( + EB312E9FB81ED0D88421FD8CC3F35CC1 /* Sources */, + 13A554C835EB17F2E911CD6C5278EE01 /* Frameworks */, + 831A394A8E65A9E6E9A9F8D8E435E029 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "GDataXML-HTML"; + productName = "GDataXML-HTML"; + productReference = 5005A8699C453626503502CFA2E8301E /* GDataXML_HTML.framework */; productType = "com.apple.product-type.framework"; }; 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */ = { @@ -2869,7 +4128,60 @@ ); name = OAuthSwift; productName = OAuthSwift; - productReference = 1C158E27C24A605F4302621C79D582AF /* OAuthSwift.framework */; + productReference = 5767233EA7637354C8E61061C9409DBB /* OAuthSwift.framework */; + productType = "com.apple.product-type.framework"; + }; + 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */ = { + isa = PBXNativeTarget; + buildConfigurationList = DCFA04D9F87841983F47B020C3F295D0 /* Build configuration list for PBXNativeTarget "AFNetworking" */; + buildPhases = ( + D368A0D8E440ED2393A424F47A6C5549 /* Sources */, + 60C3D26E2C8843CA90222B621C57A0DA /* Frameworks */, + 9C80F38D01CF08B0F39839F63560CCB2 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = AFNetworking; + productName = AFNetworking; + productReference = E67B7295241B586BE9B4D6D6FAF28583 /* AFNetworking.framework */; + productType = "com.apple.product-type.framework"; + }; + 66B6577A34875C54541830039899A97A /* Pods-Vendoo-VendooUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = C5969A229B25A7B7998DEBA26757DB68 /* Build configuration list for PBXNativeTarget "Pods-Vendoo-VendooUITests" */; + buildPhases = ( + 7DC60209E803E3B7EC99857C9FB72C15 /* Sources */, + F583AF500829E8383DB5FDD6E6AAD956 /* Frameworks */, + 95EE69169CC28F281F0B27A490BDB19D /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + DDF6F17FBF1531D8F5DB8DC8A6FCA202 /* PBXTargetDependency */, + 6DE66EC076737D6A3AA88D69E176F8CA /* PBXTargetDependency */, + 8D0AD1920A5FE2EF673D3CE3A4BB6846 /* PBXTargetDependency */, + 5953BE2BC5212C3C5357B2CF230DE471 /* PBXTargetDependency */, + 6D703A868103C0030E47D53437291682 /* PBXTargetDependency */, + 8CB80CCD491BF631ECE1DD59F32A4308 /* PBXTargetDependency */, + 83250583F9DC4369964C061E1E800F51 /* PBXTargetDependency */, + F31C0AD1015393B7A2236431E297477F /* PBXTargetDependency */, + 665BF41340C0024822CC1975AD0DAAB2 /* PBXTargetDependency */, + 16BCEAF1BD7AA4C917110D62D9647083 /* PBXTargetDependency */, + 8F68883811243EEC4FDCE7A77BEB4002 /* PBXTargetDependency */, + 6C3D35EF14EC597CE4AD081F4087FE11 /* PBXTargetDependency */, + F6D51C3D22CF9C90FEDCCBD3D22375EE /* PBXTargetDependency */, + 0970CC487F8307E37FC23ADEC83BFDEC /* PBXTargetDependency */, + CD597A91A17E5142D5853E74F8585A0B /* PBXTargetDependency */, + FBE840243215C0D390262B4D543D60CC /* PBXTargetDependency */, + 4E806B1F85F6DB60C16DEF9C749F53B2 /* PBXTargetDependency */, + F1A3E2C805DC34ED3C7CA50DDFC05418 /* PBXTargetDependency */, + 4BF6765923DB09D448A522A69C6DF8BD /* PBXTargetDependency */, + ); + name = "Pods-Vendoo-VendooUITests"; + productName = "Pods-Vendoo-VendooUITests"; + productReference = 0B5E34F5C87CFA9E2E41449FFC06ACE1 /* Pods_Vendoo_VendooUITests.framework */; productType = "com.apple.product-type.framework"; }; 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */ = { @@ -2888,24 +4200,7 @@ ); name = "Alamofire-SwiftyJSON"; productName = "Alamofire-SwiftyJSON"; - productReference = 8E70857388786A651E3CF481AB2FFF10 /* Alamofire_SwiftyJSON.framework */; - productType = "com.apple.product-type.framework"; - }; - 6E4E0004FD7A714EF2D64F6414B97661 /* Pods-VendooTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = C023253E8CF8BEE6EFFE47B471AD1F09 /* Build configuration list for PBXNativeTarget "Pods-VendooTests" */; - buildPhases = ( - 8CCD2D17E7D79527A9AF979072F68AF3 /* Sources */, - E709984F33EBB676FADBDCF970806D02 /* Frameworks */, - A921CF375FF53123C3D7628E0425175A /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-VendooTests"; - productName = "Pods-VendooTests"; - productReference = C2763D30AE4336F601544511DC43E030 /* Pods_VendooTests.framework */; + productReference = 368891931E4FDAD657575C866C45466D /* Alamofire_SwiftyJSON.framework */; productType = "com.apple.product-type.framework"; }; 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */ = { @@ -2924,7 +4219,7 @@ ); name = FBSDKLoginKit; productName = FBSDKLoginKit; - productReference = F1928779CEF4CD1A263424A872232529 /* FBSDKLoginKit.framework */; + productReference = 97B4A4D306EEEA7C0295BDE0FCAE7142 /* FBSDKLoginKit.framework */; productType = "com.apple.product-type.framework"; }; 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */ = { @@ -2941,7 +4236,7 @@ ); name = Alamofire; productName = Alamofire; - productReference = 6C0A13967CBFD7F1D7FD1ED5F2048ABD /* Alamofire.framework */; + productReference = F9DBFCA514FB992D29C80A5EC76D68E0 /* Alamofire.framework */; productType = "com.apple.product-type.framework"; }; 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */ = { @@ -2958,7 +4253,25 @@ ); name = BSGridCollectionViewLayout; productName = BSGridCollectionViewLayout; - productReference = 7FA06726A3A4D67408C806746E96C8AC /* BSGridCollectionViewLayout.framework */; + productReference = 4578E1AEB9C23435264A4E8697646F3B /* BSGridCollectionViewLayout.framework */; + productType = "com.apple.product-type.framework"; + }; + 8E87CBA9EBF6671AAFD3A8CCD2C3875B /* AeroGearOAuth2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5185A8EEE34AB757DDA98382F8D9E3DA /* Build configuration list for PBXNativeTarget "AeroGearOAuth2" */; + buildPhases = ( + 4F6745C2B35A7953DC0953F09C67ECB8 /* Sources */, + 0FE3804D0FBC0C2B53BC397CDF14BC28 /* Frameworks */, + C2E9D2DD4DD231C6D48F80FE33A92698 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 69665AA7D0F588B39BA34A9382994C40 /* PBXTargetDependency */, + ); + name = AeroGearOAuth2; + productName = AeroGearOAuth2; + productReference = 55E0553BC1CEA1822AA7826599C94FD4 /* AeroGearOAuth2.framework */; productType = "com.apple.product-type.framework"; }; 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */ = { @@ -2975,7 +4288,43 @@ ); name = Locksmith; productName = Locksmith; - productReference = AD7EBAD61399E3717AB01A6384AA0138 /* Locksmith.framework */; + productReference = D2BB4811335CB496B9C2A6AF4620DDBC /* Locksmith.framework */; + productType = "com.apple.product-type.framework"; + }; + 9AAFED731A7D62458AD19F177724048B /* Pods-Vendoo */ = { + isa = PBXNativeTarget; + buildConfigurationList = D5E1317A17A0F704FD55EB601C38ED14 /* Build configuration list for PBXNativeTarget "Pods-Vendoo" */; + buildPhases = ( + 4E90AEABDBA3320812E767FB0E3B1B79 /* Sources */, + 37DBD2A51AF2FCB1F61501BE1697A470 /* Frameworks */, + 7E65460631719E3179E60CFAF1DE4335 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 48C3060BE46372467BC51F6C38A8AF0F /* PBXTargetDependency */, + 769F59D5642309FF8A456CAD2CCE7E5E /* PBXTargetDependency */, + D8BA16C00D19F9C24D54499D27AE923E /* PBXTargetDependency */, + D81A315B64BB05A135CBD183B2603061 /* PBXTargetDependency */, + 0D48F70E0A03093FE84EC7AD1C7091C7 /* PBXTargetDependency */, + 9F22094A3FE1E5EF0C4FFE5CF8C34003 /* PBXTargetDependency */, + 2220AD93EDBF8BD0E8A9D24AE062A34C /* PBXTargetDependency */, + 42BECD503C098E91C6DD12632AA3C58A /* PBXTargetDependency */, + 0C380CB7D80E46C61B12217A17A426FD /* PBXTargetDependency */, + 5CA51BB0E9911EA783B7D947EB115B6A /* PBXTargetDependency */, + 8E447A954612451FE1193714233A5BA0 /* PBXTargetDependency */, + 278E2774A33B1C8E23D4585522C409C0 /* PBXTargetDependency */, + 4C80E6BC3F005E267001B183E1199D90 /* PBXTargetDependency */, + 7A0B8A9D4A40672D006479214DE9B22F /* PBXTargetDependency */, + 6A25EF7BE5DE10040D05DA14DB484390 /* PBXTargetDependency */, + 7CD3B78B25658C8A4793417DBAA1515C /* PBXTargetDependency */, + 53C75DF6E8B34902C23B6666D02F46EC /* PBXTargetDependency */, + E761B1E1CD9FCD3931C72458F48EEDAA /* PBXTargetDependency */, + F9F75A94C04527DFCC9CB09745E4B6B7 /* PBXTargetDependency */, + ); + name = "Pods-Vendoo"; + productName = "Pods-Vendoo"; + productReference = CB283AABF3CEE07C086FE8E23F363434 /* Pods_Vendoo.framework */; productType = "com.apple.product-type.framework"; }; 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */ = { @@ -2992,7 +4341,24 @@ ); name = Bolts; productName = Bolts; - productReference = 54D37A71D5C1658176DA169EBEA190C6 /* Bolts.framework */; + productReference = 2988D6367AC970D13B7AE0B9C4B3A5CF /* Bolts.framework */; + productType = "com.apple.product-type.framework"; + }; + B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */ = { + isa = PBXNativeTarget; + buildConfigurationList = 80B13B6EAD86ED2D1C36A7A5494AC881 /* Build configuration list for PBXNativeTarget "AeroGearHttp" */; + buildPhases = ( + 87C978ED8F7138B6FAAD368C7A0B4E2B /* Sources */, + 433A59F508FC8EDC7E634862A2B36779 /* Frameworks */, + 7AFA7DCE60377EB03504CFC4E62CF37C /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = AeroGearHttp; + productName = AeroGearHttp; + productReference = B5027A66F337B67B57F24D6A037785E8 /* AeroGearHttp.framework */; productType = "com.apple.product-type.framework"; }; BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */ = { @@ -3009,24 +4375,7 @@ ); name = SwiftyJSON; productName = SwiftyJSON; - productReference = CF55D20CB00B94AE727AC53258C519D1 /* SwiftyJSON.framework */; - productType = "com.apple.product-type.framework"; - }; - C54A0D22A460C6E11B151CCF892D6432 /* Pods-VendooUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2992E13F4B134B6303748B412A79C0DD /* Build configuration list for PBXNativeTarget "Pods-VendooUITests" */; - buildPhases = ( - 31EF51A64E084962AE32351DC94F837D /* Sources */, - 1DCC5C20D7BB942D89A1E6B830915B67 /* Frameworks */, - 4F9C93C9FDCFE36B496EFFD2055C6D9C /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-VendooUITests"; - productName = "Pods-VendooUITests"; - productReference = FDB65941B0254FEBDF7F6E2EBEE5E543 /* Pods_VendooUITests.framework */; + productReference = F2CDAC06F3EBFD5E85269D393C273544 /* SwiftyJSON.framework */; productType = "com.apple.product-type.framework"; }; C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */ = { @@ -3047,7 +4396,7 @@ ); name = BSImagePicker; productName = BSImagePicker; - productReference = 8AD8294FA33B540803065AE414509D9A /* BSImagePicker.framework */; + productReference = 2E9442C823B6DA7C3A7653A638F855F9 /* BSImagePicker.framework */; productType = "com.apple.product-type.framework"; }; F7DE5171AA3C53DA4E4A078B795C78EE /* BSImagePicker-BSImagePicker */ = { @@ -3064,26 +4413,9 @@ ); name = "BSImagePicker-BSImagePicker"; productName = "BSImagePicker-BSImagePicker"; - productReference = DC61298D95492056180D4E82292683B9 /* BSImagePicker.bundle */; + productReference = 1DAB82B06E436E004842E183C76B2507 /* BSImagePicker.bundle */; productType = "com.apple.product-type.bundle"; }; - FD72A3BB780C489CD6459BC489936E39 /* SWRevealViewController */ = { - isa = PBXNativeTarget; - buildConfigurationList = 269C7E2F022C02FD01F202C5596400D2 /* Build configuration list for PBXNativeTarget "SWRevealViewController" */; - buildPhases = ( - BB44FCDB525F09558677C16420F77CDF /* Sources */, - E8D04554C7BAE6F58A49A52A816EB428 /* Frameworks */, - FCB8EB7A6CBD57001593E609C20FD6AC /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SWRevealViewController; - productName = SWRevealViewController; - productReference = 2FDAC9906562FC9E71C406DB31C0404C /* SWRevealViewController.framework */; - productType = "com.apple.product-type.framework"; - }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -3101,10 +4433,13 @@ en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = DA524A4BABCEFD58FD053D657ED447C1 /* Products */; + productRefGroup = 06BC65EC8555178401515199505D0E55 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( + B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */, + 8E87CBA9EBF6671AAFD3A8CCD2C3875B /* AeroGearOAuth2 */, + 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */, 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */, 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */, 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */, @@ -3114,14 +4449,16 @@ 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */, 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */, 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */, + 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */, 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */, 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */, - 3E1FC1FAA9613EB47901BE2F8E9758AA /* Pods-Vendoo */, - 6E4E0004FD7A714EF2D64F6414B97661 /* Pods-VendooTests */, - C54A0D22A460C6E11B151CCF892D6432 /* Pods-VendooUITests */, + 2AA2F4091B94E46EEE3AD6055CB49C7D /* PicoKit */, + 9AAFED731A7D62458AD19F177724048B /* Pods-Vendoo */, + 21020CCDF572876803FA95BD48270386 /* Pods-Vendoo-VendooTests */, + 66B6577A34875C54541830039899A97A /* Pods-Vendoo-VendooUITests */, BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */, - FD72A3BB780C489CD6459BC489936E39 /* SWRevealViewController */, - 2CCDCB2693626E9850F1E6B594D41754 /* TYMActivityIndicatorView */, + 0D52FE07CEB8B5458F3C73BB37A484FB /* SWRevealViewController */, + 31CABCBBC4853F0A3523D99FE6D41F17 /* TYMActivityIndicatorView */, 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */, ); }; @@ -3145,11 +4482,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 72FDE398FA53029EA78FBD9684F1E214 /* Resources */ = { + A4059B06ADEA118479C3F16BBB829D14 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - ED82C98F2E9BFB80726F479E0DCC2154 /* TYMActivityIndicatorView.bundle in Resources */, + 316600E170EB0DDAAC598905501E274F /* TYMActivityIndicatorView.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3164,11 +4501,11 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 31EF51A64E084962AE32351DC94F837D /* Sources */ = { + 36DF42BD6E22493A19ED2F70A4C8D474 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 54D00A6EF2E46F4A4672CF5FB6492E1E /* Pods-VendooUITests-dummy.m in Sources */, + 3A33BD9CFBB44FE323E109E255C76F49 /* Pods-Vendoo-VendooTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3220,6 +4557,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4E90AEABDBA3320812E767FB0E3B1B79 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 08290E6145C64072DFB0801316DE392D /* Pods-Vendoo-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6745C2B35A7953DC0953F09C67ECB8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6EAAB8106D2D1D7625489FAF35223DBB /* AccountManager.swift in Sources */, + 81A1CBDACA3848828BD69C8EFE2C8D7C /* AeroGearOAuth2-dummy.m in Sources */, + 7D68A3720CC3692C203FAAD224FAB14A /* Config.swift in Sources */, + 4305C8D7E5269805600F23D8FEA37071 /* DateUtils.swift in Sources */, + 183F3F433680B1AC95B7836E17DCFC99 /* FacebookOAuth2Module.swift in Sources */, + FA8D0725E732D1778567F836BF2424D7 /* KeycloakOAuth2Module.swift in Sources */, + 82CE83B84A5A559972A93E174AD6411A /* OAuth2Module.swift in Sources */, + 99AC88D23F7F3D5E609540D9EED14123 /* OAuth2Session.swift in Sources */, + BF4DC48AD7D41C37CA8108D7590BA3DE /* OAuth2WebViewController.swift in Sources */, + B10C7D17E533337E2B74970B679D6B3A /* OpenIDClaim.swift in Sources */, + C67694443EB6C1977F2510638E94F687 /* TrustedPersistantOAuth2Session.swift in Sources */, + 9769B82453864B392235EDCAA2D87D47 /* UntrustedMemoryOAuth2Session.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5BED8FE08969CC7BFAF674FB700A451B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3256,6 +4620,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 6E86FEC0035AB46FF57CFFD0FDCEEC92 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4FC841A3903CBCDDF599E4C2A6B02238 /* TYMActivityIndicatorView-dummy.m in Sources */, + 7D81ACFEF8FF06EEE9898A0FA03B0E99 /* TYMActivityIndicatorView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 6FA3A594589902DACA2A3CCCCFBEC8F9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3275,6 +4648,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7DC60209E803E3B7EC99857C9FB72C15 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0940D840A3055E3A6C3A1D9BCD8480C3 /* Pods-Vendoo-VendooUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 87C978ED8F7138B6FAAD368C7A0B4E2B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ED4B859D28626B3B1E74BF97A7D3F4B3 /* AeroGearHttp-dummy.m in Sources */, + 27B9305978AB08232BD1BAD3E5CF8FBB /* AuthzModule.swift in Sources */, + E94393E2BBDAA8E8BBFDF20A0E9F8512 /* Http.swift in Sources */, + C3EE5FD470BF4FD80D834166E6C5E8EA /* HttpRequestSerializer.swift in Sources */, + BAF4FD69C4FE6323B1FC7B7B24032673 /* JsonRequestSerializer.swift in Sources */, + 1C5CA0323B22B50689F6252B44A93D80 /* JsonResponseSerializer.swift in Sources */, + CFBFD1949A464FA701704CB507D5074D /* MultiPartData.swift in Sources */, + 653C036B94D8543FB8FB1FDD38C7FFAA /* RequestSerializer.swift in Sources */, + E7783DA43E66A3CD931B178E31771E1C /* ResponseSerializer.swift in Sources */, + BF4FE2CA55E25E91654D4090767397C0 /* StringResponseSerializer.swift in Sources */, + F983A211639EA43476CEB54995E32C35 /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8B92D7D2E5D502DBE23A5DE88454E404 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3299,14 +4698,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8CCD2D17E7D79527A9AF979072F68AF3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5F984685580DDF4C89B490D699CCCDBB /* Pods-VendooTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 95CC2C7E06DC188A05DAAEE9CAA555A3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3442,23 +4833,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A91E35442DD00BB84D7AC6CBF12A5A0A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 23A39BC45B1EFDA73CC4A3C6D0792885 /* Pods-Vendoo-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BB44FCDB525F09558677C16420F77CDF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 030313BB11CFB89FE56022AE56DFBFE1 /* SWRevealViewController-dummy.m in Sources */, - 59EAD820352D00DF2ECA0A4E92F4BA0D /* SWRevealViewController.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; CB9CACE5B69239D17009AECF0310C585 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3486,6 +4860,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D368A0D8E440ED2393A424F47A6C5549 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DF4112FFA156222BF7053EF22A8827B9 /* AFHTTPRequestOperation.m in Sources */, + C7B655603FB1089A5E2D28FCE12DF12F /* AFHTTPRequestOperationManager.m in Sources */, + D86913E8F8A1CA01D792A1DFD3AE671C /* AFHTTPSessionManager.m in Sources */, + 1EA06503C7AF1CA5E13950E3E7D7830E /* AFNetworkActivityIndicatorManager.m in Sources */, + C51B96A7E543F72CD7925968E35DC041 /* AFNetworking-dummy.m in Sources */, + C087B9B3A493BC8232CBA4DB1CB47A67 /* AFNetworkReachabilityManager.m in Sources */, + 4E32C6B26518F18DC4AB3E225B86EE88 /* AFSecurityPolicy.m in Sources */, + C6CDABE1AEBB5DC4A35A6B221BB98D13 /* AFURLConnectionOperation.m in Sources */, + 1389748BE24F9D2223187CB20D9A020C /* AFURLRequestSerialization.m in Sources */, + DB840EF5FD9645993A399CDE849E784C /* AFURLResponseSerialization.m in Sources */, + 945C9834347A969CDD4FB9A5AB9FF0E0 /* AFURLSessionManager.m in Sources */, + 4E94B8F460BF431A50D94814F7C8AF61 /* UIActivityIndicatorView+AFNetworking.m in Sources */, + E7FA21C38D6A1CB113BE2DA22E73B845 /* UIAlertView+AFNetworking.m in Sources */, + BB82DC2891A35AC22DD6D5CE4CAE4364 /* UIButton+AFNetworking.m in Sources */, + 081A50535FCDF50D0118223459790167 /* UIImageView+AFNetworking.m in Sources */, + CF051D17275C20E0FBF5736E3C8A0573 /* UIProgressView+AFNetworking.m in Sources */, + 1A15E1DAB1BF63371AE5ADFAED9169E5 /* UIRefreshControl+AFNetworking.m in Sources */, + 79D287D48B2A81896F365CA21F0B27D6 /* UIWebView+AFNetworking.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; D518FFBEA35BDE226139B5CE2081F913 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3495,12 +4894,71 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DDA7805040EF934A96EA3171744ED838 /* Sources */ = { + DE1FDB78D374B01B803026B54B8097D6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 820EC949704070BF53850AC06B4CF665 /* TYMActivityIndicatorView-dummy.m in Sources */, - 7B3DE66F98097DCC94CF2F0E963AF686 /* TYMActivityIndicatorView.m in Sources */, + 7C708C62615F289B6A8B75A24FE22879 /* SWRevealViewController-dummy.m in Sources */, + 031C63FA655859684EA74B3087EAD27E /* SWRevealViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EB312E9FB81ED0D88421FD8CC3F35CC1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + EAF46061255D5EEB3DE0B27A11E0C97F /* GDataXML-HTML-dummy.m in Sources */, + 0222085A44991F96092B78FB418268B5 /* GDataXMLNode.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F30792D6744303FE669254A1A58D7E51 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 06808CCA8955675A9104F4B730FFFEFD /* OrderedDictionary.m in Sources */, + 9F756E533FBC1ECD87F8F13FE411BD51 /* PicoBindingSchema.m in Sources */, + B70C33F5EB2E85CA0E4425B1A253BAFF /* PicoBoolConverter.m in Sources */, + 185EEB501ACB365FFF762EED05F47DA7 /* PicoCache.m in Sources */, + 298BABB267BFF3841CDC2D083BC4E8C5 /* PicoCacheEntry.m in Sources */, + 7FB067C07D2C78201A78245B76CC17E9 /* PicoClassSchema.m in Sources */, + F55BD406E6304124C7FFEAE2418CD046 /* PicoConfig.m in Sources */, + 8F07671E7B41068F6BDBBEF4E39D322A /* PicoConstants.m in Sources */, + 0013F6DE7E2247675FA8325C0AB555B1 /* PicoConverter.m in Sources */, + 2B44537869F2E871DA87CFFA22DC331B /* PicoDataConverter.m in Sources */, + 903E8BA75D09A05881EB2DD3F622CCF4 /* PicoDateConverter.m in Sources */, + 626752EF7EB05FDEFB7DDBA7CE66B57D /* PicoKit-dummy.m in Sources */, + 251B153287407A947B9F77303CB7F275 /* PicoNumberConverter.m in Sources */, + 0F25B917DA657DAC351C4AA787B5FB6A /* PicoPropertySchema.m in Sources */, + 89D320F81D7E49E88352493C2FEB0714 /* PicoSOAPClient.m in Sources */, + A234CD03F89584D0547A5D7D999E03C5 /* PicoSOAPReader.m in Sources */, + 127CB1D3B204EE69ADA315CE2626BA2E /* PicoSOAPRequestOperation.m in Sources */, + FF9662F15F1A4003E60BDF39D8E24B7E /* PicoSOAPWriter.m in Sources */, + 4DE74A102F928A9E1177E7F5D3F1904B /* PicoStringConverter.m in Sources */, + 8F51C91CAE6EA947E9C861F49919BF22 /* PicoXMLClient.m in Sources */, + D96FB769680B41AD1EAF2FDAF20F348A /* PicoXMLElement.m in Sources */, + 8DA9AA49F47C0E5D647CF3C96180843B /* PicoXMLReader.m in Sources */, + F7673DECA5A9B28885631BF36103936A /* PicoXMLRequestOperation.m in Sources */, + D47A43CEEEBB4F2760D96D02FEEC879A /* PicoXMLWriter.m in Sources */, + 93D03012CEB9E4EE27E6DB43412D6FF4 /* SOAP11Body.m in Sources */, + 8493A1022392AFF1965FC3FAB4607414 /* SOAP11Detail.m in Sources */, + 64D1DE8EA4BAACC7B802D787788E3F88 /* SOAP11Envelope.m in Sources */, + 5182510A2DA1A6F9F44DAEDEDA45265F /* SOAP11Fault.m in Sources */, + DBC228F2E7B341A858EA328E1BB9F783 /* SOAP11Header.m in Sources */, + 5FA117E5597FFEB723A700BA077A7B6B /* SOAP12Body.m in Sources */, + 05C70BF173BBB3BFB8572269DD13AD50 /* SOAP12Detail.m in Sources */, + C8CFDFCD0A8A590398560534407636B4 /* SOAP12Envelope.m in Sources */, + 36463D62E47D3C86C700BE506CF20513 /* SOAP12Fault.m in Sources */, + A7D274ABDE3D32AE032C1B43FCD12B81 /* SOAP12Faultcode.m in Sources */, + E810F45FC31110170657F41062B605CD /* SOAP12FaultcodeEnum.m in Sources */, + 3763DC15F50037130B37AFA9785E680D /* SOAP12Faultreason.m in Sources */, + F3009CD67ED84A44BC23B854E9329601 /* SOAP12Header.m in Sources */, + FFAFCCCDBDD5C1802FA84670D0134481 /* SOAP12NotUnderstoodType.m in Sources */, + 6042E03938FE23B2CB265B549675C2F3 /* SOAP12Reasontext.m in Sources */, + FFC1D9EC2ECD8BE8F5658955D44621FD /* SOAP12Subcode.m in Sources */, + B03FBE8B4AA2B23CB920A248BB98AB3E /* SOAP12SupportedEnvType.m in Sources */, + 9DF0BDC4A549EEFB599696F517AF5E93 /* SOAP12UpgradeType.m in Sources */, + D14B90EC47C350BCEA5F953586978228 /* XMLWriter.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3514,23 +4972,89 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 023053AD9CA45DE70DE2244DF12274F5 /* PBXTargetDependency */ = { + 072755C69F34A8401FDDF78BE8391D09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftyJSON; - target = BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */; - targetProxy = B39A3BE01716EA93B76819ACB53F4A9A /* PBXContainerItemProxy */; + name = UIImageViewModeScaleAspect; + target = 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */; + targetProxy = 7C347AA735D81929ECF37A0B1848CC5F /* PBXContainerItemProxy */; }; - 0A1FDC517012B13A4E431EE83D7E85D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBSDKShareKit; - target = 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */; - targetProxy = 8FCBEB7838870F68B8D8DC7BF014151A /* PBXContainerItemProxy */; - }; - 1D275F6EDC406B518C4A280A9978A89C /* PBXTargetDependency */ = { + 0970CC487F8307E37FC23ADEC83BFDEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = OAuthSwift; target = 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */; - targetProxy = FE63CD0430ED52BBED07445B87711BF0 /* PBXContainerItemProxy */; + targetProxy = FD91081831EA0EF759CBC589E290C1CF /* PBXContainerItemProxy */; + }; + 0C380CB7D80E46C61B12217A17A426FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKCoreKit; + target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + targetProxy = BFF128E5D040CC7DA2E11C09E08FA208 /* PBXContainerItemProxy */; + }; + 0D48F70E0A03093FE84EC7AD1C7091C7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Alamofire-SwiftyJSON"; + target = 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */; + targetProxy = 459825C54CA79A64ED92388DF754A290 /* PBXContainerItemProxy */; + }; + 0F7A35827C8E05655054B223DE6690FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TYMActivityIndicatorView; + target = 31CABCBBC4853F0A3523D99FE6D41F17 /* TYMActivityIndicatorView */; + targetProxy = 8EE8A7619E216FCA6EAE1851B9647DF3 /* PBXContainerItemProxy */; + }; + 16BCEAF1BD7AA4C917110D62D9647083 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKLoginKit; + target = 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */; + targetProxy = BE5579070A24A6341305F7E29DDD0AB7 /* PBXContainerItemProxy */; + }; + 2220AD93EDBF8BD0E8A9D24AE062A34C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BSImagePicker; + target = C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */; + targetProxy = EECE245E01E5CF005C6A194B77804CD3 /* PBXContainerItemProxy */; + }; + 278E2774A33B1C8E23D4585522C409C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GDataXML-HTML"; + target = 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */; + targetProxy = A7B12E2686EF844D6CF50DEED46AC5F0 /* PBXContainerItemProxy */; + }; + 345E0487028FB4D82EAF0FC5662B896B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKLoginKit; + target = 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */; + targetProxy = 8DC433D252328C4854A9B71C9B80171A /* PBXContainerItemProxy */; + }; + 3FC72D348981C0830C684B9C572E02F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearHttp; + target = B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */; + targetProxy = AD371313103EB06D17310364824C54B7 /* PBXContainerItemProxy */; + }; + 4256BBDD507F4DE40DCCE146E845A710 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Locksmith; + target = 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */; + targetProxy = 8052C65AFD2EA2723F06DB7F898A1938 /* PBXContainerItemProxy */; + }; + 428C982B583847EB13F72DF45910CABB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKCoreKit; + target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + targetProxy = E250CF7CC130313AE0672DA2E999F5F7 /* PBXContainerItemProxy */; + }; + 42BECD503C098E91C6DD12632AA3C58A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bolts; + target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; + targetProxy = A51EB6F1F45F0F787AFC0928F2478B40 /* PBXContainerItemProxy */; + }; + 48C3060BE46372467BC51F6C38A8AF0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */; + targetProxy = AB87F20ADEAEFBB3B7530AA0EF8B122B /* PBXContainerItemProxy */; }; 4A2A4A039944577C369BBE84367A1720 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3538,11 +5062,29 @@ target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; targetProxy = 7BDFEC0F5B0693C2D315E9D3973E276E /* PBXContainerItemProxy */; }; - 4EB4FC723B25F65ED35AD5CB1EDCE2BB /* PBXTargetDependency */ = { + 4AD784C8D980750A2CB7E95896290010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBSDKCoreKit; - target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; - targetProxy = BA40967F57D0A2C277772C9EB1CB2E70 /* PBXContainerItemProxy */; + name = Alamofire; + target = 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */; + targetProxy = 16753675BB7E26317C6F84CC542DB29F /* PBXContainerItemProxy */; + }; + 4BF6765923DB09D448A522A69C6DF8BD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UIImageViewModeScaleAspect; + target = 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */; + targetProxy = E477007BAEE3D7F6DFFC145E026F964B /* PBXContainerItemProxy */; + }; + 4C80E6BC3F005E267001B183E1199D90 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Locksmith; + target = 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */; + targetProxy = 466241E13A83BF7230F9C83D3C696C2D /* PBXContainerItemProxy */; + }; + 4E806B1F85F6DB60C16DEF9C749F53B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyJSON; + target = BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */; + targetProxy = 7346A7F1FBB3A528EBD76CD455B73501 /* PBXContainerItemProxy */; }; 4F3CF331AB806BC4E9978A9118632162 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3550,23 +5092,47 @@ target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; targetProxy = CFD970D7ADCC55CB11A7402ECAE02E55 /* PBXContainerItemProxy */; }; - 5C06060E0E379F66CF71889DF0F53565 /* PBXTargetDependency */ = { + 522E6EB7CECCBCF3F38CFB5A76AEAADF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SWRevealViewController; - target = FD72A3BB780C489CD6459BC489936E39 /* SWRevealViewController */; - targetProxy = FD48ED5E72A1C395BA09B16EFC094756 /* PBXContainerItemProxy */; + name = FBSDKShareKit; + target = 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */; + targetProxy = 0BE831E079CF2464C77EF106D961EED5 /* PBXContainerItemProxy */; }; - 5FDC706F40086C6545004EAA711A3F76 /* PBXTargetDependency */ = { + 53C75DF6E8B34902C23B6666D02F46EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BSImagePicker; - target = C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */; - targetProxy = 38CC8B1BF571A52DE311FD1D183643D0 /* PBXContainerItemProxy */; + name = SwiftyJSON; + target = BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */; + targetProxy = 603001D4B68354299A334D5D2E13BEF2 /* PBXContainerItemProxy */; }; - 65A2D7177DEC012ADAA90417A9D2722C /* PBXTargetDependency */ = { + 5953BE2BC5212C3C5357B2CF230DE471 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Locksmith; - target = 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */; - targetProxy = D545518F49EA60CE0A9CB1E925226C94 /* PBXContainerItemProxy */; + name = Alamofire; + target = 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */; + targetProxy = FE7B2385B85F5C2C33B4F06ACE374820 /* PBXContainerItemProxy */; + }; + 5CA51BB0E9911EA783B7D947EB115B6A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKLoginKit; + target = 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */; + targetProxy = C5C42AA7935403FFCAE4B3B976AA8D47 /* PBXContainerItemProxy */; + }; + 665BF41340C0024822CC1975AD0DAAB2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKCoreKit; + target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; + targetProxy = 2092CA1C6780BE3C119CC0ABAE0477F9 /* PBXContainerItemProxy */; + }; + 69665AA7D0F588B39BA34A9382994C40 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearHttp; + target = B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */; + targetProxy = 7541FFC8C2E33628D7F74CC546A5B99A /* PBXContainerItemProxy */; + }; + 6A25EF7BE5DE10040D05DA14DB484390 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PicoKit; + target = 2AA2F4091B94E46EEE3AD6055CB49C7D /* PicoKit */; + targetProxy = FE5731C5F4D7F13FF971809E90835463 /* PBXContainerItemProxy */; }; 6BE2F4A47E1A591D729F69DE5FF4F7D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3574,17 +5140,95 @@ target = 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */; targetProxy = E7450D99B2453F88BFE579F53382A53E /* PBXContainerItemProxy */; }; + 6C3D35EF14EC597CE4AD081F4087FE11 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GDataXML-HTML"; + target = 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */; + targetProxy = 037A460543B9CC550E0C8E9D9F424F34 /* PBXContainerItemProxy */; + }; + 6D703A868103C0030E47D53437291682 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Alamofire-SwiftyJSON"; + target = 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */; + targetProxy = 0BABE65DC2DD14C3F1794A67472312FF /* PBXContainerItemProxy */; + }; + 6DE66EC076737D6A3AA88D69E176F8CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearHttp; + target = B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */; + targetProxy = BEF00CE4DE7A92CB3D4916EFAD5D4E16 /* PBXContainerItemProxy */; + }; + 769F59D5642309FF8A456CAD2CCE7E5E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearHttp; + target = B6184234CE5B97D6DADDB68315E67B58 /* AeroGearHttp */; + targetProxy = 9A623F1209117F00152F49A7FB728C6E /* PBXContainerItemProxy */; + }; + 78A900EB389852F8263CBF79D6EB87E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PicoKit; + target = 2AA2F4091B94E46EEE3AD6055CB49C7D /* PicoKit */; + targetProxy = BC9778A824EDAF3AAB0C9AC94E8E24FF /* PBXContainerItemProxy */; + }; + 7A0B8A9D4A40672D006479214DE9B22F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OAuthSwift; + target = 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */; + targetProxy = 5C509E9B0E70038AFCE31DC35532DC13 /* PBXContainerItemProxy */; + }; + 7BF9371A4B5C78FAC1DDF181C60756EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */; + targetProxy = 0AACB3B780F4EB33F2D78D132239E3D6 /* PBXContainerItemProxy */; + }; + 7CD3B78B25658C8A4793417DBAA1515C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SWRevealViewController; + target = 0D52FE07CEB8B5458F3C73BB37A484FB /* SWRevealViewController */; + targetProxy = 614D19A8D4A73023DFC86C5F567CB4EC /* PBXContainerItemProxy */; + }; + 83250583F9DC4369964C061E1E800F51 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BSImagePicker; + target = C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */; + targetProxy = 913117DE20193CBB968A79298F160D7C /* PBXContainerItemProxy */; + }; + 84B095CBBFC68A656E23BEF02B03CF70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */; + targetProxy = 115A10D944829B797C5186C6866F06AA /* PBXContainerItemProxy */; + }; 84B3D926308714AC862F533D62D805DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Bolts; target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; targetProxy = 4C73BEFB46A6D4619DFC813CAFC63D53 /* PBXContainerItemProxy */; }; - 8D1BFEFEFEB3F8159AA49E652C0B0E75 /* PBXTargetDependency */ = { + 8CB80CCD491BF631ECE1DD59F32A4308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UIImageViewModeScaleAspect; - target = 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */; - targetProxy = 85B30AEA9E57E15BF53714BA3CEEFB24 /* PBXContainerItemProxy */; + name = BSGridCollectionViewLayout; + target = 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */; + targetProxy = CBA4BF1C2836107D6A4A8DE25E274C5D /* PBXContainerItemProxy */; + }; + 8D0AD1920A5FE2EF673D3CE3A4BB6846 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearOAuth2; + target = 8E87CBA9EBF6671AAFD3A8CCD2C3875B /* AeroGearOAuth2 */; + targetProxy = 4DD0E5DEAABC7194769067C350F390D4 /* PBXContainerItemProxy */; + }; + 8E447A954612451FE1193714233A5BA0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKShareKit; + target = 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */; + targetProxy = 7F8224D73B0081B89F464CDAC9CF8580 /* PBXContainerItemProxy */; + }; + 8F68883811243EEC4FDCE7A77BEB4002 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBSDKShareKit; + target = 30D7FCF8072F5D59AE1C98D94F9A6EC9 /* FBSDKShareKit */; + targetProxy = 807A24453967E8E41906EBD374A32D3A /* PBXContainerItemProxy */; }; 92574C4688015CAB4202425D6FE5C116 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3592,23 +5236,47 @@ target = 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */; targetProxy = 3AB1850450B2D2039C9FC0D55B185E3F /* PBXContainerItemProxy */; }; - A5E30D5D0D510BA7FF65E8E7B32A70DB /* PBXTargetDependency */ = { + 96F9D93D733BC5D8D8C686670AC2BDC1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Bolts; - target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; - targetProxy = 6EFCEC7109C3B3C5FABCE1CA89D7441D /* PBXContainerItemProxy */; + name = "GDataXML-HTML"; + target = 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */; + targetProxy = 56A8A09B634FE343598FA884ABB1D552 /* PBXContainerItemProxy */; }; - A67121242E16E7D4A18D5DFEB3F9D100 /* PBXTargetDependency */ = { + 97D32DB23AC912C9D69A6038A7B5C898 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OAuthSwift; + target = 45935B91DF0442390E2CA6DEEF68AE99 /* OAuthSwift */; + targetProxy = CDEC1DDDDC87A123A6962ACDDD71BFCE /* PBXContainerItemProxy */; + }; + 9F22094A3FE1E5EF0C4FFE5CF8C34003 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BSGridCollectionViewLayout; target = 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */; - targetProxy = D19B874B734708A373B3A5EC822FFDCD /* PBXContainerItemProxy */; + targetProxy = A25DE1CC509AA6C44D1C2F741C0E1718 /* PBXContainerItemProxy */; }; - B6FFA132C61390BEADCC70E831C9E522 /* PBXTargetDependency */ = { + A10E65ED5829CD944029E3D86AA54B93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Alamofire-SwiftyJSON"; - target = 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */; - targetProxy = 16555E8274AFB8FC9226006190F31D2C /* PBXContainerItemProxy */; + name = SWRevealViewController; + target = 0D52FE07CEB8B5458F3C73BB37A484FB /* SWRevealViewController */; + targetProxy = 567C942B4E8F40CAB5AD0879E0683C5A /* PBXContainerItemProxy */; + }; + AD11165812BA6AA4ACEE70AD0BD6C61B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bolts; + target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; + targetProxy = 9F7F215826A50AFE1DD448B473E34E72 /* PBXContainerItemProxy */; + }; + B773C3612D7AF133BF82D57F6FC47068 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BSGridCollectionViewLayout; + target = 8AA3DDB8797222294E1288CB197A8347 /* BSGridCollectionViewLayout */; + targetProxy = 7D8F65FE601942792A9B5833587C1160 /* PBXContainerItemProxy */; + }; + B856B8A5B91B44CD84038E8195FFD247 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearOAuth2; + target = 8E87CBA9EBF6671AAFD3A8CCD2C3875B /* AeroGearOAuth2 */; + targetProxy = 82CDB16FE61EEC2123EBABE1DE86F80A /* PBXContainerItemProxy */; }; BE65A667FEE88EA4593A2D51E0DDF237 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3616,11 +5284,53 @@ target = F7DE5171AA3C53DA4E4A078B795C78EE /* BSImagePicker-BSImagePicker */; targetProxy = C06A237F2852CAE7C244B71783CCAF1C /* PBXContainerItemProxy */; }; - E45E6A0E538DB547761F0F2E2E614763 /* PBXTargetDependency */ = { + C39D43F03F1411E89502B587B1865A33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Alamofire-SwiftyJSON"; + target = 6E31B4FD268BEE6936B4477E4EDCD609 /* Alamofire-SwiftyJSON */; + targetProxy = 19748DF8674222C851A4F5419660604F /* PBXContainerItemProxy */; + }; + C48887691B1F74F82FA217F84A67BBD2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyJSON; + target = BB23E0C4DDD7DE0A3E6056FA65D2D721 /* SwiftyJSON */; + targetProxy = CAAE30A3AFADAEED0971E3BD715DF7C3 /* PBXContainerItemProxy */; + }; + CD597A91A17E5142D5853E74F8585A0B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PicoKit; + target = 2AA2F4091B94E46EEE3AD6055CB49C7D /* PicoKit */; + targetProxy = 14D3B23B6DE8317BBC68C3145E8FEFF8 /* PBXContainerItemProxy */; + }; + D81A315B64BB05A135CBD183B2603061 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */; + targetProxy = 7662E20B474C7C0ED3D469B333B6372D /* PBXContainerItemProxy */; + }; + D8BA16C00D19F9C24D54499D27AE923E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AeroGearOAuth2; + target = 8E87CBA9EBF6671AAFD3A8CCD2C3875B /* AeroGearOAuth2 */; + targetProxy = 9BF04298D863634A3930B30CE2B83542 /* PBXContainerItemProxy */; + }; + DDF6F17FBF1531D8F5DB8DC8A6FCA202 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 4878C70B21CA37D7CB8A476BF986741B /* AFNetworking */; + targetProxy = EED08BD60636E6719FC447D614EAE98E /* PBXContainerItemProxy */; + }; + E761B1E1CD9FCD3931C72458F48EEDAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = TYMActivityIndicatorView; - target = 2CCDCB2693626E9850F1E6B594D41754 /* TYMActivityIndicatorView */; - targetProxy = AAF55DDBBF802AEBB4CDB4D653D48156 /* PBXContainerItemProxy */; + target = 31CABCBBC4853F0A3523D99FE6D41F17 /* TYMActivityIndicatorView */; + targetProxy = 0C577E371C6125B5CFB4E79388DA9C36 /* PBXContainerItemProxy */; + }; + EE33EB4676361F296C437CCF3B7847CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "GDataXML-HTML"; + target = 3C34098A7DACA89F52BF902062730F50 /* GDataXML-HTML */; + targetProxy = 0B37D807C7CB2448EA960B0C29CCC642 /* PBXContainerItemProxy */; }; EE4106E226CB0BEB4B8D5572E612A79A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3628,29 +5338,53 @@ target = 0EB19C1377A747F81110D44E2D5FCF78 /* FBSDKCoreKit */; targetProxy = ED9B8F8F8F84D09DE8A86E81383E7B0D /* PBXContainerItemProxy */; }; - EE79D92B1E8697AEADE6F33BE7A63023 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBSDKLoginKit; - target = 6EDC37F3FA92533C6AC3562458AA91F1 /* FBSDKLoginKit */; - targetProxy = 212F003C6748078B9CF89048DBBBF487 /* PBXContainerItemProxy */; - }; EF168E787231EE5ED7C0A3DCB6A8CAF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UIImageViewModeScaleAspect; target = 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */; targetProxy = 32F1A6CE07342E424DE342C9D5C9B5CC /* PBXContainerItemProxy */; }; + F1A3E2C805DC34ED3C7CA50DDFC05418 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TYMActivityIndicatorView; + target = 31CABCBBC4853F0A3523D99FE6D41F17 /* TYMActivityIndicatorView */; + targetProxy = 4BD92D31F30B1217088F0A7A02B0BF8B /* PBXContainerItemProxy */; + }; + F31C0AD1015393B7A2236431E297477F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bolts; + target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; + targetProxy = 1F7621FC7203C9BA0AB35BE1C40DF080 /* PBXContainerItemProxy */; + }; + F6D51C3D22CF9C90FEDCCBD3D22375EE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Locksmith; + target = 92943306EC8070DF9CD02ECD505D2CD5 /* Locksmith */; + targetProxy = 89EBD5097BCBAFECA0CB8482EF08FD99 /* PBXContainerItemProxy */; + }; F78FDB1EA04228A084EDD2BDDD2A09A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Bolts; target = 9D0F2E5EA1B46A5D72FFD42B0B39DBBC /* Bolts */; targetProxy = DFB7D8638BEFDCC4CCF33BEB67F1B89B /* PBXContainerItemProxy */; }; - F7A83627538E89E9ED5CA828D67C20D6 /* PBXTargetDependency */ = { + F9F75A94C04527DFCC9CB09745E4B6B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Alamofire; - target = 79C040AFDDCE1BCBF6D8B5EB0B85887F /* Alamofire */; - targetProxy = 4DF1EC91079CECF0D6EF1419FA85C75C /* PBXContainerItemProxy */; + name = UIImageViewModeScaleAspect; + target = 0FF38C485BD8E73F614C919F834D6EAB /* UIImageViewModeScaleAspect */; + targetProxy = A26DD2EE4C48318816483EC52CDCD9B3 /* PBXContainerItemProxy */; + }; + FA95A1D7BB5FE8133DB1FA64BAB7CBC1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BSImagePicker; + target = C59EE95662AD4757E7FCE220DB1AFA41 /* BSImagePicker */; + targetProxy = FA1EA0EE81ED4248D35359E7508DC398 /* PBXContainerItemProxy */; + }; + FBE840243215C0D390262B4D543D60CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SWRevealViewController; + target = 0D52FE07CEB8B5458F3C73BB37A484FB /* SWRevealViewController */; + targetProxy = 489365899EA53FE502565686A2366B14 /* PBXContainerItemProxy */; }; FCA7F8C7F21968A5908784A7B6C504D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -3661,9 +5395,101 @@ /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 0712182561B9496D9621AD81B65AC931 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 54A978CB632AD6DA73D28D7061829190 /* Pods-Vendoo.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo/Pods-Vendoo.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 09B8B93DA94703982480DC610CD974DE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/PicoKit/PicoKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PicoKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/PicoKit/PicoKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = PicoKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 09DCD7B5ABC0BE2422EC17FF22EEA61F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E70C8545EE8453FD876CB6F43D46A338 /* PicoKit.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/PicoKit/PicoKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/PicoKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/PicoKit/PicoKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = PicoKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 0A73F24D763A69076DD0422227C1211D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 362F5A481DC62449AFCAAF53EBECE26C /* FBSDKCoreKit.xcconfig */; + baseConfigurationReference = E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3692,7 +5518,7 @@ }; 0AB96BB5ADF0CA3DC7023A727EC7E42F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */; + baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3719,9 +5545,42 @@ }; name = Release; }; + 0D1F8B44ED062CEE5C370ABD3F357BDA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8F4B77E1672A1DC2211428EFE20BA4A1 /* Pods-Vendoo.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo/Pods-Vendoo.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 1403937F7D50BE5E8B8301461B2686AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51B1CDD76CB64351C364ACFF728F151B /* UIImageViewModeScaleAspect.xcconfig */; + baseConfigurationReference = 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3748,9 +5607,43 @@ }; name = Debug; }; + 151116029941CF34767F2423407DF504 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5255B7F22C5FA05618744F0C036E41B9 /* Pods-Vendoo-VendooUITests.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo-VendooUITests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo_VendooUITests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 19A75C9F29108E52A98BE38D10AC071C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51B1CDD76CB64351C364ACFF728F151B /* UIImageViewModeScaleAspect.xcconfig */; + baseConfigurationReference = 2B1D5F61D6134D5C3D70C6236F171A7B /* UIImageViewModeScaleAspect.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3777,38 +5670,38 @@ }; name = Release; }; - 1B3B1715F1CCC422BA3C2DCC4C17DE2C /* Debug */ = { + 1CB3E21E57526DB7C8A1DB1DC30BDBA4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DFC9E360846DDD167FA6396AAA74DD8C /* SWRevealViewController.xcconfig */; + baseConfigurationReference = D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWRevealViewController/SWRevealViewController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWRevealViewController/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TYMActivityIndicatorView/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SWRevealViewController/SWRevealViewController.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = SWRevealViewController; + MODULEMAP_FILE = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = TYMActivityIndicatorView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 2DAE788836AF99D9E9D30504C4AB0763 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E0ED8FCD4706F179875E8FDDD376C07 /* FBSDKLoginKit.xcconfig */; + baseConfigurationReference = 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3837,7 +5730,7 @@ }; 2FE54FCEB3F939FD620F30D6C5F20C3F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EE69BBDAFF6767E4992F7CB741AA1820 /* FBSDKShareKit.xcconfig */; + baseConfigurationReference = 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3866,7 +5759,7 @@ }; 32537CABB6F7EDB22B13F29F3D331428 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FC3E22BBB7E987F4750CCFD0A1BABA5 /* Alamofire-SwiftyJSON.xcconfig */; + baseConfigurationReference = 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3896,7 +5789,7 @@ }; 32AD5F8918CA8B349E4671410FA624C9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A64CC2379D15B8836FC514FF08B72380 /* Alamofire.xcconfig */; + baseConfigurationReference = A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3923,42 +5816,9 @@ }; name = Release; }; - 3622AE798174707DB4F9B7265FA122D4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D6584D06226BBE65D2C1B72854FAA452 /* Pods-VendooTests.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-VendooTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_VendooTests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; 38C3C075D5163F9981F9F18F907A3C9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 37DE2AA900EAF5881EB44BC3861C4B06 /* SwiftyJSON.xcconfig */; + baseConfigurationReference = BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -3988,7 +5848,7 @@ }; 3D02698181454015113FCDC4E7C6149C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BAD806F54BFBB7F262E3CD8FDDB7C8C0 /* BSGridCollectionViewLayout.xcconfig */; + baseConfigurationReference = C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4053,67 +5913,38 @@ }; name = Release; }; - 3FC599D72731487090570E5902633218 /* Release */ = { + 406C23A6F630DB686E934348A1CC25E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 842CF92121F511EEE4EFFB78442505C1 /* TYMActivityIndicatorView.xcconfig */; + baseConfigurationReference = AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TYMActivityIndicatorView/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/GDataXML-HTML/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = TYMActivityIndicatorView; + MODULEMAP_FILE = "Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = GDataXML_HTML; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 4287C621D611FB57582C6C0AB27391A3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DFC9E360846DDD167FA6396AAA74DD8C /* SWRevealViewController.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/SWRevealViewController/SWRevealViewController-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SWRevealViewController/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/SWRevealViewController/SWRevealViewController.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = SWRevealViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; + name = Debug; }; 443F1C9186292B46442EE0B9FC38D90B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */; + baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BSImagePicker"; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -4130,7 +5961,7 @@ }; 4799CFBC99D2EDFFDAFD3DEF3186789C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93CBD14BDECEE87E398D848CC0A0EA09 /* Locksmith.xcconfig */; + baseConfigurationReference = 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4157,9 +5988,43 @@ }; name = Release; }; + 50E2F60EB327AAC23F436C90A1A5A849 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3D39DD62BD3344215867E4F6A59AFE01 /* Pods-Vendoo-VendooTests.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo-VendooTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo_VendooTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; 52B77AA1DAD9C4DC2F490BEB54B3E0E5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 37DE2AA900EAF5881EB44BC3861C4B06 /* SwiftyJSON.xcconfig */; + baseConfigurationReference = BCCD8721053D265351F7FC028EAD051F /* SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4186,9 +6051,42 @@ }; name = Release; }; + 5AF1BC7C537EEFF7139F68D8FFF1DA39 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8C7124C17B0E1F3CD45549F473D588E0 /* Pods-Vendoo-VendooUITests.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo-VendooUITests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo_VendooUITests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 5B1F4C1F99921212216D8AA505FBF3E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41A74D3149BFEEC597096530B36B7834 /* OAuthSwift.xcconfig */; + baseConfigurationReference = 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4217,7 +6115,7 @@ }; 5C79987B34F47B822ACAD37C2DF5D441 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */; + baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/BSImagePicker"; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -4274,9 +6172,42 @@ }; name = Debug; }; + 6B206FA9CED64B847BE81C25BD657AA8 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E178194C369B2D90EE7A9C838F1F3975 /* Pods-Vendoo-VendooTests.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Vendoo-VendooTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Vendoo_VendooTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 749A77BD462D323D181CF0CA3E668C3B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EE69BBDAFF6767E4992F7CB741AA1820 /* FBSDKShareKit.xcconfig */; + baseConfigurationReference = 83C1067C4816251D8E8FCA40A8F35409 /* FBSDKShareKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4305,7 +6236,7 @@ }; 75218111E718FACE36F771E8ABECDB62 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A64CC2379D15B8836FC514FF08B72380 /* Alamofire.xcconfig */; + baseConfigurationReference = A5AB341A1D842688B77C42208057C7D0 /* Alamofire.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4333,104 +6264,9 @@ }; name = Debug; }; - 76EF982968E3DDB313FCDC3039F54ACC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92AD10E370437A3B99BD3B82AF4F13ED /* Pods-VendooUITests.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-VendooUITests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_VendooUITests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7CA3AA597E38A5015BB069D5714DDD9C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7DCCDFA1452F66D49B71C642EDD50406 /* Pods-VendooTests.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-VendooTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_VendooTests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 7F406972F5DC59F184B2798541435494 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 842CF92121F511EEE4EFFB78442505C1 /* TYMActivityIndicatorView.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/TYMActivityIndicatorView/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = TYMActivityIndicatorView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 854B1A0FBABCC23E55F97B83AC2D5F15 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E0ED8FCD4706F179875E8FDDD376C07 /* FBSDKLoginKit.xcconfig */; + baseConfigurationReference = 6B48B80C3840A0479FB5649B41F0D90A /* FBSDKLoginKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4459,7 +6295,7 @@ }; 8CEB8F51710385309FFE6A414889FF43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FC3E22BBB7E987F4750CCFD0A1BABA5 /* Alamofire-SwiftyJSON.xcconfig */; + baseConfigurationReference = 498334878FCE730B4BBCF95DD6716167 /* Alamofire-SwiftyJSON.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4486,9 +6322,9 @@ }; name = Release; }; - 9E2809C1A2BC2AB19978439941B2EB33 /* Release */ = { + 8DA1DA9EAE81D3DB196E2F722C81AC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B75EF4922B59E4FF64F55B2A2126190 /* Pods-Vendoo.release.xcconfig */; + baseConfigurationReference = AD04757917751B51F4AA1E6DD7A78CF4 /* GDataXML-HTML.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4499,18 +6335,14 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Vendoo/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/GDataXML-HTML/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Vendoo/Pods-Vendoo.modulemap"; + MODULEMAP_FILE = "Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap"; MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Vendoo; + PRODUCT_NAME = GDataXML_HTML; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -4519,9 +6351,38 @@ }; name = Release; }; - BA4540DEFF59A82976EDA47C6F08B87D /* Debug */ = { + 921930B9ACE4505D9988EBB07BFEC851 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A57654440ECBD6CD1038E8AFFA0900E /* Pods-Vendoo.debug.xcconfig */; + baseConfigurationReference = 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AeroGearOAuth2/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = AeroGearOAuth2; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 933454AB3B8E0564BA3DA640F235911A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4532,30 +6393,141 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-Vendoo/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/SWRevealViewController/SWRevealViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWRevealViewController/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Vendoo/Pods-Vendoo.modulemap"; + MODULEMAP_FILE = "Target Support Files/SWRevealViewController/SWRevealViewController.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Vendoo; + PRODUCT_NAME = SWRevealViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; + 9340D8E4B2DD920B75C8F847CAD25BB7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AFNetworking/AFNetworking-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AFNetworking/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AFNetworking/AFNetworking.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = AFNetworking; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A78CB9DDCA338DC66015FA65B1E768B2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CA2FE1F01F13C7DA68E33BCA18B3E65 /* AFNetworking.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AFNetworking/AFNetworking-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AFNetworking/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AFNetworking/AFNetworking.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = AFNetworking; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + BBC7375D6A437EB9209BA9EEEFD0FA23 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7FAB9C3D2FA90E049A97D51602AFB651 /* SWRevealViewController.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/SWRevealViewController/SWRevealViewController-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/SWRevealViewController/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/SWRevealViewController/SWRevealViewController.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = SWRevealViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C8F24A56F9E1AD1E2DA11349F596E991 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AeroGearHttp/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AeroGearHttp/AeroGearHttp.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = AeroGearHttp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; CAA975EAF285C03D356B6BB3680C8442 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B6E3C6E3317E8A24776E3EE3C5AC685 /* BSImagePicker.xcconfig */; + baseConfigurationReference = DD69DD0A9EBE6880B7E924359823A64E /* BSImagePicker.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4585,7 +6557,7 @@ }; CF237BF20314A0981AE48A1F7C43D94A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75AA560774BFE5E9C616BDBB3A1F6BB9 /* Bolts.xcconfig */; + baseConfigurationReference = D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4614,7 +6586,7 @@ }; D352A1B6EB59F8FB2FE83A83AE04A597 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75AA560774BFE5E9C616BDBB3A1F6BB9 /* Bolts.xcconfig */; + baseConfigurationReference = D81C43CEB0259EA9FC423C2560D19C80 /* Bolts.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4643,7 +6615,7 @@ }; D58FAEAD6AE7D588840BDB610ED0D8A4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41A74D3149BFEEC597096530B36B7834 /* OAuthSwift.xcconfig */; + baseConfigurationReference = 393E89BD495B7E129993255B3ECEFCBD /* OAuthSwift.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4671,9 +6643,39 @@ }; name = Debug; }; + DAD90D34FA3C7623B8A4CCE1E2D5E064 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E26FE18769839444179321C67936EF19 /* AeroGearHttp.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AeroGearHttp/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AeroGearHttp/AeroGearHttp.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = AeroGearHttp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; DBA888CC199D653E1E5E69F6F16EE207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93CBD14BDECEE87E398D848CC0A0EA09 /* Locksmith.xcconfig */; + baseConfigurationReference = 2E3A94397718321039FC66C72D3207FC /* Locksmith.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4701,9 +6703,38 @@ }; name = Debug; }; + DD5F9C906269A22E1B56C99551644664 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D4CB6A8D6FA511ED7B3405B95052C075 /* TYMActivityIndicatorView.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/TYMActivityIndicatorView/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/TYMActivityIndicatorView/TYMActivityIndicatorView.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = TYMActivityIndicatorView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; DE29E17EF9D69AAB47289CF7F77588BA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 362F5A481DC62449AFCAAF53EBECE26C /* FBSDKCoreKit.xcconfig */; + baseConfigurationReference = E8BF1D58D62BBC46739AE701C23DF542 /* FBSDKCoreKit.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4732,7 +6763,7 @@ }; DEA6A42753EBCEF32992807141EB9AF4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BAD806F54BFBB7F262E3CD8FDDB7C8C0 /* BSGridCollectionViewLayout.xcconfig */; + baseConfigurationReference = C9757E4813998613DBCABC4AF9ADC77A /* BSGridCollectionViewLayout.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4760,9 +6791,9 @@ }; name = Debug; }; - E96A88CCE64640DF74DF0E276337B513 /* Debug */ = { + F310993D6A449DA5BD69FC752969BFD7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E2783BFC3EE592D41AAEFE93C7A48B7 /* Pods-VendooUITests.debug.xcconfig */; + baseConfigurationReference = 06811EDE471F7D6A74CCE693BC33AD9A /* AeroGearOAuth2.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CURRENT_PROJECT_VERSION = 1; @@ -4773,20 +6804,17 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-VendooUITests/Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AeroGearOAuth2/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.3; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap"; MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_VendooUITests; + PRODUCT_NAME = AeroGearOAuth2; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; @@ -4805,24 +6833,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 269C7E2F022C02FD01F202C5596400D2 /* Build configuration list for PBXNativeTarget "SWRevealViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1B3B1715F1CCC422BA3C2DCC4C17DE2C /* Debug */, - 4287C621D611FB57582C6C0AB27391A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2992E13F4B134B6303748B412A79C0DD /* Build configuration list for PBXNativeTarget "Pods-VendooUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E96A88CCE64640DF74DF0E276337B513 /* Debug */, - 76EF982968E3DDB313FCDC3039F54ACC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4859,6 +6869,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5185A8EEE34AB757DDA98382F8D9E3DA /* Build configuration list for PBXNativeTarget "AeroGearOAuth2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F310993D6A449DA5BD69FC752969BFD7 /* Debug */, + 921930B9ACE4505D9988EBB07BFEC851 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5C8B6420BE123C383090EBA9FE223DEE /* Build configuration list for PBXNativeTarget "TYMActivityIndicatorView" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DD5F9C906269A22E1B56C99551644664 /* Debug */, + 1CB3E21E57526DB7C8A1DB1DC30BDBA4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 65C945B9F8F7427F83E2AD2F43DF0BC5 /* Build configuration list for PBXNativeTarget "OAuthSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4877,6 +6905,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 79337184FF0B6E518A3D52AD898F75CA /* Build configuration list for PBXNativeTarget "PicoKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 09DCD7B5ABC0BE2422EC17FF22EEA61F /* Debug */, + 09B8B93DA94703982480DC610CD974DE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7CD1D01AF31766606955AA9F3C4BEEF1 /* Build configuration list for PBXNativeTarget "GDataXML-HTML" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 406C23A6F630DB686E934348A1CC25E8 /* Debug */, + 8DA1DA9EAE81D3DB196E2F722C81AC20 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 7F53C29A72B6CC355FE4F6B52F98F774 /* Build configuration list for PBXNativeTarget "FBSDKCoreKit" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4886,6 +6932,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 80B13B6EAD86ED2D1C36A7A5494AC881 /* Build configuration list for PBXNativeTarget "AeroGearHttp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DAD90D34FA3C7623B8A4CCE1E2D5E064 /* Debug */, + C8F24A56F9E1AD1E2DA11349F596E991 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 8A3F14F49485BB4DB6DD235823E6D9A6 /* Build configuration list for PBXNativeTarget "Locksmith" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4904,15 +6959,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 962C27742B42661BF9BD0D34A2B12EAA /* Build configuration list for PBXNativeTarget "Pods-Vendoo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - BA4540DEFF59A82976EDA47C6F08B87D /* Debug */, - 9E2809C1A2BC2AB19978439941B2EB33 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9F1716D804B22F3E073389A93AF3013F /* Build configuration list for PBXNativeTarget "UIImageViewModeScaleAspect" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4940,11 +6986,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C023253E8CF8BEE6EFFE47B471AD1F09 /* Build configuration list for PBXNativeTarget "Pods-VendooTests" */ = { + C5969A229B25A7B7998DEBA26757DB68 /* Build configuration list for PBXNativeTarget "Pods-Vendoo-VendooUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CA3AA597E38A5015BB069D5714DDD9C /* Debug */, - 3622AE798174707DB4F9B7265FA122D4 /* Release */, + 151116029941CF34767F2423407DF504 /* Debug */, + 5AF1BC7C537EEFF7139F68D8FFF1DA39 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -4958,11 +7004,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - ED771512D55A8281BFF8515F8C14C8E4 /* Build configuration list for PBXNativeTarget "TYMActivityIndicatorView" */ = { + D5E1317A17A0F704FD55EB601C38ED14 /* Build configuration list for PBXNativeTarget "Pods-Vendoo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7F406972F5DC59F184B2798541435494 /* Debug */, - 3FC599D72731487090570E5902633218 /* Release */, + 0712182561B9496D9621AD81B65AC931 /* Debug */, + 0D1F8B44ED062CEE5C370ABD3F357BDA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DCFA04D9F87841983F47B020C3F295D0 /* Build configuration list for PBXNativeTarget "AFNetworking" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9340D8E4B2DD920B75C8F847CAD25BB7 /* Debug */, + A78CB9DDCA338DC66015FA65B1E768B2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E3CF142449AE910A4F17FC537FC26C6A /* Build configuration list for PBXNativeTarget "SWRevealViewController" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 933454AB3B8E0564BA3DA640F235911A /* Debug */, + BBC7375D6A437EB9209BA9EEEFD0FA23 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E5EC02A2108814137A0A3AF049261295 /* Build configuration list for PBXNativeTarget "Pods-Vendoo-VendooTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 50E2F60EB327AAC23F436C90A1A5A849 /* Debug */, + 6B206FA9CED64B847BE81C25BD657AA8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooTests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AFNetworking.xcscheme similarity index 91% rename from Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooTests.xcscheme rename to Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AFNetworking.xcscheme index 7f92a81..68ef325 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooTests.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AFNetworking.xcscheme @@ -14,10 +14,10 @@ buildForArchiving = "YES"> + BuildableName = 'AFNetworking.framework'> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooUITests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearHttp.xcscheme similarity index 91% rename from Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooUITests.xcscheme rename to Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearHttp.xcscheme index 0671aee..2424389 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-VendooUITests.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearHttp.xcscheme @@ -14,10 +14,10 @@ buildForArchiving = "YES"> + BuildableName = 'AeroGearHttp.framework'> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearOAuth2.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearOAuth2.xcscheme new file mode 100644 index 0000000..bd581e9 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/AeroGearOAuth2.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Alamofire-SwiftyJSON.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Alamofire-SwiftyJSON.xcscheme index cf2f446..ebb77b2 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Alamofire-SwiftyJSON.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Alamofire-SwiftyJSON.xcscheme @@ -7,30 +7,33 @@ buildImplicitDependencies = "YES"> + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + BuildableIdentifier = "primary" + BlueprintIdentifier = "6E31B4FD268BEE6936B4477E4EDCD609" + BuildableName = "Alamofire_SwiftyJSON.framework" + BlueprintName = "Alamofire-SwiftyJSON" + ReferencedContainer = "container:Pods.xcodeproj"> + shouldUseLaunchSchemeArgsEnv = "YES"> + + + + + + + debugDocumentVersioning = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/GDataXML-HTML.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/GDataXML-HTML.xcscheme new file mode 100644 index 0000000..08e2b31 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/GDataXML-HTML.xcscheme @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/PicoKit.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/PicoKit.xcscheme new file mode 100644 index 0000000..6c37062 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/PicoKit.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooTests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooTests.xcscheme new file mode 100644 index 0000000..319fd06 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooTests.xcscheme @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooUITests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooUITests.xcscheme new file mode 100644 index 0000000..9e109b1 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo-VendooUITests.xcscheme @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo.xcscheme index 67b6d0d..077bbe4 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/Pods-Vendoo.xcscheme @@ -7,30 +7,33 @@ buildImplicitDependencies = "YES"> + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + BuildableIdentifier = "primary" + BlueprintIdentifier = "9AAFED731A7D62458AD19F177724048B" + BuildableName = "Pods_Vendoo.framework" + BlueprintName = "Pods-Vendoo" + ReferencedContainer = "container:Pods.xcodeproj"> + shouldUseLaunchSchemeArgsEnv = "YES"> + + + + + + + debugDocumentVersioning = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/SWRevealViewController.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/SWRevealViewController.xcscheme index 975ba29..05cb4d4 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/SWRevealViewController.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/SWRevealViewController.xcscheme @@ -14,7 +14,7 @@ buildForArchiving = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/TYMActivityIndicatorView.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/TYMActivityIndicatorView.xcscheme index 15b8294..811ae93 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/TYMActivityIndicatorView.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/TYMActivityIndicatorView.xcscheme @@ -14,7 +14,7 @@ buildForArchiving = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist index 49f2f95..e417190 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/okechi.xcuserdatad/xcschemes/xcschememanagement.plist @@ -4,6 +4,21 @@ SchemeUserState + AFNetworking.xcscheme + + isShown + + + AeroGearHttp.xcscheme + + isShown + + + AeroGearOAuth2.xcscheme + + isShown + + Alamofire-SwiftyJSON.xcscheme isShown @@ -49,6 +64,11 @@ isShown + GDataXML-HTML.xcscheme + + isShown + + Locksmith.xcscheme isShown @@ -59,21 +79,26 @@ isShown + PicoKit.xcscheme + + isShown + + + Pods-Vendoo-VendooTests.xcscheme + + isShown + + + Pods-Vendoo-VendooUITests.xcscheme + + isShown + + Pods-Vendoo.xcscheme isShown - Pods-VendooTests.xcscheme - - isShown - - - Pods-VendooUITests.xcscheme - - isShown - - SWRevealViewController.xcscheme isShown @@ -96,6 +121,122 @@ SuppressBuildableAutocreation - + + 0D52FE07CEB8B5458F3C73BB37A484FB + + primary + + + 0EB19C1377A747F81110D44E2D5FCF78 + + primary + + + 0FF38C485BD8E73F614C919F834D6EAB + + primary + + + 21020CCDF572876803FA95BD48270386 + + primary + + + 2AA2F4091B94E46EEE3AD6055CB49C7D + + primary + + + 30D7FCF8072F5D59AE1C98D94F9A6EC9 + + primary + + + 31CABCBBC4853F0A3523D99FE6D41F17 + + primary + + + 3C34098A7DACA89F52BF902062730F50 + + primary + + + 45935B91DF0442390E2CA6DEEF68AE99 + + primary + + + 4878C70B21CA37D7CB8A476BF986741B + + primary + + + 66B6577A34875C54541830039899A97A + + primary + + + 6E31B4FD268BEE6936B4477E4EDCD609 + + primary + + + 6EDC37F3FA92533C6AC3562458AA91F1 + + primary + + + 79C040AFDDCE1BCBF6D8B5EB0B85887F + + primary + + + 8AA3DDB8797222294E1288CB197A8347 + + primary + + + 8E87CBA9EBF6671AAFD3A8CCD2C3875B + + primary + + + 92943306EC8070DF9CD02ECD505D2CD5 + + primary + + + 9AAFED731A7D62458AD19F177724048B + + primary + + + 9D0F2E5EA1B46A5D72FFD42B0B39DBBC + + primary + + + B6184234CE5B97D6DADDB68315E67B58 + + primary + + + BB23E0C4DDD7DE0A3E6056FA65D2D721 + + primary + + + C59EE95662AD4757E7FCE220DB1AFA41 + + primary + + + F7DE5171AA3C53DA4E4A078B795C78EE + + primary + + + diff --git a/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m b/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m new file mode 100644 index 0000000..6a29cf8 --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_AFNetworking : NSObject +@end +@implementation PodsDummy_AFNetworking +@end diff --git a/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch b/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch new file mode 100644 index 0000000..1e116a3 --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch @@ -0,0 +1,11 @@ +#ifdef __OBJC__ +#import +#endif + +#ifndef TARGET_OS_IOS + #define TARGET_OS_IOS TARGET_OS_IPHONE +#endif + +#ifndef TARGET_OS_WATCH + #define TARGET_OS_WATCH 0 +#endif diff --git a/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h b/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h new file mode 100644 index 0000000..82a3f9d --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h @@ -0,0 +1,26 @@ +#import + +#import "AFNetworking.h" +#import "AFURLConnectionOperation.h" +#import "AFHTTPRequestOperation.h" +#import "AFHTTPRequestOperationManager.h" +#import "AFHTTPSessionManager.h" +#import "AFURLSessionManager.h" +#import "AFNetworkReachabilityManager.h" +#import "AFSecurityPolicy.h" +#import "AFURLRequestSerialization.h" +#import "AFURLResponseSerialization.h" +#import "AFNetworkActivityIndicatorManager.h" +#import "UIActivityIndicatorView+AFNetworking.h" +#import "UIAlertView+AFNetworking.h" +#import "UIButton+AFNetworking.h" +#import "UIImage+AFNetworking.h" +#import "UIImageView+AFNetworking.h" +#import "UIKit+AFNetworking.h" +#import "UIProgressView+AFNetworking.h" +#import "UIRefreshControl+AFNetworking.h" +#import "UIWebView+AFNetworking.h" + +FOUNDATION_EXPORT double AFNetworkingVersionNumber; +FOUNDATION_EXPORT const unsigned char AFNetworkingVersionString[]; + diff --git a/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap b/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap new file mode 100644 index 0000000..5892cd3 --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/AFNetworking.modulemap @@ -0,0 +1,6 @@ +framework module AFNetworking { + umbrella header "AFNetworking-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig b/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig new file mode 100644 index 0000000..c92e5f1 --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AFNetworking +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/AFNetworking/Info.plist b/Pods/Target Support Files/AFNetworking/Info.plist new file mode 100644 index 0000000..648acfd --- /dev/null +++ b/Pods/Target Support Files/AFNetworking/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.6.3 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-dummy.m b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-dummy.m new file mode 100644 index 0000000..f808329 --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_AeroGearHttp : NSObject +@end +@implementation PodsDummy_AeroGearHttp +@end diff --git a/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch new file mode 100644 index 0000000..aa992a4 --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ +#import +#endif + diff --git a/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-umbrella.h b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-umbrella.h new file mode 100644 index 0000000..848fe3c --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double AeroGearHttpVersionNumber; +FOUNDATION_EXPORT const unsigned char AeroGearHttpVersionString[]; + diff --git a/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.modulemap b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.modulemap new file mode 100644 index 0000000..0c3d599 --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.modulemap @@ -0,0 +1,6 @@ +framework module AeroGearHttp { + umbrella header "AeroGearHttp-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.xcconfig b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.xcconfig new file mode 100644 index 0000000..4e381f2 --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/AeroGearHttp.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +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} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/AeroGearHttp/Info.plist b/Pods/Target Support Files/AeroGearHttp/Info.plist new file mode 100644 index 0000000..89a577b --- /dev/null +++ b/Pods/Target Support Files/AeroGearHttp/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.6.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-dummy.m b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-dummy.m new file mode 100644 index 0000000..5f8700c --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_AeroGearOAuth2 : NSObject +@end +@implementation PodsDummy_AeroGearOAuth2 +@end diff --git a/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch new file mode 100644 index 0000000..aa992a4 --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ +#import +#endif + diff --git a/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-umbrella.h b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-umbrella.h new file mode 100644 index 0000000..3d0a114 --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double AeroGearOAuth2VersionNumber; +FOUNDATION_EXPORT const unsigned char AeroGearOAuth2VersionString[]; + diff --git a/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap new file mode 100644 index 0000000..60fdccf --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.modulemap @@ -0,0 +1,6 @@ +framework module AeroGearOAuth2 { + umbrella header "AeroGearOAuth2-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.xcconfig b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.xcconfig new file mode 100644 index 0000000..08c8798 --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/AeroGearOAuth2.xcconfig @@ -0,0 +1,11 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2 +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = -framework "Security" +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} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/AeroGearOAuth2/Info.plist b/Pods/Target Support Files/AeroGearOAuth2/Info.plist new file mode 100644 index 0000000..1c2e79e --- /dev/null +++ b/Pods/Target Support Files/AeroGearOAuth2/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.5.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-dummy.m b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-dummy.m new file mode 100644 index 0000000..a622425 --- /dev/null +++ b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_GDataXML_HTML : NSObject +@end +@implementation PodsDummy_GDataXML_HTML +@end diff --git a/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch new file mode 100644 index 0000000..aa992a4 --- /dev/null +++ b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML-prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ +#import +#endif + diff --git a/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap new file mode 100644 index 0000000..194f503 --- /dev/null +++ b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.modulemap @@ -0,0 +1,5 @@ +module libxml [system] { + header "/usr/include/libxml2/libxml/tree.h" + link "libxml" + export * +} diff --git a/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.xcconfig b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.xcconfig new file mode 100644 index 0000000..db8dea0 --- /dev/null +++ b/Pods/Target Support Files/GDataXML-HTML/GDataXML-HTML.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml +OTHER_LDFLAGS = -l"xml2" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/GDataXML-HTML/Info.plist b/Pods/Target Support Files/GDataXML-HTML/Info.plist new file mode 100644 index 0000000..b6b2813 --- /dev/null +++ b/Pods/Target Support Files/GDataXML-HTML/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.3.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/PicoKit/Info.plist b/Pods/Target Support Files/PicoKit/Info.plist new file mode 100644 index 0000000..ee30d1b --- /dev/null +++ b/Pods/Target Support Files/PicoKit/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.7.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/PicoKit/PicoKit-dummy.m b/Pods/Target Support Files/PicoKit/PicoKit-dummy.m new file mode 100644 index 0000000..ef0c291 --- /dev/null +++ b/Pods/Target Support Files/PicoKit/PicoKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_PicoKit : NSObject +@end +@implementation PodsDummy_PicoKit +@end diff --git a/Pods/Target Support Files/PicoKit/PicoKit-prefix.pch b/Pods/Target Support Files/PicoKit/PicoKit-prefix.pch new file mode 100644 index 0000000..251d0d1 --- /dev/null +++ b/Pods/Target Support Files/PicoKit/PicoKit-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#endif + +#import +#if __IPHONE_OS_VERSION_MIN_REQUIRED + #import + #import +#else + #import + #import +#endif diff --git a/Pods/Target Support Files/PicoKit/PicoKit-umbrella.h b/Pods/Target Support Files/PicoKit/PicoKit-umbrella.h new file mode 100644 index 0000000..f6a07e7 --- /dev/null +++ b/Pods/Target Support Files/PicoKit/PicoKit-umbrella.h @@ -0,0 +1,52 @@ +#import + +#import "PicoBindable.h" +#import "PicoConfig.h" +#import "PicoConstants.h" +#import "PicoReadable.h" +#import "PicoWritable.h" +#import "PicoXMLReader.h" +#import "PicoXMLWriter.h" +#import "PicoBoolConverter.h" +#import "PicoConvertable.h" +#import "PicoConverter.h" +#import "PicoDataConverter.h" +#import "PicoDateConverter.h" +#import "PicoNumberConverter.h" +#import "PicoStringConverter.h" +#import "PicoCache.h" +#import "PicoCacheEntry.h" +#import "PicoBindingSchema.h" +#import "PicoClassSchema.h" +#import "PicoPropertySchema.h" +#import "PicoXMLElement.h" +#import "OrderedDictionary.h" +#import "PicoSOAPReader.h" +#import "PicoSOAPWriter.h" +#import "SOAP11Body.h" +#import "SOAP11Detail.h" +#import "SOAP11Envelope.h" +#import "SOAP11Fault.h" +#import "SOAP11Header.h" +#import "SOAP12Body.h" +#import "SOAP12Detail.h" +#import "SOAP12Envelope.h" +#import "SOAP12Fault.h" +#import "SOAP12Faultcode.h" +#import "SOAP12FaultcodeEnum.h" +#import "SOAP12Faultreason.h" +#import "SOAP12Header.h" +#import "SOAP12NotUnderstoodType.h" +#import "SOAP12Reasontext.h" +#import "SOAP12Subcode.h" +#import "SOAP12SupportedEnvType.h" +#import "SOAP12UpgradeType.h" +#import "PicoSOAPClient.h" +#import "PicoSOAPRequestOperation.h" +#import "PicoXMLClient.h" +#import "PicoXMLRequestOperation.h" +#import "XMLWriter.h" + +FOUNDATION_EXPORT double PicoKitVersionNumber; +FOUNDATION_EXPORT const unsigned char PicoKitVersionString[]; + diff --git a/Pods/Target Support Files/PicoKit/PicoKit.modulemap b/Pods/Target Support Files/PicoKit/PicoKit.modulemap new file mode 100644 index 0000000..2e8521e --- /dev/null +++ b/Pods/Target Support Files/PicoKit/PicoKit.modulemap @@ -0,0 +1,6 @@ +framework module PicoKit { + umbrella header "PicoKit-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/PicoKit/PicoKit.xcconfig b/Pods/Target Support Files/PicoKit/PicoKit.xcconfig new file mode 100644 index 0000000..2493ac8 --- /dev/null +++ b/Pods/Target Support Files/PicoKit/PicoKit.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/PicoKit +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" $(SDKROOT)/usr/include/libxml2 +OTHER_LDFLAGS = -l"xml2" -framework "CFNetwork" -framework "MobileCoreServices" -framework "SystemConfiguration" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/Pods-VendooTests/Info.plist b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Info.plist similarity index 100% rename from Pods/Target Support Files/Pods-VendooTests/Info.plist rename to Pods/Target Support Files/Pods-Vendoo-VendooTests/Info.plist diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown new file mode 100644 index 0000000..4512c74 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.markdown @@ -0,0 +1,1043 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## AFNetworking + +Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + +## AeroGearHttp + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## AeroGearOAuth2 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## Alamofire + +Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) + +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. + + +## Alamofire-SwiftyJSON + +Copyright (c) 2016 starboychina + +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. + + +## BSGridCollectionViewLayout + +Copyright (c) 2015 Joakim Gyllstrom + +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. + + +## BSImagePicker + +Copyright (c) 2015 Joakim Gyllstrom + +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. + + +## Bolts + +BSD License + +For Bolts software + +Copyright (c) 2013-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +## FBSDKCoreKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## FBSDKLoginKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## FBSDKShareKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## Firebase + +Copyright 2016 Google + +## FirebaseAnalytics + +Copyright 2016 Google + +## FirebaseAuth + +Copyright 2016 Google + +## FirebaseDatabase + +Copyright 2016 Google + +## FirebaseInstanceID + +Copyright 2016 Google + +## FirebaseStorage + +Copyright 2016 Google Inc. + +## GDataXML-HTML + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## GoogleInterchangeUtilities + +Copyright 2015 Google Inc. + +## GoogleNetworkingUtilities + +Copyright 2015 Google Inc. + +## GoogleParsingUtilities + +Copyright 2015 Google Inc. + +## GoogleSymbolUtilities + +Copyright 2015 Google Inc. + +## GoogleUtilities + +Copyright 2015 Google Inc. + +## Locksmith + +Copyright (c) 2015 matthewpalmer + +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. + + +## OAuthSwift + +Copyright (c) 2014 Dongri Jin + +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. + + +## PicoKit + +The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + +## SWRevealViewController + + Copyright (c) 2013 Joan Lluch + + 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. + + Early code inspired on a similar class by Philip Kluz (Philip.Kluz@zuui.org) + +## SwiftyJSON + +The MIT License (MIT) + +Copyright (c) 2014 Ruoyu Fu + +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. + + +## TYMActivityIndicatorView + +Copyright (c) 2014 Yiming Tang, http://xianqu.org + +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. + + +## UIImageViewModeScaleAspect + +Copyright (c) 2013 Vivien Cormier (http://www.viviencormier.fr/) + +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/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist new file mode 100644 index 0000000..06a3952 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-acknowledgements.plist @@ -0,0 +1,1189 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + Title + AFNetworking + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearHttp + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearOAuth2 + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) + +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. + + Title + Alamofire + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016 starboychina + +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. + + Title + Alamofire-SwiftyJSON + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 Joakim Gyllstrom <joakim@backslashed.se> + +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. + + Title + BSGridCollectionViewLayout + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 Joakim Gyllstrom <joakim@backslashed.se> + +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. + + Title + BSImagePicker + Type + PSGroupSpecifier + + + FooterText + BSD License + +For Bolts software + +Copyright (c) 2013-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + Title + Bolts + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKCoreKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKLoginKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKShareKit + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + Firebase + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseAnalytics + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseAuth + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseDatabase + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseInstanceID + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google Inc. + Title + FirebaseStorage + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + GDataXML-HTML + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleInterchangeUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleNetworkingUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleParsingUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleSymbolUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 matthewpalmer <matt@matthewpalmer.net> + +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. + + Title + Locksmith + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014 Dongri Jin <dongriat@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. + + Title + OAuthSwift + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + Title + PicoKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2013 Joan Lluch <joan.lluch@sweetwilliamsl.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. + + Early code inspired on a similar class by Philip Kluz (Philip.Kluz@zuui.org) + Title + SWRevealViewController + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2014 Ruoyu Fu + +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. + + Title + SwiftyJSON + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014 Yiming Tang, http://xianqu.org + +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. + + Title + TYMActivityIndicatorView + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2013 Vivien Cormier (http://www.viviencormier.fr/) + +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. + Title + UIImageViewModeScaleAspect + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-dummy.m b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-dummy.m new file mode 100644 index 0000000..b1b6a94 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_Vendoo_VendooTests : NSObject +@end +@implementation PodsDummy_Pods_Vendoo_VendooTests +@end diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-frameworks.sh b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-frameworks.sh similarity index 51% rename from Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-frameworks.sh rename to Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-frameworks.sh index 893c16a..d1e8b04 100755 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-frameworks.sh +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-frameworks.sh @@ -82,3 +82,46 @@ strip_invalid_archs() { fi } + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSImagePicker/BSImagePicker.framework" + install_framework "$BUILT_PRODUCTS_DIR/Bolts/Bolts.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" + install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" + install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" + install_framework "$BUILT_PRODUCTS_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSImagePicker/BSImagePicker.framework" + install_framework "$BUILT_PRODUCTS_DIR/Bolts/Bolts.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" + install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" + install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" + install_framework "$BUILT_PRODUCTS_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework" +fi diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-resources.sh b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-resources.sh similarity index 100% rename from Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-resources.sh rename to Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-resources.sh diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-umbrella.h b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-umbrella.h new file mode 100644 index 0000000..bd99960 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_Vendoo_VendooTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_Vendoo_VendooTestsVersionString[]; + diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig new file mode 100644 index 0000000..47fa7c5 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig @@ -0,0 +1,11 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +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 diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap new file mode 100644 index 0000000..50b8c54 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_Vendoo_VendooTests { + umbrella header "Pods-Vendoo-VendooTests-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig new file mode 100644 index 0000000..47fa7c5 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig @@ -0,0 +1,11 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +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 diff --git a/Pods/Target Support Files/Pods-VendooUITests/Info.plist b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Info.plist similarity index 100% rename from Pods/Target Support Files/Pods-VendooUITests/Info.plist rename to Pods/Target Support Files/Pods-Vendoo-VendooUITests/Info.plist diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown new file mode 100644 index 0000000..4512c74 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.markdown @@ -0,0 +1,1043 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## AFNetworking + +Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + +## AeroGearHttp + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## AeroGearOAuth2 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## Alamofire + +Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) + +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. + + +## Alamofire-SwiftyJSON + +Copyright (c) 2016 starboychina + +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. + + +## BSGridCollectionViewLayout + +Copyright (c) 2015 Joakim Gyllstrom + +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. + + +## BSImagePicker + +Copyright (c) 2015 Joakim Gyllstrom + +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. + + +## Bolts + +BSD License + +For Bolts software + +Copyright (c) 2013-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +## FBSDKCoreKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## FBSDKLoginKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## FBSDKShareKit + +Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + +## Firebase + +Copyright 2016 Google + +## FirebaseAnalytics + +Copyright 2016 Google + +## FirebaseAuth + +Copyright 2016 Google + +## FirebaseDatabase + +Copyright 2016 Google + +## FirebaseInstanceID + +Copyright 2016 Google + +## FirebaseStorage + +Copyright 2016 Google Inc. + +## GDataXML-HTML + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## GoogleInterchangeUtilities + +Copyright 2015 Google Inc. + +## GoogleNetworkingUtilities + +Copyright 2015 Google Inc. + +## GoogleParsingUtilities + +Copyright 2015 Google Inc. + +## GoogleSymbolUtilities + +Copyright 2015 Google Inc. + +## GoogleUtilities + +Copyright 2015 Google Inc. + +## Locksmith + +Copyright (c) 2015 matthewpalmer + +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. + + +## OAuthSwift + +Copyright (c) 2014 Dongri Jin + +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. + + +## PicoKit + +The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + +## SWRevealViewController + + Copyright (c) 2013 Joan Lluch + + 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. + + Early code inspired on a similar class by Philip Kluz (Philip.Kluz@zuui.org) + +## SwiftyJSON + +The MIT License (MIT) + +Copyright (c) 2014 Ruoyu Fu + +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. + + +## TYMActivityIndicatorView + +Copyright (c) 2014 Yiming Tang, http://xianqu.org + +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. + + +## UIImageViewModeScaleAspect + +Copyright (c) 2013 Vivien Cormier (http://www.viviencormier.fr/) + +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/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist new file mode 100644 index 0000000..06a3952 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-acknowledgements.plist @@ -0,0 +1,1189 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + Title + AFNetworking + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearHttp + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearOAuth2 + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) + +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. + + Title + Alamofire + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016 starboychina + +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. + + Title + Alamofire-SwiftyJSON + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 Joakim Gyllstrom <joakim@backslashed.se> + +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. + + Title + BSGridCollectionViewLayout + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 Joakim Gyllstrom <joakim@backslashed.se> + +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. + + Title + BSImagePicker + Type + PSGroupSpecifier + + + FooterText + BSD License + +For Bolts software + +Copyright (c) 2013-present, Facebook, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name Facebook nor the names of its contributors may be used to + endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + Title + Bolts + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKCoreKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKLoginKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + +You are hereby granted a non-exclusive, worldwide, royalty-free license to use, +copy, modify, and distribute this software in source code or binary form for use +in connection with the web services and APIs provided by Facebook. + +As with any software that integrates with the Facebook platform, your use of +this software is subject to the Facebook Developer Principles and Policies +[http://developers.facebook.com/policy/]. This copyright 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. + + Title + FBSDKShareKit + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + Firebase + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseAnalytics + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseAuth + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseDatabase + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google + Title + FirebaseInstanceID + Type + PSGroupSpecifier + + + FooterText + Copyright 2016 Google Inc. + Title + FirebaseStorage + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + GDataXML-HTML + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleInterchangeUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleNetworkingUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleParsingUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleSymbolUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright 2015 Google Inc. + Title + GoogleUtilities + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015 matthewpalmer <matt@matthewpalmer.net> + +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. + + Title + Locksmith + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014 Dongri Jin <dongriat@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. + + Title + OAuthSwift + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + Title + PicoKit + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2013 Joan Lluch <joan.lluch@sweetwilliamsl.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. + + Early code inspired on a similar class by Philip Kluz (Philip.Kluz@zuui.org) + Title + SWRevealViewController + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2014 Ruoyu Fu + +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. + + Title + SwiftyJSON + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014 Yiming Tang, http://xianqu.org + +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. + + Title + TYMActivityIndicatorView + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2013 Vivien Cormier (http://www.viviencormier.fr/) + +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. + Title + UIImageViewModeScaleAspect + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-dummy.m b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-dummy.m new file mode 100644 index 0000000..1e63033 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_Vendoo_VendooUITests : NSObject +@end +@implementation PodsDummy_Pods_Vendoo_VendooUITests +@end diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-frameworks.sh b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-frameworks.sh similarity index 51% rename from Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-frameworks.sh rename to Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-frameworks.sh index 893c16a..d1e8b04 100755 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-frameworks.sh +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-frameworks.sh @@ -82,3 +82,46 @@ strip_invalid_archs() { fi } + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSImagePicker/BSImagePicker.framework" + install_framework "$BUILT_PRODUCTS_DIR/Bolts/Bolts.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" + install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" + install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" + install_framework "$BUILT_PRODUCTS_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" + install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" + install_framework "$BUILT_PRODUCTS_DIR/BSImagePicker/BSImagePicker.framework" + install_framework "$BUILT_PRODUCTS_DIR/Bolts/Bolts.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" + install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" + install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" + install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" + install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" + install_framework "$BUILT_PRODUCTS_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework" +fi diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-resources.sh b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-resources.sh similarity index 100% rename from Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-resources.sh rename to Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-resources.sh diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-umbrella.h b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-umbrella.h new file mode 100644 index 0000000..773b098 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_Vendoo_VendooUITestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_Vendoo_VendooUITestsVersionString[]; + diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig new file mode 100644 index 0000000..47fa7c5 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig @@ -0,0 +1,11 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +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 diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap new file mode 100644 index 0000000..3481668 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_Vendoo_VendooUITests { + umbrella header "Pods-Vendoo-VendooUITests-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig new file mode 100644 index 0000000..47fa7c5 --- /dev/null +++ b/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig @@ -0,0 +1,11 @@ +EMBEDDED_CONTENT_CONTAINS_SWIFT = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +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 diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown index df92f75..4512c74 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.markdown @@ -1,6 +1,441 @@ # Acknowledgements This application makes use of the following third party libraries: +## AFNetworking + +Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + +## AeroGearHttp + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +## AeroGearOAuth2 + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ## Alamofire Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) @@ -213,6 +648,212 @@ Copyright 2016 Google Copyright 2016 Google Inc. +## GDataXML-HTML + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ## GoogleInterchangeUtilities Copyright 2015 Google Inc. @@ -279,6 +920,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## PicoKit + +The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + ## SWRevealViewController Copyright (c) 2013 Joan Lluch diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist index 4ee9b9f..06a3952 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-acknowledgements.plist @@ -12,6 +12,453 @@ Type PSGroupSpecifier + + FooterText + Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) + +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. + + Title + AFNetworking + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearHttp + Type + PSGroupSpecifier + + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + AeroGearOAuth2 + Type + PSGroupSpecifier + FooterText Copyright (c) 2014-2016 Alamofire Software Foundation (http://alamofire.org/) @@ -280,6 +727,216 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Type PSGroupSpecifier + + FooterText + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + Title + GDataXML-HTML + Type + PSGroupSpecifier + FooterText Copyright 2015 Google Inc. @@ -374,6 +1031,36 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2013 Leansoft Technology 51startup@sina.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. + + + Title + PicoKit + Type + PSGroupSpecifier + FooterText Copyright (c) 2013 Joan Lluch <joan.lluch@sweetwilliamsl.com> diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh index bdddf06..d1e8b04 100755 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh @@ -84,6 +84,9 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" @@ -92,14 +95,19 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" install_framework "$BUILT_PRODUCTS_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/AFNetworking/AFNetworking.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearHttp/AeroGearHttp.framework" + install_framework "$BUILT_PRODUCTS_DIR/AeroGearOAuth2/AeroGearOAuth2.framework" install_framework "$BUILT_PRODUCTS_DIR/Alamofire/Alamofire.framework" install_framework "$BUILT_PRODUCTS_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework" install_framework "$BUILT_PRODUCTS_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework" @@ -108,8 +116,10 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "$BUILT_PRODUCTS_DIR/FBSDKCoreKit/FBSDKCoreKit.framework" install_framework "$BUILT_PRODUCTS_DIR/FBSDKLoginKit/FBSDKLoginKit.framework" install_framework "$BUILT_PRODUCTS_DIR/FBSDKShareKit/FBSDKShareKit.framework" + install_framework "$BUILT_PRODUCTS_DIR/GDataXML-HTML/GDataXML_HTML.framework" install_framework "$BUILT_PRODUCTS_DIR/Locksmith/Locksmith.framework" install_framework "$BUILT_PRODUCTS_DIR/OAuthSwift/OAuthSwift.framework" + install_framework "$BUILT_PRODUCTS_DIR/PicoKit/PicoKit.framework" install_framework "$BUILT_PRODUCTS_DIR/SWRevealViewController/SWRevealViewController.framework" install_framework "$BUILT_PRODUCTS_DIR/SwiftyJSON/SwiftyJSON.framework" install_framework "$BUILT_PRODUCTS_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework" diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig index c8a3ac9..47fa7c5 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig @@ -1,10 +1,10 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AdSupport" -framework "AddressBook" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig index c8a3ac9..47fa7c5 100644 --- a/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig +++ b/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig @@ -1,10 +1,10 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp" "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/PicoKit" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks" "${PODS_ROOT}/FirebaseAuth/Frameworks/frameworks" "${PODS_ROOT}/FirebaseDatabase/Frameworks" "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks" "${PODS_ROOT}/FirebaseStorage/Frameworks" "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks" "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks" "${PODS_ROOT}/GoogleParsingUtilities/Frameworks" "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks" "${PODS_ROOT}/GoogleUtilities/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" +HEADER_SEARCH_PATHS = $(inherited) ${PODS_ROOT}/Firebase/Analytics/Sources $(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/GDataXML-HTML/libxml $(SDKROOT)/usr/include/libxml2 $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AdSupport" -framework "AddressBook" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking/AFNetworking.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearHttp/AeroGearHttp.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/AeroGearOAuth2/AeroGearOAuth2.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/GDataXML-HTML/GDataXML_HTML.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PicoKit/PicoKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "AFNetworking" -framework "AdSupport" -framework "AddressBook" -framework "AeroGearHttp" -framework "AeroGearOAuth2" -framework "Alamofire" -framework "Alamofire_SwiftyJSON" -framework "BSGridCollectionViewLayout" -framework "BSImagePicker" -framework "Bolts" -framework "CFNetwork" -framework "CoreGraphics" -framework "FBSDKCoreKit" -framework "FBSDKLoginKit" -framework "FBSDKShareKit" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseDatabase" -framework "FirebaseInstanceID" -framework "FirebaseStorage" -framework "GDataXML_HTML" -framework "GoogleInterchangeUtilities" -framework "GoogleNetworkingUtilities" -framework "GoogleParsingUtilities" -framework "GoogleSymbolUtilities" -framework "GoogleUtilities" -framework "Locksmith" -framework "MobileCoreServices" -framework "OAuthSwift" -framework "PicoKit" -framework "SWRevealViewController" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SwiftyJSON" -framework "SystemConfiguration" -framework "TYMActivityIndicatorView" -framework "UIImageViewModeScaleAspect" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.markdown deleted file mode 100644 index 102af75..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.plist b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.plist deleted file mode 100644 index 7acbad1..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - 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/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-dummy.m b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-dummy.m deleted file mode 100644 index 3ba7559..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_VendooTests : NSObject -@end -@implementation PodsDummy_Pods_VendooTests -@end diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-umbrella.h b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-umbrella.h deleted file mode 100644 index 9d159b6..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_VendooTestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_VendooTestsVersionString[]; - diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.debug.xcconfig b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.debug.xcconfig deleted file mode 100644 index f7030c6..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap deleted file mode 100644 index 4b84733..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_VendooTests { - umbrella header "Pods-VendooTests-umbrella.h" - - export * - module * { export * } -} diff --git a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.release.xcconfig b/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.release.xcconfig deleted file mode 100644 index f7030c6..0000000 --- a/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.markdown b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.markdown deleted file mode 100644 index 102af75..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.plist b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.plist deleted file mode 100644 index 7acbad1..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - 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/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-dummy.m b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-dummy.m deleted file mode 100644 index de862ad..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_VendooUITests : NSObject -@end -@implementation PodsDummy_Pods_VendooUITests -@end diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-umbrella.h b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-umbrella.h deleted file mode 100644 index b036c7c..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_VendooUITestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_VendooUITestsVersionString[]; - diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.debug.xcconfig b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.debug.xcconfig deleted file mode 100644 index f7030c6..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap deleted file mode 100644 index a2ec5da..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_VendooUITests { - umbrella header "Pods-VendooUITests-umbrella.h" - - export * - module * { export * } -} diff --git a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.release.xcconfig b/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.release.xcconfig deleted file mode 100644 index f7030c6..0000000 --- a/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Alamofire" "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout" "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker" "$PODS_CONFIGURATION_BUILD_DIR/Bolts" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit" "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit" "$PODS_CONFIGURATION_BUILD_DIR/Locksmith" "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift" "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController" "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON" "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView" "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" "${PODS_ROOT}/Headers/Public/FirebaseAuth" "${PODS_ROOT}/Headers/Public/FirebaseDatabase" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/FirebaseStorage" "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" "${PODS_ROOT}/Headers/Public/GoogleUtilities" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire-SwiftyJSON/Alamofire_SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Alamofire/Alamofire.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/BSImagePicker/BSImagePicker.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Bolts/Bolts.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKCoreKit/FBSDKCoreKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKLoginKit/FBSDKLoginKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSDKShareKit/FBSDKShareKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Locksmith/Locksmith.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/OAuthSwift/OAuthSwift.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SWRevealViewController/SWRevealViewController.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftyJSON/SwiftyJSON.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/TYMActivityIndicatorView/TYMActivityIndicatorView.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/UIImageViewModeScaleAspect/UIImageViewModeScaleAspect.framework/Headers" -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/Firebase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAnalytics" -isystem "${PODS_ROOT}/Headers/Public/FirebaseAuth" -isystem "${PODS_ROOT}/Headers/Public/FirebaseDatabase" -isystem "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" -isystem "${PODS_ROOT}/Headers/Public/FirebaseStorage" -isystem "${PODS_ROOT}/Headers/Public/GoogleInterchangeUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleNetworkingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleParsingUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleSymbolUtilities" -isystem "${PODS_ROOT}/Headers/Public/GoogleUtilities" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Vendoo.podspec b/Vendoo.podspec deleted file mode 100644 index 399230b..0000000 --- a/Vendoo.podspec +++ /dev/null @@ -1,34 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'Vendoo' - s.version = '<#Project Version#>' - s.license = '<#License#>' - s.homepage = '<#Homepage URL#>' - s.authors = '<#Author Name#>': '<#Author Email#>' - s.summary = '<#Summary (Up to 140 characters#>' - - s.platform = :ios, '<#iOS Platform#>' - s.source = git: '<#Github Repo URL#>', :tag => s.version - s.source_files = '<#Resources#>' - s.frameworks = '<#Required Frameworks#>' - s.requires_arc = true - -# Pod Dependencies - s.dependencies = pod 'PicoKit' - s.dependencies = pod 'Firebase', '>= 2.5.0' - s.dependencies = pod 'FirebaseAuth' - s.dependencies = pod 'Firebase/Database' - s.dependencies = pod 'Locksmith' - s.dependencies = pod 'Alamofire-SwiftyJSON' - s.dependencies = pod 'OAuthSwift', '~> 0.5.0' - s.dependencies = pod 'AeroGearOAuth2' - s.dependencies = pod 'FBSDKCoreKit' - s.dependencies = pod 'FBSDKLoginKit' - s.dependencies = pod 'FBSDKShareKit' - s.dependencies = pod 'SWXMLHash', '~> 2.4.0' - s.dependencies = pod 'Firebase/Storage' - s.dependencies = pod 'TYMActivityIndicatorView' - s.dependencies = pod 'BSImagePicker', '~> 2.3' - s.dependencies = pod 'SWRevealViewController' - s.dependencies = pod 'SOAPEngine' - -end \ No newline at end of file diff --git a/Vendoo.xcodeproj/project.pbxproj b/Vendoo.xcodeproj/project.pbxproj index 117c671..6cc5f36 100644 --- a/Vendoo.xcodeproj/project.pbxproj +++ b/Vendoo.xcodeproj/project.pbxproj @@ -7,7 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 1BD4D4EBDE19E2FBA2CCB40C /* Pods_VendooUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FACABBA7656B6698731A6B0 /* Pods_VendooUITests.framework */; }; + 1AF4536D4F368F9FDA9FC557 /* Pods_Vendoo_VendooUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D1FC6F6278B48A7BA9A9E03 /* Pods_Vendoo_VendooUITests.framework */; }; 3E0F76FC1D01B2D7004A0159 /* Listing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E0F76FB1D01B2D7004A0159 /* Listing.swift */; }; 3E1AA4301D0D9B3F005FCCBB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3E1AA42F1D0D9B3F005FCCBB /* Main.storyboard */; }; 3E1AA4321D0DA071005FCCBB /* MenuPanelViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E1AA4311D0DA071005FCCBB /* MenuPanelViewController.swift */; }; @@ -39,9 +39,10 @@ 3EC3252D1CF894C400626C48 /* ItemImagePickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC3252C1CF894C400626C48 /* ItemImagePickerViewController.swift */; }; 3EC3252F1CF894E500626C48 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3EC3252E1CF894E500626C48 /* AVFoundation.framework */; }; 3ECEDB871CF9C722003566B3 /* ListingPreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ECEDB861CF9C722003566B3 /* ListingPreviewViewController.swift */; }; + 3EDE75AE1D67B92F00BC3472 /* CategoryPopUpController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EDE75AD1D67B92F00BC3472 /* CategoryPopUpController.swift */; }; 3EFB0E331D0B968300A05D7A /* SideMenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EFB0E321D0B968300A05D7A /* SideMenuView.swift */; }; - 74B70499095A0A176D44DA70 /* Pods_Vendoo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8F69918E43DC1276F42551F /* Pods_Vendoo.framework */; }; - CA20AB81F709511F1A8C7963 /* Pods_VendooTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D05AEDAE485B93305CC629B5 /* Pods_VendooTests.framework */; }; + 3F8E0464700649BDD8B552B1 /* Pods_Vendoo_VendooTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B876489113F498AF1D2FD7E9 /* Pods_Vendoo_VendooTests.framework */; }; + A87525ED0EE7D42D9A7708D8 /* Pods_Vendoo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23ECC3C8465826BD6AC74A02 /* Pods_Vendoo.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -62,7 +63,8 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 01906CAE3AD437ED1B183228 /* Pods-VendooTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VendooTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.release.xcconfig"; sourceTree = ""; }; + 23ECC3C8465826BD6AC74A02 /* Pods_Vendoo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3AB871700182B3C683FC9049 /* Pods-Vendoo-VendooUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo-VendooUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.release.xcconfig"; sourceTree = ""; }; 3E0F76FB1D01B2D7004A0159 /* Listing.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Listing.swift; sourceTree = ""; }; 3E1AA42F1D0D9B3F005FCCBB /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 3E1AA4311D0DA071005FCCBB /* MenuPanelViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MenuPanelViewController.swift; sourceTree = ""; }; @@ -102,15 +104,15 @@ 3EC3252C1CF894C400626C48 /* ItemImagePickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ItemImagePickerViewController.swift; sourceTree = ""; }; 3EC3252E1CF894E500626C48 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; 3ECEDB861CF9C722003566B3 /* ListingPreviewViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListingPreviewViewController.swift; sourceTree = ""; }; + 3EDE75AD1D67B92F00BC3472 /* CategoryPopUpController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryPopUpController.swift; sourceTree = ""; }; 3EFB0E321D0B968300A05D7A /* SideMenuView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SideMenuView.swift; sourceTree = ""; }; - 74175BFD1E28D4B4E03E5BAB /* Pods-VendooUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VendooUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.release.xcconfig"; sourceTree = ""; }; - 8FACABBA7656B6698731A6B0 /* Pods_VendooUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_VendooUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A262396B34A6809EF08AFDB0 /* Pods-VendooUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VendooUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests.debug.xcconfig"; sourceTree = ""; }; - B82C7DCBE1F71A4082247637 /* Pods-VendooTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-VendooTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests.debug.xcconfig"; sourceTree = ""; }; - D05AEDAE485B93305CC629B5 /* Pods_VendooTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_VendooTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7D1FC6F6278B48A7BA9A9E03 /* Pods_Vendoo_VendooUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A44ED233D6B5454EF92FEB08 /* Pods-Vendoo-VendooUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo-VendooUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests.debug.xcconfig"; sourceTree = ""; }; + B876489113F498AF1D2FD7E9 /* Pods_Vendoo_VendooTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo_VendooTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; E16BF843456476262BD075A1 /* Pods-Vendoo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.debug.xcconfig"; sourceTree = ""; }; + E25BEE3F146F38C121B72346 /* Pods-Vendoo-VendooTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo-VendooTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.debug.xcconfig"; sourceTree = ""; }; + E2F692D9C9BF2781499C4131 /* Pods-Vendoo-VendooTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo-VendooTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests.release.xcconfig"; sourceTree = ""; }; F4EEC78476192D3033A50037 /* Pods-Vendoo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Vendoo.release.xcconfig"; path = "Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo.release.xcconfig"; sourceTree = ""; }; - F8F69918E43DC1276F42551F /* Pods_Vendoo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Vendoo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -120,7 +122,7 @@ files = ( 3EC3252F1CF894E500626C48 /* AVFoundation.framework in Frameworks */, 3EB2F5161CF442CF002E6D2C /* Security.framework in Frameworks */, - 74B70499095A0A176D44DA70 /* Pods_Vendoo.framework in Frameworks */, + A87525ED0EE7D42D9A7708D8 /* Pods_Vendoo.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -128,7 +130,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CA20AB81F709511F1A8C7963 /* Pods_VendooTests.framework in Frameworks */, + 3F8E0464700649BDD8B552B1 /* Pods_Vendoo_VendooTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -136,7 +138,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1BD4D4EBDE19E2FBA2CCB40C /* Pods_VendooUITests.framework in Frameworks */, + 1AF4536D4F368F9FDA9FC557 /* Pods_Vendoo_VendooUITests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -148,10 +150,10 @@ children = ( E16BF843456476262BD075A1 /* Pods-Vendoo.debug.xcconfig */, F4EEC78476192D3033A50037 /* Pods-Vendoo.release.xcconfig */, - B82C7DCBE1F71A4082247637 /* Pods-VendooTests.debug.xcconfig */, - 01906CAE3AD437ED1B183228 /* Pods-VendooTests.release.xcconfig */, - A262396B34A6809EF08AFDB0 /* Pods-VendooUITests.debug.xcconfig */, - 74175BFD1E28D4B4E03E5BAB /* Pods-VendooUITests.release.xcconfig */, + E25BEE3F146F38C121B72346 /* Pods-Vendoo-VendooTests.debug.xcconfig */, + E2F692D9C9BF2781499C4131 /* Pods-Vendoo-VendooTests.release.xcconfig */, + A44ED233D6B5454EF92FEB08 /* Pods-Vendoo-VendooUITests.debug.xcconfig */, + 3AB871700182B3C683FC9049 /* Pods-Vendoo-VendooUITests.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -315,6 +317,7 @@ 3E1DC3CC1D4232490091BC60 /* CategoriesTableViewController.swift */, 3EC3252C1CF894C400626C48 /* ItemImagePickerViewController.swift */, 3ECEDB861CF9C722003566B3 /* ListingPreviewViewController.swift */, + 3EDE75AD1D67B92F00BC3472 /* CategoryPopUpController.swift */, ); name = NewItemPostingSession; sourceTree = ""; @@ -335,9 +338,9 @@ 3EA668A21D02ECB100EE57A8 /* libicucore.tbd */, 3EC3252E1CF894E500626C48 /* AVFoundation.framework */, 3EB2F5151CF442CF002E6D2C /* Security.framework */, - F8F69918E43DC1276F42551F /* Pods_Vendoo.framework */, - D05AEDAE485B93305CC629B5 /* Pods_VendooTests.framework */, - 8FACABBA7656B6698731A6B0 /* Pods_VendooUITests.framework */, + 23ECC3C8465826BD6AC74A02 /* Pods_Vendoo.framework */, + B876489113F498AF1D2FD7E9 /* Pods_Vendoo_VendooTests.framework */, + 7D1FC6F6278B48A7BA9A9E03 /* Pods_Vendoo_VendooUITests.framework */, ); name = Frameworks; sourceTree = ""; @@ -349,12 +352,15 @@ isa = PBXNativeTarget; buildConfigurationList = 3E6CC37D1CF2A94B00E00A70 /* Build configuration list for PBXNativeTarget "Vendoo" */; buildPhases = ( - F467CC8AF77423C2B3AAB223 /* 📦 Check Pods Manifest.lock */, + 8D532FDF55F208776F1284EF /* 📦 Check Pods Manifest.lock */, + F467CC8AF77423C2B3AAB223 /* [CP] Check Pods Manifest.lock */, 3E6CC34F1CF2A94B00E00A70 /* Sources */, 3E6CC3501CF2A94B00E00A70 /* Frameworks */, 3E6CC3511CF2A94B00E00A70 /* Resources */, - 057830C90EFCCD7B10B4BA6D /* 📦 Embed Pods Frameworks */, - 2496EED87CE01F1EAE73BD6A /* 📦 Copy Pods Resources */, + 057830C90EFCCD7B10B4BA6D /* [CP] Embed Pods Frameworks */, + 2496EED87CE01F1EAE73BD6A /* [CP] Copy Pods Resources */, + 7A9D276114F95F89DAFE1AF3 /* 📦 Embed Pods Frameworks */, + B01688A25CD5C8E51F5A75BF /* 📦 Copy Pods Resources */, ); buildRules = ( ); @@ -369,12 +375,15 @@ isa = PBXNativeTarget; buildConfigurationList = 3E6CC3801CF2A94B00E00A70 /* Build configuration list for PBXNativeTarget "VendooTests" */; buildPhases = ( - 9F58E69456F56F20E6643056 /* 📦 Check Pods Manifest.lock */, + 2A9BA63E4CE4638416B6A19E /* 📦 Check Pods Manifest.lock */, + 9F58E69456F56F20E6643056 /* [CP] Check Pods Manifest.lock */, 3E6CC3651CF2A94B00E00A70 /* Sources */, 3E6CC3661CF2A94B00E00A70 /* Frameworks */, 3E6CC3671CF2A94B00E00A70 /* Resources */, - BB2BE6BA5C2D594FCCDF5838 /* 📦 Embed Pods Frameworks */, - 6484261450FDD9D1DF56ED0B /* 📦 Copy Pods Resources */, + BB2BE6BA5C2D594FCCDF5838 /* [CP] Embed Pods Frameworks */, + 6484261450FDD9D1DF56ED0B /* [CP] Copy Pods Resources */, + A89EA347AD44796A1A56446E /* 📦 Embed Pods Frameworks */, + 5DEC03FE0948D72B49061A3C /* 📦 Copy Pods Resources */, ); buildRules = ( ); @@ -390,11 +399,13 @@ isa = PBXNativeTarget; buildConfigurationList = 3E6CC3831CF2A94B00E00A70 /* Build configuration list for PBXNativeTarget "VendooUITests" */; buildPhases = ( - 99EF583910BFA3B053CE8591 /* 📦 Check Pods Manifest.lock */, + BCA592620202EE5EBFCD3DCA /* 📦 Check Pods Manifest.lock */, + 99EF583910BFA3B053CE8591 /* [CP] Check Pods Manifest.lock */, 3E6CC3701CF2A94B00E00A70 /* Sources */, 3E6CC3711CF2A94B00E00A70 /* Frameworks */, 3E6CC3721CF2A94B00E00A70 /* Resources */, - E5E78F727C025682CA6C7DBC /* 📦 Copy Pods Resources */, + E5E78F727C025682CA6C7DBC /* [CP] Copy Pods Resources */, + 8BE7DC0B35EAB7F5975A58B8 /* 📦 Copy Pods Resources */, ); buildRules = ( ); @@ -418,6 +429,7 @@ TargetAttributes = { 3E6CC3521CF2A94B00E00A70 = { CreatedOnToolsVersion = 7.3.1; + DevelopmentTeam = AP9PJ45KS8; }; 3E6CC3681CF2A94B00E00A70 = { CreatedOnToolsVersion = 7.3.1; @@ -479,7 +491,82 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 057830C90EFCCD7B10B4BA6D /* 📦 Embed Pods Frameworks */ = { + 057830C90EFCCD7B10B4BA6D /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 2496EED87CE01F1EAE73BD6A /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 2A9BA63E4CE4638416B6A19E /* 📦 Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "📦 Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 5DEC03FE0948D72B49061A3C /* 📦 Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "📦 Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 6484261450FDD9D1DF56ED0B /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 7A9D276114F95F89DAFE1AF3 /* 📦 Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -494,7 +581,82 @@ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - 2496EED87CE01F1EAE73BD6A /* 📦 Copy Pods Resources */ = { + 8BE7DC0B35EAB7F5975A58B8 /* 📦 Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "📦 Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo-VendooUITests/Pods-Vendoo-VendooUITests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 8D532FDF55F208776F1284EF /* 📦 Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "📦 Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 99EF583910BFA3B053CE8591 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 9F58E69456F56F20E6643056 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + A89EA347AD44796A1A56446E /* 📦 Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "📦 Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo-VendooTests/Pods-Vendoo-VendooTests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + B01688A25CD5C8E51F5A75BF /* 📦 Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -509,59 +671,14 @@ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Vendoo/Pods-Vendoo-resources.sh\"\n"; showEnvVarsInLog = 0; }; - 6484261450FDD9D1DF56ED0B /* 📦 Copy Pods Resources */ = { + BB2BE6BA5C2D594FCCDF5838 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); - name = "📦 Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 99EF583910BFA3B053CE8591 /* 📦 Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "📦 Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; - 9F58E69456F56F20E6643056 /* 📦 Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "📦 Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; - BB2BE6BA5C2D594FCCDF5838 /* 📦 Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "📦 Embed Pods Frameworks"; + name = "[CP] Embed Pods Frameworks"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; @@ -569,22 +686,7 @@ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-VendooTests/Pods-VendooTests-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - E5E78F727C025682CA6C7DBC /* 📦 Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "📦 Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - F467CC8AF77423C2B3AAB223 /* 📦 Check Pods Manifest.lock */ = { + BCA592620202EE5EBFCD3DCA /* 📦 Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -599,6 +701,36 @@ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; showEnvVarsInLog = 0; }; + E5E78F727C025682CA6C7DBC /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-VendooUITests/Pods-VendooUITests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + F467CC8AF77423C2B3AAB223 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -628,6 +760,7 @@ 3EC325151CF7104300626C48 /* ItemTableViewController.swift in Sources */, 3EFB0E331D0B968300A05D7A /* SideMenuView.swift in Sources */, 3E1B1F091D24926C00DBCF08 /* EbaySettingsViewController.swift in Sources */, + 3EDE75AE1D67B92F00BC3472 /* CategoryPopUpController.swift in Sources */, 3E6CC3591CF2A94B00E00A70 /* SignInViewController.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -713,6 +846,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LINK_WITH_STANDARD_LIBRARIES = YES; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -756,7 +890,9 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 9.3; + LINK_WITH_STANDARD_LIBRARIES = YES; MTL_ENABLE_DEBUG_INFO = NO; + ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; SWIFT_OBJC_BRIDGING_HEADER = ""; TARGETED_DEVICE_FAMILY = "1,2"; @@ -772,12 +908,15 @@ buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; INCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = "\"Vendoo/**\" \"Pods/**\""; INFOPLIST_FILE = Vendoo/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LINK_WITH_STANDARD_LIBRARIES = YES; New_Setting = ""; - ONLY_ACTIVE_ARCH = NO; + ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "$(inherited)", "-l\"c++\"", @@ -853,10 +992,12 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.Kroleo.Vendoo; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE = ""; + SDKROOT = iphoneos; SWIFT_INCLUDE_PATHS = ""; SWIFT_OBJC_BRIDGING_HEADER = "Vendoo/Vendoo-Bridging-Header.h"; USER_HEADER_SEARCH_PATHS = "\"Vendoo/**\" \"Pods/**\""; - VALID_ARCHS = "arm64 armv7 armv7"; + VALID_ARCHS = "arm64 armv7 armv7s"; }; name = Debug; }; @@ -866,12 +1007,15 @@ buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; INCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = "\"Vendoo/**\" \"Pods/**\""; INFOPLIST_FILE = Vendoo/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LINK_WITH_STANDARD_LIBRARIES = YES; New_Setting = ""; - ONLY_ACTIVE_ARCH = NO; + ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "$(inherited)", "-l\"c++\"", @@ -947,16 +1091,18 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.Kroleo.Vendoo; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE = ""; + SDKROOT = iphoneos; SWIFT_INCLUDE_PATHS = ""; SWIFT_OBJC_BRIDGING_HEADER = "Vendoo/Vendoo-Bridging-Header.h"; USER_HEADER_SEARCH_PATHS = "\"Vendoo/**\" \"Pods/**\""; - VALID_ARCHS = "arm64 armv7 armv7"; + VALID_ARCHS = "arm64 armv7 armv7s"; }; name = Release; }; 3E6CC3811CF2A94B00E00A70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B82C7DCBE1F71A4082247637 /* Pods-VendooTests.debug.xcconfig */; + baseConfigurationReference = E25BEE3F146F38C121B72346 /* Pods-Vendoo-VendooTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; INFOPLIST_FILE = VendooTests/Info.plist; @@ -970,7 +1116,7 @@ }; 3E6CC3821CF2A94B00E00A70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01906CAE3AD437ED1B183228 /* Pods-VendooTests.release.xcconfig */; + baseConfigurationReference = E2F692D9C9BF2781499C4131 /* Pods-Vendoo-VendooTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; INFOPLIST_FILE = VendooTests/Info.plist; @@ -984,7 +1130,7 @@ }; 3E6CC3841CF2A94B00E00A70 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A262396B34A6809EF08AFDB0 /* Pods-VendooUITests.debug.xcconfig */; + baseConfigurationReference = A44ED233D6B5454EF92FEB08 /* Pods-Vendoo-VendooUITests.debug.xcconfig */; buildSettings = { INFOPLIST_FILE = VendooUITests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; @@ -997,7 +1143,7 @@ }; 3E6CC3851CF2A94B00E00A70 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 74175BFD1E28D4B4E03E5BAB /* Pods-VendooUITests.release.xcconfig */; + baseConfigurationReference = 3AB871700182B3C683FC9049 /* Pods-Vendoo-VendooUITests.release.xcconfig */; buildSettings = { INFOPLIST_FILE = VendooUITests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; diff --git a/Vendoo.xcodeproj/project.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate b/Vendoo.xcodeproj/project.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate index ff56d4d36a596b96f7e9e0baea08276f7cd8abe4..06b8adb33db6c4b329417cdded7128a85c95fc06 100644 GIT binary patch literal 10056 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 literal 9228 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 F{|&INW1j#3 diff --git a/Vendoo.xcworkspace/contents.xcworkspacedata b/Vendoo.xcworkspace/contents.xcworkspacedata index e148323..44b8059 100644 --- a/Vendoo.xcworkspace/contents.xcworkspacedata +++ b/Vendoo.xcworkspace/contents.xcworkspacedata @@ -4,4 +4,7 @@ + + diff --git a/Vendoo.xcworkspace/xcshareddata/Vendoo.xcscmblueprint b/Vendoo.xcworkspace/xcshareddata/Vendoo.xcscmblueprint deleted file mode 100644 index c91593c..0000000 --- a/Vendoo.xcworkspace/xcshareddata/Vendoo.xcscmblueprint +++ /dev/null @@ -1,30 +0,0 @@ -{ - "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "A19E30B46E376221BA857AAEF4A8709E78AC4F1E", - "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { - - }, - "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { - "2079FCD6EC349AEFB6C50B82CE5C2C9BE898E484" : 0, - "A19E30B46E376221BA857AAEF4A8709E78AC4F1E" : 0 - }, - "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "ABB61D7B-98E4-4514-A26A-4F2C83856662", - "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { - "2079FCD6EC349AEFB6C50B82CE5C2C9BE898E484" : "..\/Vendoo", - "A19E30B46E376221BA857AAEF4A8709E78AC4F1E" : "Vendoo\/" - }, - "DVTSourceControlWorkspaceBlueprintNameKey" : "Vendoo", - "DVTSourceControlWorkspaceBlueprintVersion" : 204, - "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "Vendoo.xcworkspace", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/kroleo\/Vendoo.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "2079FCD6EC349AEFB6C50B82CE5C2C9BE898E484" - }, - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/bitbucket.org\/vendoo\/vendoo_v1.0", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "A19E30B46E376221BA857AAEF4A8709E78AC4F1E" - } - ] -} \ No newline at end of file diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate index 07f9abf4f488585c269e6bf38c80c4d4a3fa1672..fff33d0acee778e359fe7ff800ccd94b397bd93f 100644 GIT binary patch literal 47817 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 literal 132878 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%0DmvqWtUfZ%m8{nXrj9aVD9G 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 diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-base b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-base deleted file mode 100644 index fdaef2a155150c9a640da3a7367473c16f1e42bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131312 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 diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-ours b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-ours deleted file mode 100644 index 8a12093ab421a77e574cb267a1e2c4b44af20e2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149143 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 L|Nnou=i&baS&1ko diff --git a/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-theirs b/Vendoo.xcworkspace/xcuserdata/okechi.xcuserdatad/UserInterfaceState.xcuserstate-theirs deleted file mode 100644 index c5d7912c0de2ce27c64930c3852ca5e5a85c789a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131040 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 b`#Bi=-~U{6!T @@ -58,59 +58,107 @@ ignoreCount = "0" continueAfterRunningActions = "No" filePath = "Vendoo/EbayWebServiceManager.swift" - timestampString = "493095152.526655" + timestampString = "493665751.744" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" - startingLineNumber = "203" - endingLineNumber = "203" - landmarkName = "getPaypalEmail(_:)" + startingLineNumber = "289" + endingLineNumber = "289" + landmarkName = "listItem(_:completion:)" landmarkType = "5"> + + + + + + + + + + + + + startingLineNumber = "546" + endingLineNumber = "546" + offsetFromSymbolStart = "15"> + startingLineNumber = "546" + endingLineNumber = "546" + offsetFromSymbolStart = "1620"> @@ -118,15 +166,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -134,35 +294,419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Vendoo/.DS_Store b/Vendoo/.DS_Store index 6aaedb371b71acad13a117769c7efbfd50516673..8d98363c962d0d20de45ad6eb6f249159cd5cff4 100644 GIT binary patch delta 33 pcmZn(XbIRbPnc0<@_b=y#=6NLrQ|pN5a#9C%&zd8Ws@iqGXT-d3ugcT delta 36 scmZn(XbIRbPnc18@_b?I$qgcso4*PR@oZ*Q_{%bRgNWW{Bhf2N0QN@=^#A|> diff --git a/Vendoo/CategoriesTableViewController.swift b/Vendoo/CategoriesTableViewController.swift index 18a5238..c8e14c9 100644 --- a/Vendoo/CategoriesTableViewController.swift +++ b/Vendoo/CategoriesTableViewController.swift @@ -8,7 +8,7 @@ import UIKit -class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { +class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UIPopoverPresentationControllerDelegate { private var itemListingDictionary: Dictionary! = Dictionary() private var graphManager: FacebookGraphAPIManager! = nil @@ -16,6 +16,7 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa private var etsyManager: EtsyRESTAPIManager! = nil private var ebayManager: EbayWebServiceManager! = EbayWebServiceManager() private var selectedCategory: String! + private var selectedSub: String! private var categories = ["Accessories", "Antiques", @@ -138,18 +139,24 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Art") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Baby") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Bags & Purses") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -162,24 +169,32 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Books") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Business & Industrial") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Cameras & Photo") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Candles") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -192,12 +207,16 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Clothing & Shoes") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Ceramics & Pottery") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -216,54 +235,72 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Collectibles") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Computers/Tablets & Networking") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Consumer Electronics") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Crafts") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Dolls & Miniatures") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("DVDs & Movies") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Entertainment Memorabilia") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Everything Else") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Furniture") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -276,6 +313,8 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Geekery") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -300,12 +339,16 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Jewelry & Watches") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Knitting") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -324,6 +367,8 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Needlecraft") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -348,12 +393,16 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Pottery & Glass") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Plants and Edibles") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -372,30 +421,40 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Specialty Services") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Sporting Goods") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Sports Memorabilia & Fan Shop") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Stamps") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Supplies") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -408,24 +467,32 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Toys & Hobbies") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = false //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Travel") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Video Games & Consoles") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 2, inSection: 0))?.hidden = true //etsy cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 1, inSection: 0))?.hidden = true //amazon cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 0, inSection: 0))?.hidden = false //ebay + //ask to drill into ebay categories + cell.shouldAskAboutLeafCategories = true break case ("Vintage") : cell.networks.cellForItemAtIndexPath(NSIndexPath(forRow: 3, inSection: 0))?.hidden = false //facebook @@ -473,10 +540,55 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa return cell } + /* + For certain marketplaces such as ebay, leaf categories must be used when posting + */ + func navigateCategories () { + self.providesPresentationContextTransitionStyle = true + self.definesPresentationContext = true + self.modalPresentationStyle = UIModalPresentationStyle.OverCurrentContext + var popoverContent = self.storyboard?.instantiateViewControllerWithIdentifier("NavigateCategory") as! CategoryPopUpController + popoverContent.modalPresentationStyle = UIModalPresentationStyle.Popover + var popover = popoverContent.popoverPresentationController + popoverContent.preferredContentSize = CGSizeMake(50,50) + popover!.delegate = self + popover!.sourceView = self.view + popover!.sourceRect = CGRectMake(100,100,50,50) + + popoverContent.setManagers(self.ebayManager) + popoverContent.loadCategories(self.selectedCategory, selectedCatCompletion: { + (categoryID, error) -> Void in + self.selectedSub = categoryID as! String + self.dismissViewControllerAnimated(true, completion: { + () -> Void in + self.performSegueWithIdentifier("NetworkSelectionSegue", sender: self) + }) + }) + + self.presentViewController(popoverContent, animated: true, completion: nil) + } func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { self.selectedCategory = self.categories[indexPath.row] - self.performSegueWithIdentifier("NetworkSelectionSegue", sender: self) + let cell: CategoryCell! = tableView.cellForRowAtIndexPath(indexPath) as! CategoryCell//tableView.dequeueReusableCellWithIdentifier("CategoryCell", forIndexPath: indexPath) as? CategoryCell + if(cell.shouldAskAboutLeafCategories){ + var alert = UIAlertController(title: "Explore Subcategories", message: "Would you like to see the subcategories for \(self.selectedCategory). NOTE: Only Required If Posting to Ebay", preferredStyle: .Alert) + + alert.addAction(UIAlertAction(title: "Yes", style: .Default, handler: {(action: UIAlertAction!) in + self.navigateCategories() + })) + + alert.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: {(action: UIAlertAction!) in + })) + alert.addAction(UIAlertAction(title: "No", style: .Default, handler: {(action: UIAlertAction!) in + self.performSegueWithIdentifier("NetworkSelectionSegue", sender: self) + })) + self.presentViewController(alert, animated: true, completion: nil) + + } + else { + self.performSegueWithIdentifier("NetworkSelectionSegue", sender: self) + } } /* @@ -524,6 +636,7 @@ class CategoriesTableViewController: UIViewController, UITableViewDelegate, UITa if(segue.identifier == "NetworkSelectionSegue") { self.itemListingDictionary["category"] = self.selectedCategory + self.itemListingDictionary["ebaySubCategoryID"] = self.selectedSub (segue.destinationViewController as! NetworksTableViewController).setListingDictionary(self.itemListingDictionary) (segue.destinationViewController as! NetworksTableViewController).setManagers(self.graphManager, fireManager: self.firManager, ebayManager: self.ebayManager, etsyManager: self.etsyManager ) diff --git a/Vendoo/CategoryCell.swift b/Vendoo/CategoryCell.swift index c71f8aa..28aff5d 100644 --- a/Vendoo/CategoryCell.swift +++ b/Vendoo/CategoryCell.swift @@ -12,6 +12,7 @@ class CategoryCell: UITableViewCell, UICollectionViewDelegate { @IBOutlet weak var categoryName: UILabel! @IBOutlet weak var networks: UICollectionView! + var shouldAskAboutLeafCategories = false override func awakeFromNib() { diff --git a/Vendoo/CategoryPopUpController.swift b/Vendoo/CategoryPopUpController.swift new file mode 100644 index 0000000..8807fc1 --- /dev/null +++ b/Vendoo/CategoryPopUpController.swift @@ -0,0 +1,130 @@ +// +// CategoryPopUpController.swift +// Vendoo +// +// Created by Okechi Onyeje on 8/19/16. +// Copyright © 2016 Okechi Onyeje. All rights reserved. +// + +import UIKit + +class CategoryPopUpController: UIViewController { + @IBOutlet weak var table: UITableView! + + var categoryList: [Int: AnyObject] = Dictionary>() + var parentCategory: [String] = [] + var ebayManager: EbayWebServiceManager! + private var completion: ServiceResponse! + + + override func viewDidLoad() { + super.viewDidLoad() + + self.table.delegate = self + self.table.dataSource = self + // Uncomment the following line to preserve selection between presentations + + + } + + override func didReceiveMemoryWarning() { + super.didReceiveMemoryWarning() + // Dispose of any resources that can be recreated. + } + + func setManagers(ebayManager: EbayWebServiceManager){ + self.ebayManager = ebayManager + } + + //@FIXME: Fix category selection for retrieving categories id values, hybrid categories don't work with this and have to manually add these + func loadCategories( selectedCategory: String, selectedCatCompletion: ServiceResponse?) { + self.parentCategory.append(selectedCategory) + var catCode: String! + + if(self.parentCategory.count == 1) { + var dict = EbayWebServiceManager.settingsDictionary["categories"] as! Dictionary> + var infoDict = dict[selectedCategory]! + catCode = infoDict["cat_id"] as! String + self.completion = selectedCatCompletion + }else { + for (index, catInfo) in self.categoryList { + let level = Int(catInfo["level"] as! String) + if(( level! == (self.parentCategory.count))) { + let name = catInfo["name"] as! String + if ((name == selectedCategory)){ + catCode = catInfo["id"] as! String + break + } + } + } + } + + self.ebayManager.getSubCategories(selectedCategory, detailLevel: self.parentCategory.count + 1, catCode: catCode, onCompletion: { + (dict, error) -> Void in + var index = 0 + for (category, information) in dict as! Dictionary> { + if(Int(information["level"] as! String) == (self.parentCategory.count + 1)) { + self.categoryList[index] = Dictionary() + var categoryDict = self.categoryList[index]! as! Dictionary + + categoryDict["name"] = category + categoryDict["isLeaf"] = information["isLeaf"] as! Bool + categoryDict["id"] = information["cat_id"] as! String + categoryDict["level"] = information["level"] as! String + + self.categoryList[index] = categoryDict + + index+=1 + } + } + self.table.reloadData() + }) + } + + @IBAction func navigateBack() { + self.categoryList = Dictionary>() + if(self.parentCategory.count == 1) { + self.parentCategory.popLast() + self.presentingViewController?.dismissViewControllerAnimated(true, completion: nil) + } + else { + self.parentCategory.popLast() + self.loadCategories(self.parentCategory.popLast()! as String, selectedCatCompletion: nil) + } + } +} + +extension CategoryPopUpController : UITableViewDelegate { + func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { + let cell = self.table.cellForRowAtIndexPath(indexPath) + var categoryDict = categoryList[indexPath.row] as! Dictionary + + if (!(categoryDict["isLeaf"] as! Bool)) { + self.loadCategories((cell?.textLabel?.text!)!, selectedCatCompletion: nil) + }else { + self.completion(categoryDict["id"] as! String, nil) + } + } +} + +extension CategoryPopUpController: UITableViewDataSource { + + func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return self.categoryList.count + } + + func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { + let cell = self.table.dequeueReusableCellWithIdentifier("SubCat Cell") + var categoryDict = categoryList[indexPath.row] as! Dictionary + + cell?.textLabel?.text = categoryDict["name"] as? String + if (categoryDict["isLeaf"] as! Bool) { + dispatch_async(dispatch_get_main_queue(), { + cell?.accessoryView?.hidden = true + }) + } + + return cell! + } + +} diff --git a/Vendoo/EbaySettingsViewController.swift b/Vendoo/EbaySettingsViewController.swift index 3d12bae..c916219 100644 --- a/Vendoo/EbaySettingsViewController.swift +++ b/Vendoo/EbaySettingsViewController.swift @@ -20,6 +20,8 @@ class EbaySettingsViewController: UIViewController { @IBOutlet weak var ebaySite: UIButton! + @IBOutlet weak var postalCode: UIButton! + @IBOutlet weak var shippingBtn: UIButton! @IBOutlet weak var paymentBtn: UIButton! @@ -102,6 +104,10 @@ extension EbaySettingsViewController { @IBAction func selectShipping(sender: AnyObject) { } + @IBAction func selectPostalCode(sender: AnyObject) { + + } + @IBAction func selectPayment(sender: AnyObject) { } diff --git a/Vendoo/EbayWebServiceManager.swift b/Vendoo/EbayWebServiceManager.swift index dda1ef4..59d8111 100644 --- a/Vendoo/EbayWebServiceManager.swift +++ b/Vendoo/EbayWebServiceManager.swift @@ -27,13 +27,19 @@ class EbayWebServiceManager: NSObject { private var mutableData: NSMutableData = NSMutableData() private var currentElementName:NSString = "" private var catID: NSString! + private var catLevel: NSString! + private var currentCategory: String! + private var catDetailLevel: Int! = 1 private var userEmail:String = (NSUserDefaults.standardUserDefaults().objectForKey("email") as? String)! private var signinURL: String! private var xmlResponseDictionary: Dictionary = Dictionary() var delegate: EbayWebServiceManagerDelegate? var isAuthorized: Bool = NSUserDefaults.standardUserDefaults().boolForKey("ebayAuthorized") static var settingsDictionary = Dictionary() + private var subCategories = Dictionary>() private var completion: ServiceResponse! + private var isGettingSubCategories: Bool = false + private var isRevisingListing: Bool = false //---------------------------------------------// @@ -73,7 +79,7 @@ class EbayWebServiceManager: NSObject { ], "payment":"PayPal", "return":"ReturnsNotAccepted", - "postalCode":"00000" + "postalCode":"21216" ] as Dictionary) @@ -201,9 +207,32 @@ extension EbayWebServiceManager { self.requestMaker(soapMessage, theRequest: theRequest) } - func listItem(params: [String: String]){ + func addImagesToListing(listingID: String, imageURL: String, onCompletion: ServiceResponse) { + + var soapMessage = "" + + "" + + "" + + "\(self.xmlResponseDictionary["eBayAuthToken"] as! String)" + + "" + + soapMessage = soapMessage + "en_US" + + "" + + "\(listingID)" + + "" + + "\(imageURL.stringByReplacingOccurrencesOfString("&", withString: "&"))" + + "" + + "" + + let url = NSURL(string: self.baseURL) + let theRequest = NSMutableURLRequest(URL: url!) + theRequest.addValue("ReviseItem", forHTTPHeaderField: "X-EBAY-API-CALL-NAME") + self.completion = onCompletion + self.requestMaker(soapMessage, theRequest: theRequest) + + } + + func listItem(params: [String: String], completion: ServiceResponse?){ var dict = EbayWebServiceManager.settingsDictionary - //@TODO: Make sure to get paypal email for user if user has paypal selected var emailRetrievalGroup = dispatch_group_create() var soapMessage = "" + "" + @@ -213,35 +242,45 @@ extension EbayWebServiceManager { if((dict["payment"] as? String) == "PayPal") { dispatch_group_enter(emailRetrievalGroup) + if((EbayWebServiceManager.settingsDictionary["paypal_email"]) == nil) { + self.getPaypalEmail({ + (any, error) -> Void in + dispatch_group_leave(emailRetrievalGroup) + }) - self.getPaypalEmail({ - (any, error) -> Void in + }else { dispatch_group_leave(emailRetrievalGroup) - }) + } + dispatch_group_notify(emailRetrievalGroup, dispatch_get_main_queue(), { soapMessage = soapMessage + "" + - "\(params["price"])" + - "\(dict["condition"])" + + "\(params["title"] as String!)" + + "\(params["description"] as String!)" + + "" + + "\(params["category_id"] as String!)" + + "" + + "\(params["price"] as String!)" + + "\(dict["condition"] as! String!)" + "US" + "USD" + "3" + - "\(dict["listingDuration"])" + - "\(dict["listingType"])" + - "\(dict["payment"])" + - "\(dict["paypal_email"])" + - "\(dict["postalCode"])" + - "\(params["quantity"])" + + "\(dict["listingDuration"] as! String!)" + + "\(dict["listingType"] as! String!)" + + "\(dict["payment"] as! String!)" + + "\(dict["paypal_email"] as! String!)" + + "\(dict["postalCode"] as! String!)" + + "\(params["quantity"] as String!)" + "" + - "\(dict["return"])" + + "\(dict["return"] as! String!)" + "Vendoo requires seller to set up return policy manually." + "" + "" + "" + - "\(dict["shipping"]!["shippingServicePriority"])" + - "\(dict["shipping"]!["shippingService"])" + + "\(dict["shipping"]!["shippingServicePriority"] as! String!)" + + "\(dict["shipping"]!["shippingService"] as! String!)" + "0.00" + - "\(dict["shipping"]!["shippingServiceAdditionalCost"])" + + "\(dict["shipping"]!["shippingServiceAdditionalCost"] as! String!)" + "" + "" + "US" + @@ -250,7 +289,7 @@ extension EbayWebServiceManager { let url = NSURL(string: self.baseURL) let theRequest = NSMutableURLRequest(URL: url!) theRequest.addValue("AddItem", forHTTPHeaderField: "X-EBAY-API-CALL-NAME") - + self.completion = completion! self.requestMaker(soapMessage, theRequest: theRequest) }) @@ -267,6 +306,28 @@ extension EbayWebServiceManager { self.requestMaker(soapMessage, theRequest: theRequest) } + + func getSubCategories(selectedCategory: String, detailLevel: Int, catCode: String, onCompletion: ServiceResponse) { + self.isGettingSubCategories = true + //var dict = EbayWebServiceManager.settingsDictionary["categories"]! + var soapMessage = "" + + "" + + "" + + "\(self.xmlResponseDictionary["eBayAuthToken"] as! String)" + soapMessage = soapMessage + "" + + "\(catCode)" + + "0" + + "ReturnAll\(detailLevel)" + + "" + + let url = NSURL(string: self.baseURL) + let theRequest = NSMutableURLRequest(URL: url!) + theRequest.addValue("GetCategories", forHTTPHeaderField: "X-EBAY-API-CALL-NAME") + + self.completion = onCompletion + self.catDetailLevel = detailLevel + self.requestMaker(soapMessage, theRequest: theRequest) + } } extension EbayWebServiceManager: NSURLConnectionDelegate { @@ -310,6 +371,21 @@ extension EbayWebServiceManager: NSXMLParserDelegate { func parser(parser: NSXMLParser, foundCharacters string: String) { switch (self.currentElementName) { + + /* + This case will be developed further to allow error handling with ebay and stateful operations + */ + case "Ack": + if(string == "Success") { + if(isRevisingListing) { + self.completion(nil, nil) + self.isRevisingListing = false + } + } + break + /* + Used to authorize user to allow posting new listings to ebay sites and fetches all necessary information when posting to Ebay + */ case "SessionID": self.xmlResponseDictionary["SessionID"] = string var str = "\(signinURL)&SessID=\(string)" @@ -368,8 +444,12 @@ extension EbayWebServiceManager: NSXMLParserDelegate { } break - case "HardExpirationTime" : - print(string) + case "DefaultPayPalEmailAddress": + var dict = (EbayWebServiceManager.settingsDictionary) + dict["paypal_email"] = string + EbayWebServiceManager.settingsDictionary = dict + NSUserDefaults.standardUserDefaults().setObject(EbayWebServiceManager.settingsDictionary, forKey: "ebaySettings") + self.completion(nil, nil) break case "UserID" : print(string) @@ -388,27 +468,72 @@ extension EbayWebServiceManager: NSXMLParserDelegate { self.requestMaker(soapmessage, theRequest: theRequest) break + /* + Used to build both the top level categories, and subcategories on request during item listing workflow + */ case "CategoryID" : self.catID = string break + case "CategoryLevel": + self.catLevel = string + break case "CategoryName" : - if((EbayWebServiceManager.settingsDictionary["categories"]) == nil) { - EbayWebServiceManager.settingsDictionary["categories"] = Dictionary() + if(!self.isGettingSubCategories) { + if((EbayWebServiceManager.settingsDictionary["categories"]) == nil) { + EbayWebServiceManager.settingsDictionary["categories"] = Dictionary>() + } + var dict: Dictionary> = (EbayWebServiceManager.settingsDictionary["categories"]!) as! Dictionary> + + dict[string] = ["cat_id": self.catID, "isLeaf": false, "level": self.catLevel] + EbayWebServiceManager.settingsDictionary["categories"] = dict + NSUserDefaults.standardUserDefaults().setObject(EbayWebServiceManager.settingsDictionary, forKey: "ebaySettings") } - var dict: Dictionary = (EbayWebServiceManager.settingsDictionary["categories"]!) as! Dictionary + else { + if "\(self.catDetailLevel)" == self.catLevel { + if((self.subCategories[string] == nil )){ + self.subCategories[string] = ["cat_id": self.catID, "isLeaf": false, "level": self.catLevel] + } + } + - dict[string] = self.catID as String - EbayWebServiceManager.settingsDictionary["categories"] = dict - NSUserDefaults.standardUserDefaults().setObject(EbayWebServiceManager.settingsDictionary, forKey: "ebaySettings") + } + + self.currentCategory = string break - case "DefaultPayPalEmailAddress": - var dict = (EbayWebServiceManager.settingsDictionary) - dict["paypal_email"] = string - EbayWebServiceManager.settingsDictionary = dict - NSUserDefaults.standardUserDefaults().setObject(EbayWebServiceManager.settingsDictionary, forKey: "ebaySettings") - self.completion(nil, nil) + case "LeafCategory": + if (!self.isGettingSubCategories) { + var dict: Dictionary> = (EbayWebServiceManager.settingsDictionary["categories"]!) as! Dictionary> + + dict[self.currentCategory]!["isLeaf"] = true + } + else { + if (self.catDetailLevel == Int((self.subCategories[self.currentCategory]!["level"] as! String))) { + + self.subCategories[self.currentCategory]!["isLeaf"] = true + } + + } break + case "CategoryCount": + if(self.isGettingSubCategories){ + self.completion(self.subCategories, nil) + self.isGettingSubCategories = false + self.subCategories = Dictionary>() + } + break + + /* + Used during the listing creation process to save the new listing id, as well as adding pictures to the new listing + */ + case "ItemID": + self.completion(string, nil) + break + + case "ReviseItemResponse": + self.isRevisingListing = true + break + default: //print(string) print("\(self.currentElementName):\(string)") diff --git a/Vendoo/EtsyRESTAPIManager.swift b/Vendoo/EtsyRESTAPIManager.swift index a796bc9..d24a554 100644 --- a/Vendoo/EtsyRESTAPIManager.swift +++ b/Vendoo/EtsyRESTAPIManager.swift @@ -12,7 +12,6 @@ import Foundation import SwiftyJSON import OAuthSwift import Locksmith -import AFNetworking typealias ServiceResponse = (AnyObject?, NSError?) -> Void diff --git a/Vendoo/FacebookGraphAPIManager.swift b/Vendoo/FacebookGraphAPIManager.swift index 90c538d..1355b78 100644 --- a/Vendoo/FacebookGraphAPIManager.swift +++ b/Vendoo/FacebookGraphAPIManager.swift @@ -11,8 +11,6 @@ import OAuthSwift import FBSDKCoreKit import FBSDKLoginKit import FBSDKShareKit -import AeroGearHttp -import AeroGearOAuth2 import OAuthSwift import Locksmith diff --git a/Vendoo/ListingPreviewViewController.swift b/Vendoo/ListingPreviewViewController.swift index a32f100..a402872 100644 --- a/Vendoo/ListingPreviewViewController.swift +++ b/Vendoo/ListingPreviewViewController.swift @@ -143,6 +143,7 @@ extension ListingPreviewViewController { let newListingRef = self.firManager.ref.child("Users").child("\(self.firManager.user_email)").child("user_Listings").childByAutoId() let postingGroup: dispatch_group_t = dispatch_group_create() + //post to ebay if(self.networksDictionary["ebay"]!){ dispatch_group_enter(postingGroup) @@ -150,100 +151,100 @@ extension ListingPreviewViewController { var dict = EbayWebServiceManager.settingsDictionary["categories"]! switch self.itemCategory.text { case "Antiques": - categoryCode = dict["Antiques"] as! String + categoryCode = (dict["Antiques"] as! Dictionary)["cat_id"] as! String break case "Art": - categoryCode = dict["Art"] as! String + categoryCode = (dict["Art"] as! Dictionary)["cat_id"] as! String break case "Baby": - categoryCode = dict["Baby"] as! String + categoryCode = (dict["Baby"] as! Dictionary)["cat_id"] as! String break case "Bath, Beauty & Health": - categoryCode = dict["Health and Beauty"] as! String + categoryCode = (dict["Health and Beauty"] as! Dictionary)["cat_id"] as! String break case "Books": - categoryCode = dict["Books"] as! String + categoryCode = (dict["Books"] as! Dictionary)["cat_id"] as! String break case "Business & Industrial": - categoryCode = dict["Business and Industrial"] as! String + categoryCode = (dict["Business and Industrial"] as! Dictionary)["cat_id"] as! String break case "Cameras & Photo": - categoryCode = dict["Cameras and Photo"] as! String + categoryCode = (dict["Cameras and Photo"] as! Dictionary)["cat_id"] as! String break case "Cell Phones & Accessories": - categoryCode = dict["Cell Phones and Accessories"] as! String + categoryCode = (dict["Cell Phones and Accessories"] as! Dictionary)["cat_id"] as! String break case "Clothing & Shoes": - categoryCode = dict["Clothing, Shoes and Accessories"] as! String + categoryCode = (dict["Clothing, Shoes and Accessories"] as! Dictionary)["cat_id"] as! String break case "Coins & Paper Money": - categoryCode = dict["Coins and Paper Money"] as! String + categoryCode = (dict["Coins and Paper Money"] as! Dictionary)["cat_id"] as! String break case "Collectibles": - categoryCode = dict["Collectibles"] as! String + categoryCode = (dict["Collectibles"] as! Dictionary)["cat_id"] as! String break case "Computers/Tablets and Networking": - categoryCode = dict["Computers/Tablets and Networking"] as! String + categoryCode = (dict["Computers/Tablets and Networking"] as! Dictionary)["cat_id"] as! String break case "Consumer Electronics": - categoryCode = dict["Consumer Electronics"] as! String + categoryCode = (dict["Consumer Electronics"] as! Dictionary)["cat_id"] as! String break case "Crafts": - categoryCode = dict["Crafts"] as! String + categoryCode = (dict["Crafts"] as! Dictionary)["cat_id"] as! String break case "Dolls & Miniatures": - categoryCode = dict["Dolls and Bears"] as! String + categoryCode = (dict["Dolls and Bears"] as! Dictionary)["cat_id"] as! String break case "DVDs & Movies": - categoryCode = dict["DVDs & Movies"] as! String + categoryCode = (dict["DVDs & Movies"] as! Dictionary)["cat_id"] as! String break case "Entertainment Memorabilia": - categoryCode = dict["Entertainment Memorabilia"] as! String + categoryCode = (dict["Entertainment Memorabilia"] as! Dictionary)["cat_id"] as! String break case "Everything Else": - categoryCode = dict["Everything Else"] as! String + categoryCode = (dict["Everything Else"] as! Dictionary)["cat_id"] as! String break case "Gift Cards & Coupons": - categoryCode = dict["Gift Cards and Coupons"] as! String + categoryCode = (dict["Gift Cards and Coupons"] as! Dictionary)["cat_id"] as! String break case "Home/Houseware & Garden": - categoryCode = dict["Coins and Paper Money"] as! String + categoryCode = (dict["Coins and Paper Money"] as! Dictionary)["cat_id"] as! String break case "Jewelry & Watches": - categoryCode = dict["Jewelry and Watches"] as! String + categoryCode = (dict["Jewelry and Watches"] as! Dictionary)["cat_id"] as! String break case "Musical Instruments & Gear": - categoryCode = dict["Musical Instruments and Gear"] as! String + categoryCode = (dict["Musical Instruments and Gear"] as! Dictionary)["cat_id"] as! String break case "Pet Supplies": - categoryCode = dict["Pet Supplies"] as! String + categoryCode = (dict["Pet Supplies"] as! Dictionary)["cat_id"] as! String break case "Pottery & Glass": - categoryCode = dict["Pottery and Glass"] as! String + categoryCode = (dict["Pottery and Glass"] as! Dictionary)["cat_id"] as! String break case "Real Estate": - categoryCode = dict["Real Estate"] as! String + categoryCode = (dict["Real Estate"] as! Dictionary)["cat_id"] as! String break case "Specialty Services": - categoryCode = dict["Specialty Services"] as! String + categoryCode = (dict["Specialty Services"] as! Dictionary)["cat_id"] as! String break case "Sporting Goods": - categoryCode = dict["Sporting Goods"] as! String + categoryCode = (dict["Sporting Goods"] as! Dictionary)["cat_id"] as! String break case "Sports Memorabilia & Fan Shop": - categoryCode = dict["Sports Mem, Cards and Fan Shop"] as! String + categoryCode = (dict["Sports Mem, Cards and Fan Shop"] as! Dictionary)["cat_id"] as! String break case "Tickets & Experiences": - categoryCode = dict["Tickets and Experiences"] as! String + categoryCode = (dict["Tickets and Experiences"] as! Dictionary)["cat_id"] as! String break case "Toys & Hobbies": - categoryCode = dict["Toys and Hobbies"] as! String + categoryCode = (dict["Toys and Hobbies"] as! Dictionary)["cat_id"] as! String break case "Travel": - categoryCode = dict["Travel"] as! String + categoryCode = (dict["Travel"] as! Dictionary)["cat_id"] as! String break case "Video Games & Consoles": - categoryCode = dict["Video Games and Consoles"] as! String + categoryCode = (dict["Video Games and Consoles"] as! Dictionary)["cat_id"] as! String break default: break @@ -253,12 +254,21 @@ extension ListingPreviewViewController { "quantity":self.itemQuantity.text, "description":self.itemDescription.text, "price":self.itemPrice.text, - "category_id":categoryCode + "category_id":self.itemListingDictionary["ebaySubCategoryID"] as! String ] - self.ebayManager.listItem(body) + self.ebayManager.listItem(body, completion: { + (listingID, error) -> Void in + if((self.newInProgressListing["networkIDs"] == nil)){ + self.newInProgressListing["networkIDs"] = Dictionary() + } + var networkIDs = (self.newInProgressListing["networkIDs"] as! Dictionary) + networkIDs["ebay"] = listingID as! String + self.newInProgressListing["networkIDs"] = networkIDs + dispatch_group_leave(postingGroup) + }) } - + //post to amazon if(self.networksDictionary["amazon"]!){ @@ -480,19 +490,35 @@ extension ListingPreviewViewController { listingImageRef.putData(UIImageJPEGRepresentation(self.itemPicture.image!, 0.8)!, metadata: nil,completion: {(metadata, error) -> Void in - newListingRef.setValue(self.newInProgressListing) + //for ebay due to its unique posting flow, will use firbase image storage url to add pictures + dispatch_group_enter(postingGroup) + if (self.networksDictionary["ebay"]!){ + var networkIDs = self.newInProgressListing["networkIDs"] as! Dictionary + + self.ebayManager.addImagesToListing(networkIDs["ebay"] as! String, imageURL: (metadata?.downloadURL()?.absoluteString)!, onCompletion: { + (_, _) -> Void in + dispatch_group_leave(postingGroup) + }) + }else{ + dispatch_group_leave(postingGroup) + } - // self.alert.title = "Listing saved with error" - // self.alert.message = "Your listing has been saved but something went wrong when trying to publish to facebook" + dispatch_group_notify(postingGroup, dispatch_get_main_queue(), { + newListingRef.setValue(self.newInProgressListing) + + // self.alert.title = "Listing saved with error" + // self.alert.message = "Your listing has been saved but something went wrong when trying to publish to facebook" + + + //let alert = UIAlertController(title: "Listing Published", message: "Your listing has been published", preferredStyle: .Alert) + + // self.alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in self.alert.dismissViewControllerAnimated(true, completion: nil)})) + + //register new listing id in global path of firebase root' + self.firManager.ref.child("Global_listings").child(newListingRef.key).setValue(newListingRef.key) + }) - //let alert = UIAlertController(title: "Listing Published", message: "Your listing has been published", preferredStyle: .Alert) - - // self.alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in self.alert.dismissViewControllerAnimated(true, completion: nil)})) - - //register new listing id in global path of firebase root' - self.firManager.ref.child("Global_listings").child(newListingRef.key).setValue(newListingRef.key) - }) diff --git a/Vendoo/Main.storyboard b/Vendoo/Main.storyboard index 2a49c19..98bbf3b 100755 --- a/Vendoo/Main.storyboard +++ b/Vendoo/Main.storyboard @@ -1997,6 +1997,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2209,21 +2260,21 @@ + +