├── .gitignore ├── .travis.yml ├── AuthKit.podspec ├── AuthKit ├── AuthKit.h ├── Core │ ├── Base │ │ ├── AKCore.h │ │ ├── AKDefines.h │ │ └── AKDefines.m │ ├── Client │ │ ├── AKClient.h │ │ ├── AKClient.m │ │ ├── AKClientManager.h │ │ ├── AKClientManager.m │ │ ├── AKPasswordClient.h │ │ └── AKPasswordClient.m │ ├── Protocol │ │ ├── AKLoginSource.h │ │ ├── AKPasswordLoginSource.h │ │ └── AKTwoFactorLoginSource.h │ └── User │ │ ├── AKUser.h │ │ └── AKUser.m ├── Interface │ ├── AKAuthViewController.h │ ├── AKAuthViewController.m │ ├── AKInterface.h │ └── AKInterfaceLoginSource.h ├── OAuth │ ├── AKOAuth.h │ ├── AKOAuthClient.h │ ├── AKOAuthClient.m │ ├── AKOAuthLoginSource.h │ ├── AKOAuthUser.h │ └── AKOAuthUser.m └── Persistence │ ├── AKUser+Storage.h │ └── AKUser+Storage.m ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Demo.xcscheme ├── Demo.xcworkspace │ └── contents.xcworkspacedata ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ └── Icon-Small@2x.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── lock-icon.imageset │ │ │ ├── Contents.json │ │ │ └── lock-icon.png │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo.png │ ├── Launch.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── DemoTests │ ├── DemoTests-Info.plist │ ├── DemoTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── AKPickerView │ ├── AKPickerViewSample │ │ └── AKPickerView │ │ │ ├── AKPickerView.h │ │ │ └── AKPickerView.m │ ├── LICENSE │ └── README.md │ ├── Bolts │ ├── Bolts │ │ ├── Common │ │ │ ├── BFExecutor.h │ │ │ ├── BFExecutor.m │ │ │ ├── BFTask.h │ │ │ ├── BFTask.m │ │ │ ├── BFTaskCompletionSource.h │ │ │ ├── BFTaskCompletionSource.m │ │ │ ├── Bolts.h │ │ │ ├── Bolts.m │ │ │ └── BoltsVersion.h │ │ └── iOS │ │ │ ├── BFAppLink.h │ │ │ ├── BFAppLink.m │ │ │ ├── BFAppLinkNavigation.h │ │ │ ├── BFAppLinkNavigation.m │ │ │ ├── BFAppLinkResolving.h │ │ │ ├── BFAppLinkReturnToRefererController.h │ │ │ ├── BFAppLinkReturnToRefererController.m │ │ │ ├── BFAppLinkReturnToRefererView.h │ │ │ ├── BFAppLinkReturnToRefererView.m │ │ │ ├── BFAppLinkReturnToRefererView_Internal.h │ │ │ ├── BFAppLinkTarget.h │ │ │ ├── BFAppLinkTarget.m │ │ │ ├── BFAppLink_Internal.h │ │ │ ├── BFMeasurementEvent.h │ │ │ ├── BFMeasurementEvent.m │ │ │ ├── BFMeasurementEvent_Internal.h │ │ │ ├── BFURL.h │ │ │ ├── BFURL.m │ │ │ ├── BFURL_Internal.h │ │ │ ├── BFWebViewAppLinkResolver.h │ │ │ └── BFWebViewAppLinkResolver.m │ ├── LICENSE │ └── Readme.md │ ├── FBSDKCoreKit │ ├── FBSDKCoreKit │ │ └── FBSDKCoreKit │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAccessToken.m │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppEvents.m │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ ├── FBSDKAppLinkResolver.m │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKAppLinkUtility.m │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ ├── FBSDKApplicationDelegate.m │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKButton.m │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKConstants.m │ │ │ ├── FBSDKCopying.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.m │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequest.m │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestConnection.m │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ ├── FBSDKGraphRequestDataAttachment.m │ │ │ ├── FBSDKMacros.h │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKProfile.h │ │ │ ├── FBSDKProfile.m │ │ │ ├── FBSDKProfilePictureView.h │ │ │ ├── FBSDKProfilePictureView.m │ │ │ ├── FBSDKSettings.h │ │ │ ├── FBSDKSettings.m │ │ │ ├── FBSDKTestUsersManager.h │ │ │ ├── FBSDKTestUsersManager.m │ │ │ ├── FBSDKUtility.h │ │ │ ├── FBSDKUtility.m │ │ │ └── Internal │ │ │ ├── AppEvents │ │ │ ├── FBSDKAppEvents+Internal.h │ │ │ ├── FBSDKAppEventsState.h │ │ │ ├── FBSDKAppEventsState.m │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ ├── FBSDKAppEventsStateManager.m │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ ├── FBSDKAppEventsUtility.m │ │ │ ├── FBSDKPaymentObserver.h │ │ │ ├── FBSDKPaymentObserver.m │ │ │ ├── FBSDKTimeSpentData.h │ │ │ └── FBSDKTimeSpentData.m │ │ │ ├── AppLink │ │ │ ├── FBSDKBoltsMeasurementEventListener.h │ │ │ └── FBSDKBoltsMeasurementEventListener.m │ │ │ ├── Base64 │ │ │ ├── FBSDKBase64.h │ │ │ └── FBSDKBase64.m │ │ │ ├── BridgeAPI │ │ │ ├── FBSDKBridgeAPICrypto.h │ │ │ ├── FBSDKBridgeAPICrypto.m │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ ├── FBSDKBridgeAPIRequest+Private.h │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ ├── FBSDKBridgeAPIRequest.m │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ ├── FBSDKBridgeAPIResponse.m │ │ │ ├── FBSDKURLOpening.h │ │ │ └── ProtocolVersions │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.h │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.m │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.h │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.m │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV2.h │ │ │ │ └── FBSDKBridgeAPIProtocolWebV2.m │ │ │ ├── Cryptography │ │ │ ├── FBSDKCrypto.h │ │ │ └── FBSDKCrypto.m │ │ │ ├── ErrorRecovery │ │ │ ├── FBSDKErrorRecoveryAttempter.h │ │ │ ├── FBSDKErrorRecoveryAttempter.m │ │ │ ├── _FBSDKTemporaryErrorRecoveryAttempter.h │ │ │ └── _FBSDKTemporaryErrorRecoveryAttempter.m │ │ │ ├── FBSDKApplicationDelegate+Internal.h │ │ │ ├── FBSDKAudioResourceLoader.h │ │ │ ├── FBSDKAudioResourceLoader.m │ │ │ ├── FBSDKCoreKit+Internal.h │ │ │ ├── FBSDKDynamicFrameworkLoader.h │ │ │ ├── FBSDKDynamicFrameworkLoader.m │ │ │ ├── FBSDKError.h │ │ │ ├── FBSDKError.m │ │ │ ├── FBSDKInternalUtility.h │ │ │ ├── FBSDKInternalUtility.m │ │ │ ├── FBSDKLogger.h │ │ │ ├── FBSDKLogger.m │ │ │ ├── FBSDKMath.h │ │ │ ├── FBSDKMath.m │ │ │ ├── FBSDKProfile+Internal.h │ │ │ ├── FBSDKSettings+Internal.h │ │ │ ├── FBSDKSystemAccountStoreAdapter.h │ │ │ ├── FBSDKSystemAccountStoreAdapter.m │ │ │ ├── FBSDKTriStateBOOL.h │ │ │ ├── FBSDKTriStateBOOL.m │ │ │ ├── FBSDKTypeUtility.h │ │ │ ├── FBSDKTypeUtility.m │ │ │ ├── Network │ │ │ ├── FBSDKGraphRequest+Internal.h │ │ │ ├── FBSDKGraphRequestBody.h │ │ │ ├── FBSDKGraphRequestBody.m │ │ │ ├── FBSDKGraphRequestConnection+Internal.h │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ ├── FBSDKGraphRequestMetadata.m │ │ │ ├── FBSDKGraphRequestPiggybackManager.h │ │ │ ├── FBSDKGraphRequestPiggybackManager.m │ │ │ ├── FBSDKURLConnection.h │ │ │ └── FBSDKURLConnection.m │ │ │ ├── ServerConfiguration │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ ├── FBSDKDialogConfiguration.m │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ ├── FBSDKErrorConfiguration.m │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ ├── FBSDKErrorRecoveryConfiguration.m │ │ │ ├── FBSDKServerConfiguration.h │ │ │ ├── FBSDKServerConfiguration.m │ │ │ ├── FBSDKServerConfigurationManager+Internal.h │ │ │ ├── FBSDKServerConfigurationManager.h │ │ │ └── FBSDKServerConfigurationManager.m │ │ │ ├── TokenCaching │ │ │ ├── FBSDKAccessTokenCache.h │ │ │ ├── FBSDKAccessTokenCache.m │ │ │ ├── FBSDKAccessTokenCacheV3.h │ │ │ ├── FBSDKAccessTokenCacheV3.m │ │ │ ├── FBSDKAccessTokenCacheV3_17.h │ │ │ ├── FBSDKAccessTokenCacheV3_17.m │ │ │ ├── FBSDKAccessTokenCacheV3_21.h │ │ │ ├── FBSDKAccessTokenCacheV3_21.m │ │ │ ├── FBSDKAccessTokenCacheV4.h │ │ │ ├── FBSDKAccessTokenCacheV4.m │ │ │ ├── FBSDKAccessTokenCaching.h │ │ │ ├── FBSDKKeychainStore.h │ │ │ ├── FBSDKKeychainStore.m │ │ │ ├── FBSDKKeychainStoreViaBundleID.h │ │ │ └── FBSDKKeychainStoreViaBundleID.m │ │ │ ├── UI │ │ │ ├── FBSDKButton+Subclass.h │ │ │ ├── FBSDKCloseIcon.h │ │ │ ├── FBSDKCloseIcon.m │ │ │ ├── FBSDKColor.h │ │ │ ├── FBSDKColor.m │ │ │ ├── FBSDKIcon.h │ │ │ ├── FBSDKIcon.m │ │ │ ├── FBSDKLogo.h │ │ │ ├── FBSDKLogo.m │ │ │ ├── FBSDKMaleSilhouetteIcon.h │ │ │ ├── FBSDKMaleSilhouetteIcon.m │ │ │ ├── FBSDKUIUtility.h │ │ │ ├── FBSDKViewImpressionTracker.h │ │ │ └── FBSDKViewImpressionTracker.m │ │ │ └── WebDialog │ │ │ ├── FBSDKWebDialog.h │ │ │ ├── FBSDKWebDialog.m │ │ │ ├── FBSDKWebDialogView.h │ │ │ └── FBSDKWebDialogView.m │ ├── LICENSE │ └── README.mdown │ ├── FBSDKLoginKit │ ├── FBSDKLoginKit │ │ └── FBSDKLoginKit │ │ │ ├── FBSDKLoginButton.h │ │ │ ├── FBSDKLoginButton.m │ │ │ ├── FBSDKLoginConstants.h │ │ │ ├── FBSDKLoginConstants.m │ │ │ ├── FBSDKLoginKit.h │ │ │ ├── FBSDKLoginManager.h │ │ │ ├── FBSDKLoginManager.m │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ ├── FBSDKLoginManagerLoginResult.m │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ ├── FBSDKLoginTooltipView.m │ │ │ ├── FBSDKTooltipView.h │ │ │ ├── FBSDKTooltipView.m │ │ │ └── Internal │ │ │ ├── FBSDKLoginCompletion+Internal.h │ │ │ ├── FBSDKLoginCompletion.h │ │ │ ├── FBSDKLoginCompletion.m │ │ │ ├── FBSDKLoginError.h │ │ │ ├── FBSDKLoginError.m │ │ │ ├── FBSDKLoginKit+Internal.h │ │ │ ├── FBSDKLoginManager+Internal.h │ │ │ ├── FBSDKLoginManagerLogger.h │ │ │ ├── FBSDKLoginManagerLogger.m │ │ │ ├── FBSDKLoginUtility.h │ │ │ ├── FBSDKLoginUtility.m │ │ │ ├── _FBSDKLoginRecoveryAttempter.h │ │ │ └── _FBSDKLoginRecoveryAttempter.m │ ├── LICENSE │ └── README.mdown │ ├── Haystack │ ├── LICENSE │ ├── README.md │ └── SDK │ │ ├── Categories │ │ ├── NSArray+Class │ │ │ ├── NSArray+Class.h │ │ │ └── NSArray+Class.m │ │ ├── NSData+Base64 │ │ │ ├── NSData+Base64.h │ │ │ └── NSData+Base64.m │ │ ├── NSDate+Additional │ │ │ ├── NSDate+Additional.h │ │ │ └── NSDate+Additional.m │ │ ├── NSDate+Timestamp │ │ │ ├── NSDate+Timestamp.h │ │ │ └── NSDate+Timestamp.m │ │ ├── NSDictionary+Class │ │ │ ├── NSDictionary+Class.h │ │ │ └── NSDictionary+Class.m │ │ ├── NSObject+Property │ │ │ ├── NSObject+Property.h │ │ │ └── NSObject+Property.m │ │ ├── NSObject+PropertyList │ │ │ ├── NSObject+PropertyList.h │ │ │ └── NSObject+PropertyList.m │ │ ├── NSObject+Runtime │ │ │ ├── NSObject+Runtime.h │ │ │ └── NSObject+Runtime.m │ │ ├── NSObject+Swizzle │ │ │ ├── NSObject+Swizzle.h │ │ │ └── NSObject+Swizzle.m │ │ ├── NSString+Additional │ │ │ ├── NSString+Additional.h │ │ │ └── NSString+Additional.m │ │ ├── NSString+Random │ │ │ ├── NSString+Random.h │ │ │ └── NSString+Random.m │ │ ├── NSString+Validation │ │ │ ├── NSString+Validation.h │ │ │ └── NSString+Validation.m │ │ ├── NSURL+Parameters │ │ │ ├── NSURL+Parameters.h │ │ │ └── NSURL+Parameters.m │ │ ├── UIAlertView+Short │ │ │ ├── UIAlertView+Short.h │ │ │ └── UIAlertView+Short.m │ │ ├── UIApplication+Information │ │ │ ├── UIApplication+Information.h │ │ │ └── UIApplication+Information.m │ │ ├── UIApplication+Screenshot │ │ │ ├── UIApplication+Screenshot.h │ │ │ └── UIApplication+Screenshot.m │ │ ├── UIApplication+Version │ │ │ ├── UIApplication+Version.h │ │ │ └── UIApplication+Version.m │ │ ├── UIButton+Position │ │ │ ├── UIButton+Position.h │ │ │ └── UIButton+Position.m │ │ ├── UIColor+Create │ │ │ ├── UIColor+Create.h │ │ │ └── UIColor+Create.m │ │ ├── UIColor+Flat │ │ │ ├── UIColor+Flat.h │ │ │ └── UIColor+Flat.m │ │ ├── UIDevice+Capabilities │ │ │ ├── UIDevice+Capabilities.h │ │ │ └── UIDevice+Capabilities.m │ │ ├── UIDevice+DeviceInfo │ │ │ ├── UIDevice+DeviceInfo.h │ │ │ └── UIDevice+DeviceInfo.m │ │ ├── UIDevice+Hardware │ │ │ ├── UIDevice+Hardware.h │ │ │ └── UIDevice+Hardware.m │ │ ├── UIDevice+Network │ │ │ ├── UIDevice+Network.h │ │ │ └── UIDevice+Network.m │ │ ├── UIDevice+Software │ │ │ ├── UIDevice+Software.h │ │ │ └── UIDevice+Software.m │ │ ├── UIFont+SmallCaps │ │ │ ├── UIFont+SmallCaps.h │ │ │ └── UIFont+SmallCaps.m │ │ ├── UIView+Cell │ │ │ ├── UIView+Cell.h │ │ │ └── UIView+Cell.m │ │ ├── UIView+Debug │ │ │ ├── UIView+Debug.h │ │ │ └── UIView+Debug.m │ │ ├── UIView+Hierarchy │ │ │ ├── UIView+Hierarchy.h │ │ │ └── UIView+Hierarchy.m │ │ ├── UIView+Snapshot │ │ │ ├── UIView+Snapshot.h │ │ │ └── UIView+Snapshot.m │ │ └── UIViewController+BackgroundImage │ │ │ ├── UIViewController+BackgroundImage.h │ │ │ └── UIViewController+BackgroundImage.m │ │ ├── Classes │ │ ├── HSMath │ │ │ ├── HSMath.h │ │ │ └── HSMath.m │ │ ├── HSUnitFormatter │ │ │ ├── HSUnitFormatter.h │ │ │ ├── HSUnitFormatter.m │ │ │ ├── HSUnitFormatterPrefix.h │ │ │ ├── HSUnitFormatterPrefix.m │ │ │ ├── HSUnitFormatterUnit.h │ │ │ └── HSUnitFormatterUnit.m │ │ └── HSWeakPointer │ │ │ ├── HSWeakPointer.h │ │ │ └── HSWeakPointer.m │ │ └── Haystack.h │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── AKPickerView │ │ │ └── AKPickerView.h │ │ ├── AuthKit │ │ │ ├── AKAuthViewController.h │ │ │ ├── AKClient.h │ │ │ ├── AKClientManager.h │ │ │ ├── AKCore.h │ │ │ ├── AKCrashlytics.h │ │ │ ├── AKCrashlyticsClient.h │ │ │ ├── AKCrashlyticsConstants.h │ │ │ ├── AKCrashlyticsUser.h │ │ │ ├── AKDefines.h │ │ │ ├── AKFacebook.h │ │ │ ├── AKFacebookClient.h │ │ │ ├── AKFacebookConstants.h │ │ │ ├── AKGitHub.h │ │ │ ├── AKGitHubApp.h │ │ │ ├── AKGitHubClient.h │ │ │ ├── AKGitHubConstants.h │ │ │ ├── AKGitHubLogin.h │ │ │ ├── AKGitHubUser.h │ │ │ ├── AKGoogle.h │ │ │ ├── AKGoogleConstants.h │ │ │ ├── AKInterface.h │ │ │ ├── AKInterfaceLoginSource.h │ │ │ ├── AKLinkedIn.h │ │ │ ├── AKLinkedInClient.h │ │ │ ├── AKLinkedInConstants.h │ │ │ ├── AKLinkedInRequestSerializer.h │ │ │ ├── AKLive.h │ │ │ ├── AKLiveClient.h │ │ │ ├── AKLiveConstants.h │ │ │ ├── AKLoginSource.h │ │ │ ├── AKOAuth.h │ │ │ ├── AKOAuthClient.h │ │ │ ├── AKOAuthLoginSource.h │ │ │ ├── AKOAuthUser.h │ │ │ ├── AKPasswordClient.h │ │ │ ├── AKPasswordLoginSource.h │ │ │ ├── AKTwitter.h │ │ │ ├── AKTwitterClient.h │ │ │ ├── AKTwitterConstants.h │ │ │ ├── AKTwitterUser.h │ │ │ ├── AKTwoFactorLoginSource.h │ │ │ ├── AKUser+Storage.h │ │ │ ├── AKUser.h │ │ │ ├── AuthKit.h │ │ │ └── akgoogleclient.h │ │ ├── Bolts │ │ │ ├── BFAppLink.h │ │ │ ├── BFAppLinkNavigation.h │ │ │ ├── BFAppLinkResolving.h │ │ │ ├── BFAppLinkReturnToRefererController.h │ │ │ ├── BFAppLinkReturnToRefererView.h │ │ │ ├── BFAppLinkReturnToRefererView_Internal.h │ │ │ ├── BFAppLinkTarget.h │ │ │ ├── BFAppLink_Internal.h │ │ │ ├── BFExecutor.h │ │ │ ├── BFMeasurementEvent.h │ │ │ ├── BFMeasurementEvent_Internal.h │ │ │ ├── BFTask.h │ │ │ ├── BFTaskCompletionSource.h │ │ │ ├── BFURL.h │ │ │ ├── BFURL_Internal.h │ │ │ ├── BFWebViewAppLinkResolver.h │ │ │ ├── Bolts.h │ │ │ └── BoltsVersion.h │ │ ├── FBSDKCoreKit │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKCopying.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKCoreKit │ │ │ │ ├── AppEvents │ │ │ │ │ ├── FBSDKAppEvents+Internal.h │ │ │ │ │ ├── FBSDKAppEventsState.h │ │ │ │ │ ├── FBSDKAppEventsStateManager.h │ │ │ │ │ ├── FBSDKAppEventsUtility.h │ │ │ │ │ ├── FBSDKPaymentObserver.h │ │ │ │ │ └── FBSDKTimeSpentData.h │ │ │ │ ├── AppLink │ │ │ │ │ └── FBSDKBoltsMeasurementEventListener.h │ │ │ │ ├── Base64 │ │ │ │ │ └── FBSDKBase64.h │ │ │ │ ├── BridgeAPI │ │ │ │ │ ├── FBSDKBridgeAPICrypto.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocol.h │ │ │ │ │ ├── FBSDKBridgeAPIProtocolType.h │ │ │ │ │ ├── FBSDKBridgeAPIRequest+Private.h │ │ │ │ │ ├── FBSDKBridgeAPIRequest.h │ │ │ │ │ ├── FBSDKBridgeAPIResponse.h │ │ │ │ │ ├── FBSDKURLOpening.h │ │ │ │ │ └── ProtocolVersions │ │ │ │ │ │ ├── FBSDKBridgeAPIProtocolNativeV1.h │ │ │ │ │ │ ├── FBSDKBridgeAPIProtocolWebV1.h │ │ │ │ │ │ └── FBSDKBridgeAPIProtocolWebV2.h │ │ │ │ ├── Cryptography │ │ │ │ │ └── FBSDKCrypto.h │ │ │ │ ├── ErrorRecovery │ │ │ │ │ ├── FBSDKErrorRecoveryAttempter.h │ │ │ │ │ └── _FBSDKTemporaryErrorRecoveryAttempter.h │ │ │ │ ├── FBSDKApplicationDelegate+Internal.h │ │ │ │ ├── FBSDKAudioResourceLoader.h │ │ │ │ ├── FBSDKCoreKit+Internal.h │ │ │ │ ├── FBSDKDynamicFrameworkLoader.h │ │ │ │ ├── FBSDKError.h │ │ │ │ ├── FBSDKInternalUtility.h │ │ │ │ ├── FBSDKLogger.h │ │ │ │ ├── FBSDKMath.h │ │ │ │ ├── FBSDKProfile+Internal.h │ │ │ │ ├── FBSDKSettings+Internal.h │ │ │ │ ├── FBSDKSystemAccountStoreAdapter.h │ │ │ │ ├── FBSDKTriStateBOOL.h │ │ │ │ ├── FBSDKTypeUtility.h │ │ │ │ ├── Network │ │ │ │ │ ├── FBSDKGraphRequest+Internal.h │ │ │ │ │ ├── FBSDKGraphRequestBody.h │ │ │ │ │ ├── FBSDKGraphRequestConnection+Internal.h │ │ │ │ │ ├── FBSDKGraphRequestMetadata.h │ │ │ │ │ ├── FBSDKGraphRequestPiggybackManager.h │ │ │ │ │ └── FBSDKURLConnection.h │ │ │ │ ├── ServerConfiguration │ │ │ │ │ ├── FBSDKDialogConfiguration.h │ │ │ │ │ ├── FBSDKErrorConfiguration.h │ │ │ │ │ ├── FBSDKErrorRecoveryConfiguration.h │ │ │ │ │ ├── FBSDKServerConfiguration.h │ │ │ │ │ ├── FBSDKServerConfigurationManager+Internal.h │ │ │ │ │ └── FBSDKServerConfigurationManager.h │ │ │ │ ├── TokenCaching │ │ │ │ │ ├── FBSDKAccessTokenCache.h │ │ │ │ │ ├── FBSDKAccessTokenCacheV3.h │ │ │ │ │ ├── FBSDKAccessTokenCacheV3_17.h │ │ │ │ │ ├── FBSDKAccessTokenCacheV3_21.h │ │ │ │ │ ├── FBSDKAccessTokenCacheV4.h │ │ │ │ │ ├── FBSDKAccessTokenCaching.h │ │ │ │ │ ├── FBSDKKeychainStore.h │ │ │ │ │ └── FBSDKKeychainStoreViaBundleID.h │ │ │ │ ├── UI │ │ │ │ │ ├── FBSDKButton+Subclass.h │ │ │ │ │ ├── FBSDKCloseIcon.h │ │ │ │ │ ├── FBSDKColor.h │ │ │ │ │ ├── FBSDKIcon.h │ │ │ │ │ ├── FBSDKLogo.h │ │ │ │ │ ├── FBSDKMaleSilhouetteIcon.h │ │ │ │ │ ├── FBSDKUIUtility.h │ │ │ │ │ └── FBSDKViewImpressionTracker.h │ │ │ │ └── WebDialog │ │ │ │ │ ├── FBSDKWebDialog.h │ │ │ │ │ └── FBSDKWebDialogView.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ ├── FBSDKMacros.h │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKProfile.h │ │ │ ├── FBSDKProfilePictureView.h │ │ │ ├── FBSDKSettings.h │ │ │ ├── FBSDKTestUsersManager.h │ │ │ └── FBSDKUtility.h │ │ ├── FBSDKLoginKit │ │ │ └── FBSDKLoginKit │ │ │ │ ├── FBSDKLoginButton.h │ │ │ │ ├── FBSDKLoginCompletion+Internal.h │ │ │ │ ├── FBSDKLoginCompletion.h │ │ │ │ ├── FBSDKLoginConstants.h │ │ │ │ ├── FBSDKLoginError.h │ │ │ │ ├── FBSDKLoginKit+Internal.h │ │ │ │ ├── FBSDKLoginKit.h │ │ │ │ ├── FBSDKLoginManager+Internal.h │ │ │ │ ├── FBSDKLoginManager.h │ │ │ │ ├── FBSDKLoginManagerLogger.h │ │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ │ ├── FBSDKLoginUtility.h │ │ │ │ ├── FBSDKTooltipView.h │ │ │ │ └── _FBSDKLoginRecoveryAttempter.h │ │ ├── Haystack │ │ │ ├── HSMath.h │ │ │ ├── HSUnitFormatter.h │ │ │ ├── HSUnitFormatterPrefix.h │ │ │ ├── HSUnitFormatterUnit.h │ │ │ ├── HSWeakPointer.h │ │ │ ├── Haystack.h │ │ │ ├── NSArray+Class.h │ │ │ ├── NSData+Base64.h │ │ │ ├── NSDate+Additional.h │ │ │ ├── NSDate+Timestamp.h │ │ │ ├── NSDictionary+Class.h │ │ │ ├── NSObject+Property.h │ │ │ ├── NSObject+PropertyList.h │ │ │ ├── NSObject+Runtime.h │ │ │ ├── NSObject+Swizzle.h │ │ │ ├── NSString+Additional.h │ │ │ ├── NSString+Random.h │ │ │ ├── NSString+Validation.h │ │ │ ├── NSURL+Parameters.h │ │ │ ├── UIAlertView+Short.h │ │ │ ├── UIApplication+Information.h │ │ │ ├── UIApplication+Screenshot.h │ │ │ ├── UIApplication+Version.h │ │ │ ├── UIButton+Position.h │ │ │ ├── UIColor+Create.h │ │ │ ├── UIColor+Flat.h │ │ │ ├── UIDevice+Capabilities.h │ │ │ ├── UIDevice+DeviceInfo.h │ │ │ ├── UIDevice+Hardware.h │ │ │ ├── UIDevice+Network.h │ │ │ ├── UIDevice+Software.h │ │ │ ├── UIFont+SmallCaps.h │ │ │ ├── UIView+Cell.h │ │ │ ├── UIView+Debug.h │ │ │ ├── UIView+Hierarchy.h │ │ │ ├── UIView+Snapshot.h │ │ │ └── UIViewController+BackgroundImage.h │ │ ├── IOSLinkedInAPI │ │ │ ├── LIALinkedInApplication.h │ │ │ ├── LIALinkedInAuthorizationViewController.h │ │ │ ├── LIALinkedInHttpClient.h │ │ │ └── NSString+LIAEncode.h │ │ ├── JSONModel │ │ │ ├── JSONAPI.h │ │ │ ├── JSONHTTPClient.h │ │ │ ├── JSONKeyMapper.h │ │ │ ├── JSONModel+networking.h │ │ │ ├── JSONModel.h │ │ │ ├── JSONModelArray.h │ │ │ ├── JSONModelClassProperty.h │ │ │ ├── JSONModelError.h │ │ │ ├── JSONModelLib.h │ │ │ ├── JSONValueTransformer.h │ │ │ └── NSArray+JSONModel.h │ │ ├── LiveSDK │ │ │ ├── JsonParser.h │ │ │ ├── JsonWriter.h │ │ │ ├── LiveApiHelper.h │ │ │ ├── LiveAuthDelegate.h │ │ │ ├── LiveAuthDialog.h │ │ │ ├── LiveAuthDialogDelegate.h │ │ │ ├── LiveAuthHelper.h │ │ │ ├── LiveAuthRefreshRequest.h │ │ │ ├── LiveAuthRequest.h │ │ │ ├── LiveAuthStorage.h │ │ │ ├── LiveConnectClient.h │ │ │ ├── LiveConnectClientCore.h │ │ │ ├── LiveConnectSession.h │ │ │ ├── LiveConnectSessionStatus.h │ │ │ ├── LiveConnectionCreatorDelegate.h │ │ │ ├── LiveConnectionHelper.h │ │ │ ├── LiveConstants.h │ │ │ ├── LiveDownloadOperation.h │ │ │ ├── LiveDownloadOperationCore.h │ │ │ ├── LiveDownloadOperationDelegate.h │ │ │ ├── LiveDownloadOperationInternal.h │ │ │ ├── LiveOperation.h │ │ │ ├── LiveOperationCore.h │ │ │ ├── LiveOperationDelegate.h │ │ │ ├── LiveOperationInternal.h │ │ │ ├── LiveOperationProgress.h │ │ │ ├── LiveUploadOperationCore.h │ │ │ ├── LiveUploadOperationDelegate.h │ │ │ ├── LiveUploadOverwriteOption.h │ │ │ ├── StreamReader.h │ │ │ ├── StringHelper.h │ │ │ └── UrlHelper.h │ │ ├── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ │ ├── SSKeychain │ │ │ ├── SSKeychain.h │ │ │ └── SSKeychainQuery.h │ │ ├── STTwitter │ │ │ ├── BAVPlistNode.h │ │ │ ├── JSONSyntaxHighlight.h │ │ │ ├── NSDateFormatter+STTwitter.h │ │ │ ├── NSError+STTwitter.h │ │ │ ├── NSString+STTwitter.h │ │ │ ├── STHTTPRequest+STTwitter.h │ │ │ ├── STHTTPRequest.h │ │ │ ├── STTwitter.h │ │ │ ├── STTwitterAPI.h │ │ │ ├── STTwitterAppOnly.h │ │ │ ├── STTwitterHTML.h │ │ │ ├── STTwitterOAuth.h │ │ │ ├── STTwitterOS.h │ │ │ ├── STTwitterOSRequest.h │ │ │ └── STTwitterProtocol.h │ │ └── googleplus-ios-sdk │ │ │ ├── GPPDeepLink.h │ │ │ ├── GPPShare.h │ │ │ ├── GPPSignIn.h │ │ │ ├── GPPSignInButton.h │ │ │ ├── GPPURLHandler.h │ │ │ ├── GTLBase64.h │ │ │ ├── GTLBatchQuery.h │ │ │ ├── GTLBatchResult.h │ │ │ ├── GTLDateTime.h │ │ │ ├── GTLDefines.h │ │ │ ├── GTLErrorObject.h │ │ │ ├── GTLFramework.h │ │ │ ├── GTLJSONParser.h │ │ │ ├── GTLObject.h │ │ │ ├── GTLPlus.h │ │ │ ├── GTLPlusAcl.h │ │ │ ├── GTLPlusAclentryResource.h │ │ │ ├── GTLPlusActivity.h │ │ │ ├── GTLPlusActivityFeed.h │ │ │ ├── GTLPlusComment.h │ │ │ ├── GTLPlusCommentFeed.h │ │ │ ├── GTLPlusConstants.h │ │ │ ├── GTLPlusItemScope.h │ │ │ ├── GTLPlusMoment.h │ │ │ ├── GTLPlusMomentsFeed.h │ │ │ ├── GTLPlusPeopleFeed.h │ │ │ ├── GTLPlusPerson.h │ │ │ ├── GTLPlusPlace.h │ │ │ ├── GTLQuery.h │ │ │ ├── GTLQueryPlus.h │ │ │ ├── GTLRuntimeCommon.h │ │ │ ├── GTLService.h │ │ │ ├── GTLServicePlus.h │ │ │ ├── GTLTargetNamespace.h │ │ │ ├── GTLUploadParameters.h │ │ │ ├── GTLUtilities.h │ │ │ ├── GTMDefines.h │ │ │ ├── GTMGarbageCollection.h │ │ │ ├── GTMHTTPFetchHistory.h │ │ │ ├── GTMHTTPFetcher.h │ │ │ ├── GTMHTTPFetcherLogging.h │ │ │ ├── GTMHTTPFetcherService.h │ │ │ ├── GTMHTTPUploadFetcher.h │ │ │ ├── GTMLogger.h │ │ │ ├── GTMMethodCheck.h │ │ │ ├── GTMNSDictionary+URLArguments.h │ │ │ ├── GTMNSString+URLArguments.h │ │ │ ├── GTMOAuth2Authentication.h │ │ │ ├── GTMOAuth2SignIn.h │ │ │ ├── GTMOAuth2ViewControllerTouch.h │ │ │ ├── GTMObjC2Runtime.h │ │ │ ├── GoogleOpenSource.h │ │ │ ├── GooglePlus.h │ │ │ └── OpenInChromeController.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── AKPickerView │ │ └── AKPickerView.h │ │ ├── AuthKit │ │ ├── AKAuthViewController.h │ │ ├── AKClient.h │ │ ├── AKClientManager.h │ │ ├── AKCore.h │ │ ├── AKCrashlytics.h │ │ ├── AKCrashlyticsClient.h │ │ ├── AKCrashlyticsConstants.h │ │ ├── AKCrashlyticsUser.h │ │ ├── AKDefines.h │ │ ├── AKFacebook.h │ │ ├── AKFacebookClient.h │ │ ├── AKFacebookConstants.h │ │ ├── AKGitHub.h │ │ ├── AKGitHubApp.h │ │ ├── AKGitHubClient.h │ │ ├── AKGitHubConstants.h │ │ ├── AKGitHubLogin.h │ │ ├── AKGitHubUser.h │ │ ├── AKGoogle.h │ │ ├── AKGoogleConstants.h │ │ ├── AKInterface.h │ │ ├── AKInterfaceLoginSource.h │ │ ├── AKLinkedIn.h │ │ ├── AKLinkedInClient.h │ │ ├── AKLinkedInConstants.h │ │ ├── AKLinkedInRequestSerializer.h │ │ ├── AKLive.h │ │ ├── AKLiveClient.h │ │ ├── AKLiveConstants.h │ │ ├── AKLoginSource.h │ │ ├── AKOAuth.h │ │ ├── AKOAuthClient.h │ │ ├── AKOAuthLoginSource.h │ │ ├── AKOAuthUser.h │ │ ├── AKPasswordClient.h │ │ ├── AKPasswordLoginSource.h │ │ ├── AKTwitter.h │ │ ├── AKTwitterClient.h │ │ ├── AKTwitterConstants.h │ │ ├── AKTwitterUser.h │ │ ├── AKTwoFactorLoginSource.h │ │ ├── AKUser+Storage.h │ │ ├── AKUser.h │ │ ├── AuthKit.h │ │ └── akgoogleclient.h │ │ ├── Bolts │ │ ├── BFAppLink.h │ │ ├── BFAppLinkNavigation.h │ │ ├── BFAppLinkResolving.h │ │ ├── BFAppLinkReturnToRefererController.h │ │ ├── BFAppLinkReturnToRefererView.h │ │ ├── BFAppLinkReturnToRefererView_Internal.h │ │ ├── BFAppLinkTarget.h │ │ ├── BFAppLink_Internal.h │ │ ├── BFExecutor.h │ │ ├── BFMeasurementEvent.h │ │ ├── BFMeasurementEvent_Internal.h │ │ ├── BFTask.h │ │ ├── BFTaskCompletionSource.h │ │ ├── BFURL.h │ │ ├── BFURL_Internal.h │ │ ├── BFWebViewAppLinkResolver.h │ │ ├── Bolts.h │ │ └── BoltsVersion.h │ │ ├── FBSDKCoreKit │ │ ├── FBSDKAccessToken.h │ │ ├── FBSDKAppEvents.h │ │ ├── FBSDKAppLinkResolver.h │ │ ├── FBSDKAppLinkUtility.h │ │ ├── FBSDKApplicationDelegate.h │ │ ├── FBSDKButton.h │ │ ├── FBSDKConstants.h │ │ ├── FBSDKCopying.h │ │ ├── FBSDKCoreKit.h │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ ├── FBSDKGraphRequest.h │ │ ├── FBSDKGraphRequestConnection.h │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ ├── FBSDKMacros.h │ │ ├── FBSDKMutableCopying.h │ │ ├── FBSDKProfile.h │ │ ├── FBSDKProfilePictureView.h │ │ ├── FBSDKSettings.h │ │ ├── FBSDKTestUsersManager.h │ │ └── FBSDKUtility.h │ │ ├── FBSDKLoginKit │ │ └── FBSDKLoginKit │ │ │ ├── FBSDKLoginButton.h │ │ │ ├── FBSDKLoginConstants.h │ │ │ ├── FBSDKLoginKit.h │ │ │ ├── FBSDKLoginManager.h │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ └── FBSDKTooltipView.h │ │ ├── Haystack │ │ ├── HSMath.h │ │ ├── HSUnitFormatter.h │ │ ├── HSUnitFormatterPrefix.h │ │ ├── HSUnitFormatterUnit.h │ │ ├── HSWeakPointer.h │ │ ├── Haystack.h │ │ ├── NSArray+Class.h │ │ ├── NSData+Base64.h │ │ ├── NSDate+Additional.h │ │ ├── NSDate+Timestamp.h │ │ ├── NSDictionary+Class.h │ │ ├── NSObject+Property.h │ │ ├── NSObject+PropertyList.h │ │ ├── NSObject+Runtime.h │ │ ├── NSObject+Swizzle.h │ │ ├── NSString+Additional.h │ │ ├── NSString+Random.h │ │ ├── NSString+Validation.h │ │ ├── NSURL+Parameters.h │ │ ├── UIAlertView+Short.h │ │ ├── UIApplication+Information.h │ │ ├── UIApplication+Screenshot.h │ │ ├── UIApplication+Version.h │ │ ├── UIButton+Position.h │ │ ├── UIColor+Create.h │ │ ├── UIColor+Flat.h │ │ ├── UIDevice+Capabilities.h │ │ ├── UIDevice+DeviceInfo.h │ │ ├── UIDevice+Hardware.h │ │ ├── UIDevice+Network.h │ │ ├── UIDevice+Software.h │ │ ├── UIFont+SmallCaps.h │ │ ├── UIView+Cell.h │ │ ├── UIView+Debug.h │ │ ├── UIView+Hierarchy.h │ │ ├── UIView+Snapshot.h │ │ └── UIViewController+BackgroundImage.h │ │ ├── IOSLinkedInAPI │ │ ├── LIALinkedInApplication.h │ │ ├── LIALinkedInAuthorizationViewController.h │ │ ├── LIALinkedInHttpClient.h │ │ └── NSString+LIAEncode.h │ │ ├── JSONModel │ │ ├── JSONAPI.h │ │ ├── JSONHTTPClient.h │ │ ├── JSONKeyMapper.h │ │ ├── JSONModel+networking.h │ │ ├── JSONModel.h │ │ ├── JSONModelArray.h │ │ ├── JSONModelClassProperty.h │ │ ├── JSONModelError.h │ │ ├── JSONModelLib.h │ │ ├── JSONValueTransformer.h │ │ └── NSArray+JSONModel.h │ │ ├── LiveSDK │ │ ├── LiveAuthDelegate.h │ │ ├── LiveConnectClient.h │ │ ├── LiveConnectSession.h │ │ ├── LiveConnectSessionStatus.h │ │ ├── LiveDownloadOperation.h │ │ ├── LiveDownloadOperationDelegate.h │ │ ├── LiveOperation.h │ │ ├── LiveOperationDelegate.h │ │ ├── LiveOperationProgress.h │ │ ├── LiveUploadOperationDelegate.h │ │ └── LiveUploadOverwriteOption.h │ │ ├── PureLayout │ │ ├── ALView+PureLayout.h │ │ ├── NSArray+PureLayout.h │ │ ├── NSLayoutConstraint+PureLayout.h │ │ ├── PureLayout+Internal.h │ │ ├── PureLayout.h │ │ └── PureLayoutDefines.h │ │ ├── SSKeychain │ │ ├── SSKeychain.h │ │ └── SSKeychainQuery.h │ │ ├── STTwitter │ │ ├── BAVPlistNode.h │ │ ├── JSONSyntaxHighlight.h │ │ ├── NSDateFormatter+STTwitter.h │ │ ├── NSError+STTwitter.h │ │ ├── NSString+STTwitter.h │ │ ├── STHTTPRequest+STTwitter.h │ │ ├── STHTTPRequest.h │ │ ├── STTwitter.h │ │ ├── STTwitterAPI.h │ │ ├── STTwitterAppOnly.h │ │ ├── STTwitterHTML.h │ │ ├── STTwitterOAuth.h │ │ ├── STTwitterOS.h │ │ ├── STTwitterOSRequest.h │ │ └── STTwitterProtocol.h │ │ └── googleplus-ios-sdk │ │ ├── GPPDeepLink.h │ │ ├── GPPShare.h │ │ ├── GPPSignIn.h │ │ ├── GPPSignInButton.h │ │ ├── GPPURLHandler.h │ │ ├── GTLBase64.h │ │ ├── GTLBatchQuery.h │ │ ├── GTLBatchResult.h │ │ ├── GTLDateTime.h │ │ ├── GTLDefines.h │ │ ├── GTLErrorObject.h │ │ ├── GTLFramework.h │ │ ├── GTLJSONParser.h │ │ ├── GTLObject.h │ │ ├── GTLPlus.h │ │ ├── GTLPlusAcl.h │ │ ├── GTLPlusAclentryResource.h │ │ ├── GTLPlusActivity.h │ │ ├── GTLPlusActivityFeed.h │ │ ├── GTLPlusComment.h │ │ ├── GTLPlusCommentFeed.h │ │ ├── GTLPlusConstants.h │ │ ├── GTLPlusItemScope.h │ │ ├── GTLPlusMoment.h │ │ ├── GTLPlusMomentsFeed.h │ │ ├── GTLPlusPeopleFeed.h │ │ ├── GTLPlusPerson.h │ │ ├── GTLPlusPlace.h │ │ ├── GTLQuery.h │ │ ├── GTLQueryPlus.h │ │ ├── GTLRuntimeCommon.h │ │ ├── GTLService.h │ │ ├── GTLServicePlus.h │ │ ├── GTLTargetNamespace.h │ │ ├── GTLUploadParameters.h │ │ ├── GTLUtilities.h │ │ ├── GTMDefines.h │ │ ├── GTMGarbageCollection.h │ │ ├── GTMHTTPFetchHistory.h │ │ ├── GTMHTTPFetcher.h │ │ ├── GTMHTTPFetcherLogging.h │ │ ├── GTMHTTPFetcherService.h │ │ ├── GTMHTTPUploadFetcher.h │ │ ├── GTMLogger.h │ │ ├── GTMMethodCheck.h │ │ ├── GTMNSDictionary+URLArguments.h │ │ ├── GTMNSString+URLArguments.h │ │ ├── GTMOAuth2Authentication.h │ │ ├── GTMOAuth2SignIn.h │ │ ├── GTMOAuth2ViewControllerTouch.h │ │ ├── GTMObjC2Runtime.h │ │ ├── GoogleOpenSource.h │ │ ├── GooglePlus.h │ │ └── OpenInChromeController.h │ ├── IOSLinkedInAPI │ ├── IOSLinkedInAPI │ │ ├── LIALinkedInApplication.h │ │ ├── LIALinkedInApplication.m │ │ ├── LIALinkedInAuthorizationViewController.h │ │ ├── LIALinkedInAuthorizationViewController.m │ │ ├── LIALinkedInHttpClient.h │ │ ├── LIALinkedInHttpClient.m │ │ ├── NSString+LIAEncode.h │ │ └── NSString+LIAEncode.m │ ├── LICENSE │ └── README.md │ ├── JSONModel │ ├── JSONModel │ │ ├── JSONModel │ │ │ ├── JSONModel.h │ │ │ ├── JSONModel.m │ │ │ ├── JSONModelArray.h │ │ │ ├── JSONModelArray.m │ │ │ ├── JSONModelClassProperty.h │ │ │ ├── JSONModelClassProperty.m │ │ │ ├── JSONModelError.h │ │ │ └── JSONModelError.m │ │ ├── JSONModelCategories │ │ │ ├── NSArray+JSONModel.h │ │ │ └── NSArray+JSONModel.m │ │ ├── JSONModelLib.h │ │ ├── JSONModelNetworking │ │ │ ├── JSONAPI.h │ │ │ ├── JSONAPI.m │ │ │ ├── JSONHTTPClient.h │ │ │ ├── JSONHTTPClient.m │ │ │ ├── JSONModel+networking.h │ │ │ └── JSONModel+networking.m │ │ └── JSONModelTransformations │ │ │ ├── JSONKeyMapper.h │ │ │ ├── JSONKeyMapper.m │ │ │ ├── JSONValueTransformer.h │ │ │ └── JSONValueTransformer.m │ ├── LICENSE_jsonmodel.txt │ └── README.md │ ├── LiveSDK │ ├── LICENSE.txt │ ├── README.mdown │ └── src │ │ └── LiveSDK │ │ └── Library │ │ ├── Internal │ │ ├── Helpers │ │ │ ├── JsonParser.h │ │ │ ├── JsonParser.m │ │ │ ├── JsonWriter.h │ │ │ ├── JsonWriter.m │ │ │ ├── LiveApiHelper.h │ │ │ ├── LiveApiHelper.m │ │ │ ├── LiveAuthHelper.h │ │ │ ├── LiveAuthHelper.m │ │ │ ├── LiveConnectionCreatorDelegate.h │ │ │ ├── LiveConnectionHelper.h │ │ │ ├── LiveConnectionHelper.m │ │ │ ├── StreamReader.h │ │ │ ├── StreamReader.m │ │ │ ├── StringHelper.h │ │ │ ├── StringHelper.m │ │ │ ├── UrlHelper.h │ │ │ └── UrlHelper.m │ │ ├── LiveAuthDialog.h │ │ ├── LiveAuthDialog.m │ │ ├── LiveAuthDialogDelegate.h │ │ ├── LiveAuthDialog_iPad.xib │ │ ├── LiveAuthDialog_iPhone.xib │ │ ├── LiveAuthRefreshRequest.h │ │ ├── LiveAuthRefreshRequest.m │ │ ├── LiveAuthRequest.h │ │ ├── LiveAuthRequest.m │ │ ├── LiveAuthStorage.h │ │ ├── LiveAuthStorage.m │ │ ├── LiveConnectClientCore.h │ │ ├── LiveConnectClientCore.m │ │ ├── LiveConstants.h │ │ ├── LiveDownloadOperationCore.h │ │ ├── LiveDownloadOperationCore.m │ │ ├── LiveDownloadOperationInternal.h │ │ ├── LiveOperationCore.h │ │ ├── LiveOperationCore.m │ │ ├── LiveOperationInternal.h │ │ ├── LiveUploadOperationCore.h │ │ ├── LiveUploadOperationCore.m │ │ └── Resources │ │ │ └── backArrow_black.png │ │ └── Public │ │ ├── LiveAuthDelegate.h │ │ ├── LiveConnectClient.h │ │ ├── LiveConnectClient.m │ │ ├── LiveConnectSession.h │ │ ├── LiveConnectSession.m │ │ ├── LiveConnectSessionStatus.h │ │ ├── LiveDownloadOperation.h │ │ ├── LiveDownloadOperation.m │ │ ├── LiveDownloadOperationDelegate.h │ │ ├── LiveOperation.h │ │ ├── LiveOperation.m │ │ ├── LiveOperationDelegate.h │ │ ├── LiveOperationProgress.h │ │ ├── LiveOperationProgress.m │ │ ├── LiveUploadOperationDelegate.h │ │ └── LiveUploadOverwriteOption.h │ ├── Local Podspecs │ └── AuthKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── PureLayout │ ├── LICENSE │ ├── PureLayout │ │ └── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── ALView+PureLayout.m │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSArray+PureLayout.m │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.m │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ └── README.md │ ├── SSKeychain │ ├── LICENSE │ ├── Readme.markdown │ └── SSKeychain │ │ ├── SSKeychain.h │ │ ├── SSKeychain.m │ │ ├── SSKeychainQuery.h │ │ └── SSKeychainQuery.m │ ├── STTwitter │ ├── LICENCE.txt │ ├── README.md │ └── STTwitter │ │ ├── NSDateFormatter+STTwitter.h │ │ ├── NSDateFormatter+STTwitter.m │ │ ├── NSError+STTwitter.h │ │ ├── NSError+STTwitter.m │ │ ├── NSString+STTwitter.h │ │ ├── NSString+STTwitter.m │ │ ├── STHTTPRequest+STTwitter.h │ │ ├── STHTTPRequest+STTwitter.m │ │ ├── STTwitter.h │ │ ├── STTwitterAPI.h │ │ ├── STTwitterAPI.m │ │ ├── STTwitterAppOnly.h │ │ ├── STTwitterAppOnly.m │ │ ├── STTwitterHTML.h │ │ ├── STTwitterHTML.m │ │ ├── STTwitterOAuth.h │ │ ├── STTwitterOAuth.m │ │ ├── STTwitterOS.h │ │ ├── STTwitterOS.m │ │ ├── STTwitterOSRequest.h │ │ ├── STTwitterOSRequest.m │ │ ├── STTwitterProtocol.h │ │ └── Vendor │ │ ├── BAVPlistNode.h │ │ ├── BAVPlistNode.m │ │ ├── JSONSyntaxHighlight.h │ │ ├── JSONSyntaxHighlight.m │ │ ├── STHTTPRequest.h │ │ └── STHTTPRequest.m │ ├── Target Support Files │ ├── Pods-AFNetworking │ │ ├── Pods-AFNetworking-Private.xcconfig │ │ ├── Pods-AFNetworking-dummy.m │ │ ├── Pods-AFNetworking-prefix.pch │ │ └── Pods-AFNetworking.xcconfig │ ├── Pods-AKPickerView │ │ ├── Pods-AKPickerView-Private.xcconfig │ │ ├── Pods-AKPickerView-dummy.m │ │ ├── Pods-AKPickerView-prefix.pch │ │ └── Pods-AKPickerView.xcconfig │ ├── Pods-AuthKit │ │ ├── Pods-AuthKit-Private.xcconfig │ │ ├── Pods-AuthKit-dummy.m │ │ ├── Pods-AuthKit-prefix.pch │ │ └── Pods-AuthKit.xcconfig │ ├── Pods-Bolts │ │ ├── Pods-Bolts-Private.xcconfig │ │ ├── Pods-Bolts-dummy.m │ │ ├── Pods-Bolts-prefix.pch │ │ └── Pods-Bolts.xcconfig │ ├── Pods-FBSDKCoreKit │ │ ├── Pods-FBSDKCoreKit-Private.xcconfig │ │ ├── Pods-FBSDKCoreKit-dummy.m │ │ ├── Pods-FBSDKCoreKit-prefix.pch │ │ └── Pods-FBSDKCoreKit.xcconfig │ ├── Pods-FBSDKLoginKit │ │ ├── Pods-FBSDKLoginKit-Private.xcconfig │ │ ├── Pods-FBSDKLoginKit-dummy.m │ │ ├── Pods-FBSDKLoginKit-prefix.pch │ │ └── Pods-FBSDKLoginKit.xcconfig │ ├── Pods-Haystack │ │ ├── Pods-Haystack-Private.xcconfig │ │ ├── Pods-Haystack-dummy.m │ │ ├── Pods-Haystack-prefix.pch │ │ └── Pods-Haystack.xcconfig │ ├── Pods-IOSLinkedInAPI │ │ ├── Pods-IOSLinkedInAPI-Private.xcconfig │ │ ├── Pods-IOSLinkedInAPI-dummy.m │ │ ├── Pods-IOSLinkedInAPI-prefix.pch │ │ └── Pods-IOSLinkedInAPI.xcconfig │ ├── Pods-JSONModel │ │ ├── Pods-JSONModel-Private.xcconfig │ │ ├── Pods-JSONModel-dummy.m │ │ ├── Pods-JSONModel-prefix.pch │ │ └── Pods-JSONModel.xcconfig │ ├── Pods-LiveSDK │ │ ├── Pods-LiveSDK-Private.xcconfig │ │ ├── Pods-LiveSDK-dummy.m │ │ ├── Pods-LiveSDK-prefix.pch │ │ └── Pods-LiveSDK.xcconfig │ ├── Pods-PureLayout │ │ ├── Pods-PureLayout-Private.xcconfig │ │ ├── Pods-PureLayout-dummy.m │ │ ├── Pods-PureLayout-prefix.pch │ │ └── Pods-PureLayout.xcconfig │ ├── Pods-SSKeychain │ │ ├── Pods-SSKeychain-Private.xcconfig │ │ ├── Pods-SSKeychain-dummy.m │ │ ├── Pods-SSKeychain-prefix.pch │ │ └── Pods-SSKeychain.xcconfig │ ├── Pods-STTwitter │ │ ├── Pods-STTwitter-Private.xcconfig │ │ ├── Pods-STTwitter-dummy.m │ │ ├── Pods-STTwitter-prefix.pch │ │ └── Pods-STTwitter.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── googleplus-ios-sdk │ └── google-plus-ios-sdk-1.7.1 │ ├── GoogleOpenSource.framework │ ├── GoogleOpenSource │ ├── Headers │ └── Versions │ │ ├── A │ │ ├── GoogleOpenSource │ │ └── Headers │ │ │ ├── GTLBase64.h │ │ │ ├── GTLBatchQuery.h │ │ │ ├── GTLBatchResult.h │ │ │ ├── GTLDateTime.h │ │ │ ├── GTLDefines.h │ │ │ ├── GTLErrorObject.h │ │ │ ├── GTLFramework.h │ │ │ ├── GTLJSONParser.h │ │ │ ├── GTLObject.h │ │ │ ├── GTLPlus.h │ │ │ ├── GTLPlusAcl.h │ │ │ ├── GTLPlusAclentryResource.h │ │ │ ├── GTLPlusActivity.h │ │ │ ├── GTLPlusActivityFeed.h │ │ │ ├── GTLPlusComment.h │ │ │ ├── GTLPlusCommentFeed.h │ │ │ ├── GTLPlusConstants.h │ │ │ ├── GTLPlusItemScope.h │ │ │ ├── GTLPlusMoment.h │ │ │ ├── GTLPlusMomentsFeed.h │ │ │ ├── GTLPlusPeopleFeed.h │ │ │ ├── GTLPlusPerson.h │ │ │ ├── GTLPlusPlace.h │ │ │ ├── GTLQuery.h │ │ │ ├── GTLQueryPlus.h │ │ │ ├── GTLRuntimeCommon.h │ │ │ ├── GTLService.h │ │ │ ├── GTLServicePlus.h │ │ │ ├── GTLTargetNamespace.h │ │ │ ├── GTLUploadParameters.h │ │ │ ├── GTLUtilities.h │ │ │ ├── GTMDefines.h │ │ │ ├── GTMGarbageCollection.h │ │ │ ├── GTMHTTPFetchHistory.h │ │ │ ├── GTMHTTPFetcher.h │ │ │ ├── GTMHTTPFetcherLogging.h │ │ │ ├── GTMHTTPFetcherService.h │ │ │ ├── GTMHTTPUploadFetcher.h │ │ │ ├── GTMLogger.h │ │ │ ├── GTMMethodCheck.h │ │ │ ├── GTMNSDictionary+URLArguments.h │ │ │ ├── GTMNSString+URLArguments.h │ │ │ ├── GTMOAuth2Authentication.h │ │ │ ├── GTMOAuth2SignIn.h │ │ │ ├── GTMOAuth2ViewControllerTouch.h │ │ │ ├── GTMObjC2Runtime.h │ │ │ ├── GoogleOpenSource.h │ │ │ └── OpenInChromeController.h │ │ └── Current │ ├── GooglePlus.bundle │ ├── GPPCommonSharedResources.bundle │ │ ├── GPPACLCollectionTableViewCell.nib │ │ ├── GPPACLCollectionViewCell.nib │ │ ├── GPPACLDetailTableViewCell.nib │ │ ├── GPPACLSearchView.nib │ │ ├── GPPACLTableViewCell.nib │ │ ├── GPPDomainRestrictedTableViewCell.nib │ │ ├── Info.plist │ │ ├── ar.lproj │ │ │ └── GooglePlus.strings │ │ ├── ca.lproj │ │ │ └── GooglePlus.strings │ │ ├── circles.png │ │ ├── circles@2x.png │ │ ├── cs.lproj │ │ │ └── GooglePlus.strings │ │ ├── da.lproj │ │ │ └── GooglePlus.strings │ │ ├── de.lproj │ │ │ └── GooglePlus.strings │ │ ├── domain.png │ │ ├── domain@2x.png │ │ ├── el.lproj │ │ │ └── GooglePlus.strings │ │ ├── en.lproj │ │ │ └── GooglePlus.strings │ │ ├── en_GB.lproj │ │ │ └── GooglePlus.strings │ │ ├── es.lproj │ │ │ └── GooglePlus.strings │ │ ├── es_MX.lproj │ │ │ └── GooglePlus.strings │ │ ├── extended.png │ │ ├── extended@2x.png │ │ ├── fi.lproj │ │ │ └── GooglePlus.strings │ │ ├── fr.lproj │ │ │ └── GooglePlus.strings │ │ ├── he.lproj │ │ │ └── GooglePlus.strings │ │ ├── hr.lproj │ │ │ └── GooglePlus.strings │ │ ├── hu.lproj │ │ │ └── GooglePlus.strings │ │ ├── ic_checkmark_black_24.png │ │ ├── ic_checkmark_black_24@2x.png │ │ ├── ic_checkmark_green_24.png │ │ ├── ic_checkmark_green_24@2x.png │ │ ├── ic_circles_black_16.png │ │ ├── ic_circles_black_16@2x.png │ │ ├── ic_domain_16.png │ │ ├── ic_domain_16@2x.png │ │ ├── ic_email_black_16.png │ │ ├── ic_email_black_16@2x.png │ │ ├── ic_extended_circles_black_16.png │ │ ├── ic_extended_circles_black_16@2x.png │ │ ├── ic_lock_closed_black_16.png │ │ ├── ic_lock_closed_black_16@2x.png │ │ ├── ic_person_black_16.png │ │ ├── ic_person_black_16@2x.png │ │ ├── ic_public_16.png │ │ ├── ic_public_16@2x.png │ │ ├── ic_remove_black_16.png │ │ ├── ic_remove_black_16@2x.png │ │ ├── id.lproj │ │ │ └── GooglePlus.strings │ │ ├── in.lproj │ │ │ └── GooglePlus.strings │ │ ├── it.lproj │ │ │ └── GooglePlus.strings │ │ ├── iw.lproj │ │ │ └── GooglePlus.strings │ │ ├── ja.lproj │ │ │ └── GooglePlus.strings │ │ ├── ko.lproj │ │ │ └── GooglePlus.strings │ │ ├── ms.lproj │ │ │ └── GooglePlus.strings │ │ ├── multiselect.png │ │ ├── multiselect@2x.png │ │ ├── multiselect_green.png │ │ ├── multiselect_green@2x.png │ │ ├── name_gradient.png │ │ ├── name_gradient@2x.png │ │ ├── nb.lproj │ │ │ └── GooglePlus.strings │ │ ├── nl.lproj │ │ │ └── GooglePlus.strings │ │ ├── no.lproj │ │ │ └── GooglePlus.strings │ │ ├── person.png │ │ ├── person@2x.png │ │ ├── pl.lproj │ │ │ └── GooglePlus.strings │ │ ├── pt.lproj │ │ │ └── GooglePlus.strings │ │ ├── pt_PT.lproj │ │ │ └── GooglePlus.strings │ │ ├── public.png │ │ ├── public@2x.png │ │ ├── ro.lproj │ │ │ └── GooglePlus.strings │ │ ├── ru.lproj │ │ │ └── GooglePlus.strings │ │ ├── sk.lproj │ │ │ └── GooglePlus.strings │ │ ├── sv.lproj │ │ │ └── GooglePlus.strings │ │ ├── th.lproj │ │ │ └── GooglePlus.strings │ │ ├── tr.lproj │ │ │ └── GooglePlus.strings │ │ ├── uk.lproj │ │ │ └── GooglePlus.strings │ │ ├── vi.lproj │ │ │ └── GooglePlus.strings │ │ ├── zh_CN.lproj │ │ │ └── GooglePlus.strings │ │ └── zh_TW.lproj │ │ │ └── GooglePlus.strings │ ├── GPPOAuth2ViewTouch.nib │ │ ├── objects.nib │ │ └── runtime.nib │ ├── GPPShareboxSharedResources.bundle │ │ ├── GPPAlertViewController.nib │ │ ├── GPPDropDownView.nib │ │ ├── GPPMentionTableViewCell.nib │ │ ├── GPPNativeShareBuilderImpl.storyboardc │ │ │ ├── 1eS-s1-N5D-view-v2T-ar-WUX.nib │ │ │ ├── Info.plist │ │ │ ├── KtL-yL-JvP-view-FgH-Tb-vUZ.nib │ │ │ ├── UIViewController-KtL-yL-JvP.nib │ │ │ ├── UIViewController-kxJ-v2-gSV.nib │ │ │ ├── compose.nib │ │ │ └── kxJ-v2-gSV-view-80e-ww-228.nib │ │ ├── GPPNativeShareBuilderImpl~ipad.storyboardc │ │ │ ├── GLd-0V-Iho-view-ivE-QK-bvB.nib │ │ │ ├── Info.plist │ │ │ ├── Omv-t7-5uV-view-X6S-Bs-rLW.nib │ │ │ ├── UIViewController-GLd-0V-Iho.nib │ │ │ ├── UIViewController-Omv-t7-5uV.nib │ │ │ ├── compose.nib │ │ │ └── lOt-oN-kcZ-view-gSm-Z9-osM.nib │ │ ├── GPPPlaceholderTextViewAccessoryView.nib │ │ ├── Info.plist │ │ ├── ar.lproj │ │ │ └── GooglePlus.strings │ │ ├── ca.lproj │ │ │ └── GooglePlus.strings │ │ ├── cs.lproj │ │ │ └── GooglePlus.strings │ │ ├── da.lproj │ │ │ └── GooglePlus.strings │ │ ├── de.lproj │ │ │ └── GooglePlus.strings │ │ ├── el.lproj │ │ │ └── GooglePlus.strings │ │ ├── en.lproj │ │ │ └── GooglePlus.strings │ │ ├── en_GB.lproj │ │ │ └── GooglePlus.strings │ │ ├── es.lproj │ │ │ └── GooglePlus.strings │ │ ├── es_MX.lproj │ │ │ └── GooglePlus.strings │ │ ├── fi.lproj │ │ │ └── GooglePlus.strings │ │ ├── fr.lproj │ │ │ └── GooglePlus.strings │ │ ├── googleplus_24.png │ │ ├── googleplus_24@2x.png │ │ ├── he.lproj │ │ │ └── GooglePlus.strings │ │ ├── hr.lproj │ │ │ └── GooglePlus.strings │ │ ├── hu.lproj │ │ │ └── GooglePlus.strings │ │ ├── ic_arrow_down_grey_8.png │ │ ├── ic_arrow_down_grey_8@2x.png │ │ ├── ic_checkmark_20.png │ │ ├── ic_checkmark_20@2x.png │ │ ├── ic_close_20.png │ │ ├── ic_close_20@2x.png │ │ ├── ic_down_circled_16.png │ │ ├── ic_down_circled_16@2x.png │ │ ├── ic_hide_keyboard_24.png │ │ ├── ic_hide_keyboard_24@2x.png │ │ ├── ic_person_20.png │ │ ├── ic_person_20@2x.png │ │ ├── id.lproj │ │ │ └── GooglePlus.strings │ │ ├── in.lproj │ │ │ └── GooglePlus.strings │ │ ├── it.lproj │ │ │ └── GooglePlus.strings │ │ ├── iw.lproj │ │ │ └── GooglePlus.strings │ │ ├── ja.lproj │ │ │ └── GooglePlus.strings │ │ ├── ko.lproj │ │ │ └── GooglePlus.strings │ │ ├── ms.lproj │ │ │ └── GooglePlus.strings │ │ ├── nb.lproj │ │ │ └── GooglePlus.strings │ │ ├── nl.lproj │ │ │ └── GooglePlus.strings │ │ ├── no.lproj │ │ │ └── GooglePlus.strings │ │ ├── pl.lproj │ │ │ └── GooglePlus.strings │ │ ├── pt.lproj │ │ │ └── GooglePlus.strings │ │ ├── pt_PT.lproj │ │ │ └── GooglePlus.strings │ │ ├── ro.lproj │ │ │ └── GooglePlus.strings │ │ ├── ru.lproj │ │ │ └── GooglePlus.strings │ │ ├── sk.lproj │ │ │ └── GooglePlus.strings │ │ ├── sv.lproj │ │ │ └── GooglePlus.strings │ │ ├── th.lproj │ │ │ └── GooglePlus.strings │ │ ├── tr.lproj │ │ │ └── GooglePlus.strings │ │ ├── uk.lproj │ │ │ └── GooglePlus.strings │ │ ├── vi.lproj │ │ │ └── GooglePlus.strings │ │ ├── video_attachment_icon.png │ │ ├── video_attachment_icon@2x.png │ │ ├── zh_CN.lproj │ │ │ └── GooglePlus.strings │ │ └── zh_TW.lproj │ │ │ └── GooglePlus.strings │ ├── Info.plist │ ├── Roboto-Bold.ttf │ ├── Roboto-Regular.ttf │ ├── ar.lproj │ │ └── GooglePlusPlatform.strings │ ├── ca.lproj │ │ └── GooglePlusPlatform.strings │ ├── cs.lproj │ │ └── GooglePlusPlatform.strings │ ├── da.lproj │ │ └── GooglePlusPlatform.strings │ ├── de.lproj │ │ └── GooglePlusPlatform.strings │ ├── el.lproj │ │ └── GooglePlusPlatform.strings │ ├── en.lproj │ │ └── GooglePlusPlatform.strings │ ├── en_GB.lproj │ │ └── GooglePlusPlatform.strings │ ├── es.lproj │ │ └── GooglePlusPlatform.strings │ ├── es_MX.lproj │ │ └── GooglePlusPlatform.strings │ ├── fi.lproj │ │ └── GooglePlusPlatform.strings │ ├── fr.lproj │ │ └── GooglePlusPlatform.strings │ ├── gpp_sign_in_dark_button_disabled.png │ ├── gpp_sign_in_dark_button_disabled@2x.png │ ├── gpp_sign_in_dark_button_normal.png │ ├── gpp_sign_in_dark_button_normal@2x.png │ ├── gpp_sign_in_dark_button_pressed.png │ ├── gpp_sign_in_dark_button_pressed@2x.png │ ├── gpp_sign_in_dark_icon_disabled.png │ ├── gpp_sign_in_dark_icon_disabled@2x.png │ ├── gpp_sign_in_dark_icon_normal.png │ ├── gpp_sign_in_dark_icon_normal@2x.png │ ├── gpp_sign_in_dark_icon_pressed.png │ ├── gpp_sign_in_dark_icon_pressed@2x.png │ ├── gpp_sign_in_light_button_disabled.png │ ├── gpp_sign_in_light_button_disabled@2x.png │ ├── gpp_sign_in_light_button_normal.png │ ├── gpp_sign_in_light_button_normal@2x.png │ ├── gpp_sign_in_light_button_pressed.png │ ├── gpp_sign_in_light_button_pressed@2x.png │ ├── gpp_sign_in_light_icon_disabled.png │ ├── gpp_sign_in_light_icon_disabled@2x.png │ ├── gpp_sign_in_light_icon_normal.png │ ├── gpp_sign_in_light_icon_normal@2x.png │ ├── gpp_sign_in_light_icon_pressed.png │ ├── gpp_sign_in_light_icon_pressed@2x.png │ ├── he.lproj │ │ └── GooglePlusPlatform.strings │ ├── hr.lproj │ │ └── GooglePlusPlatform.strings │ ├── hu.lproj │ │ └── GooglePlusPlatform.strings │ ├── id.lproj │ │ └── GooglePlusPlatform.strings │ ├── it.lproj │ │ └── GooglePlusPlatform.strings │ ├── ja.lproj │ │ └── GooglePlusPlatform.strings │ ├── ko.lproj │ │ └── GooglePlusPlatform.strings │ ├── ms.lproj │ │ └── GooglePlusPlatform.strings │ ├── nb.lproj │ │ └── GooglePlusPlatform.strings │ ├── nl.lproj │ │ └── GooglePlusPlatform.strings │ ├── pl.lproj │ │ └── GooglePlusPlatform.strings │ ├── pt.lproj │ │ └── GooglePlusPlatform.strings │ ├── pt_PT.lproj │ │ └── GooglePlusPlatform.strings │ ├── ro.lproj │ │ └── GooglePlusPlatform.strings │ ├── ru.lproj │ │ └── GooglePlusPlatform.strings │ ├── sk.lproj │ │ └── GooglePlusPlatform.strings │ ├── sv.lproj │ │ └── GooglePlusPlatform.strings │ ├── th.lproj │ │ └── GooglePlusPlatform.strings │ ├── tr.lproj │ │ └── GooglePlusPlatform.strings │ ├── uk.lproj │ │ └── GooglePlusPlatform.strings │ ├── vi.lproj │ │ └── GooglePlusPlatform.strings │ ├── zh_CN.lproj │ │ └── GooglePlusPlatform.strings │ └── zh_TW.lproj │ │ └── GooglePlusPlatform.strings │ └── GooglePlus.framework │ ├── GooglePlus │ ├── Headers │ └── Versions │ ├── A │ ├── GooglePlus │ └── Headers │ │ ├── GPPDeepLink.h │ │ ├── GPPShare.h │ │ ├── GPPSignIn.h │ │ ├── GPPSignInButton.h │ │ ├── GPPURLHandler.h │ │ └── GooglePlus.h │ └── Current ├── LICENSE ├── README.md ├── Resource └── logo.png └── Service ├── Crashlytics ├── AKCrashlytics.h ├── AKCrashlyticsClient.h ├── AKCrashlyticsClient.m ├── AKCrashlyticsConstants.h ├── AKCrashlyticsConstants.m ├── AKCrashlyticsUser.h └── AKCrashlyticsUser.m ├── Facebook ├── AKFacebook.h ├── AKFacebookClient.h ├── AKFacebookClient.m ├── AKFacebookConstants.h └── AKFacebookConstants.m ├── GitHub ├── AKGitHub.h ├── AKGitHubApp.h ├── AKGitHubApp.m ├── AKGitHubClient.h ├── AKGitHubClient.m ├── AKGitHubConstants.h ├── AKGitHubConstants.m ├── AKGitHubLogin.h ├── AKGitHubLogin.m ├── AKGitHubUser.h └── AKGitHubUser.m ├── Google ├── AKGoogle.h ├── AKGoogleClient.h ├── AKGoogleClient.m ├── AKGoogleConstants.h ├── AKGoogleConstants.m ├── AKGooglePlusClient.h ├── AKGooglePlusClient.m ├── AKGoogleSignInClient.h └── AKGoogleSignInClient.m ├── LinkedIn ├── AKLinkedIn.h ├── AKLinkedInClient.h ├── AKLinkedInClient.m ├── AKLinkedInConstants.h ├── AKLinkedInConstants.m ├── AKLinkedInRequestSerializer.h └── AKLinkedInRequestSerializer.m ├── Live ├── AKLive.h ├── AKLiveClient.h ├── AKLiveClient.m ├── AKLiveConstants.h └── AKLiveConstants.m └── Twitter ├── AKTwitter.h ├── AKTwitterClient.h ├── AKTwitterClient.m ├── AKTwitterConstants.h ├── AKTwitterConstants.m ├── AKTwitterUser.h └── AKTwitterUser.m /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: beta-xcode6.3 3 | sudo: false 4 | script: 5 | - curl -fsSL https://raw.githubusercontent.com/legoless/Dominus/master/install.sh | sh 6 | env: 7 | matrix: 8 | - ACTION=build 9 | - ACTION=test 10 | global: 11 | - SDK=8.3 12 | - PLATFORM='iphone' 13 | -------------------------------------------------------------------------------- /AuthKit/Core/Base/AKCore.h: -------------------------------------------------------------------------------- 1 | #import "AKClient.h" 2 | #import "AKClientManager.h" 3 | #import "AKLoginSource.h" 4 | #import "AKPasswordLoginSource.h" 5 | #import "AKTwoFactorLoginSource.h" 6 | #import "AKPasswordClient.h" -------------------------------------------------------------------------------- /AuthKit/Core/User/AKUser.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | #import "AKUser.h" 6 | 7 | @implementation AKUser 8 | @end -------------------------------------------------------------------------------- /AuthKit/Interface/AKInterface.h: -------------------------------------------------------------------------------- 1 | /*! 2 | * Interface login source can be used by AKAuthViewController instances to display UI 3 | */ 4 | 5 | #import "AKAuthViewController.h" 6 | #import "AKInterfaceLoginSource.h" -------------------------------------------------------------------------------- /AuthKit/OAuth/AKOAuth.h: -------------------------------------------------------------------------------- 1 | // 2 | // AKOAuth.h 3 | // Pods 4 | // 5 | // Created by Dal Rupnik on 04/05/15. 6 | // 7 | // 8 | 9 | #import "AKOAuthUser.h" 10 | #import "AKOAuthLoginSource.h" 11 | #import "AKOAuthClient.h" -------------------------------------------------------------------------------- /AuthKit/OAuth/AKOAuthClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // AKOAuthClient.h 3 | // Pods 4 | // 5 | // Created by Dal Rupnik on 04/05/15. 6 | // 7 | // 8 | 9 | #import "AKClient.h" 10 | #import "AKOAuthLoginSource.h" 11 | 12 | @interface AKOAuthClient : AKClient 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /AuthKit/OAuth/AKOAuthUser.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 20/04/15. 3 | // 4 | 5 | #import "AKOAuthUser.h" 6 | 7 | @implementation AKOAuthUser 8 | 9 | @end -------------------------------------------------------------------------------- /AuthKit/Persistence/AKUser+Storage.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | #import "AKUser.h" 6 | 7 | @interface AKUser (Storage) 8 | 9 | + (AKUser *)userForClient:(AKClient *)client; 10 | 11 | + (NSArray *)savedUsers; 12 | 13 | @end -------------------------------------------------------------------------------- /AuthKit/Persistence/AKUser+Storage.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | #import "AKUser.h" 6 | 7 | @implementation AKUser 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Demo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/lock-icon.imageset/lock-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Demo/Images.xcassets/lock-icon.imageset/lock-icon.png -------------------------------------------------------------------------------- /Demo/Demo/Images.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Demo/Images.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // Demo 4 | // 5 | // Created by Dal Rupnik on 17/06/14. 6 | // Copyright (c) 2014 arvystate.net. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/DemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '7.0' 2 | 3 | source 'https://github.com/CocoaPods/Specs.git' 4 | 5 | pod 'AuthKit', :path => '../AuthKit.podspec' -------------------------------------------------------------------------------- /Demo/Pods/Bolts/Bolts/Common/BoltsVersion.h: -------------------------------------------------------------------------------- 1 | #define BOLTS_VERSION @"1.1.5" 2 | -------------------------------------------------------------------------------- /Demo/Pods/Haystack/SDK/Categories/NSData+Base64/NSData+Base64.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSData+Base64.h 3 | // 4 | 5 | #import 6 | 7 | @interface NSData (Base64) 8 | 9 | - (NSString *)base64String; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /Demo/Pods/Haystack/SDK/Categories/NSString+Validation/NSString+Validation.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Validation.h 3 | // 4 | 5 | @import Foundation; 6 | 7 | @interface NSString (Validation) 8 | 9 | - (BOOL)isValidEmail; 10 | 11 | - (BOOL)isValidEmailWithStrictFilter:(BOOL)strict; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/Pods/Haystack/SDK/Categories/UIView+Cell/UIView+Cell.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Cell.h 3 | // 4 | 5 | @import UIKit; 6 | 7 | @interface UIView (Cell) 8 | 9 | - (UITableViewCell *)parentTableViewCell; 10 | 11 | - (UICollectionViewCell *)parentCollectionViewCell; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/Pods/Haystack/SDK/Categories/UIView+Hierarchy/UIView+Hierarchy.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Hierarchy.h 3 | // 4 | 5 | @import UIKit; 6 | 7 | @interface UIView (Hierarchy) 8 | 9 | - (UIView *)parentViewOfType:(Class)class; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /Demo/Pods/Haystack/SDK/Categories/UIView+Snapshot/UIView+Snapshot.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Snapshot.h 3 | // 4 | 5 | @import UIKit; 6 | 7 | @interface UIView (Snapshot) 8 | 9 | - (UIImage *)snapshotImage; 10 | 11 | - (UIImage *)snapshotImageWithScale:(CGFloat)scale; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AKPickerView/AKPickerView.h: -------------------------------------------------------------------------------- 1 | ../../../AKPickerView/AKPickerViewSample/AKPickerView/AKPickerView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKAuthViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKAuthViewController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKClientManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKClientManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKCore.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Base/AKCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKCrashlytics.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlytics.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKCrashlyticsClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKCrashlyticsConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKCrashlyticsUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Base/AKDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKFacebook.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebook.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKFacebookClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebookClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKFacebookConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebookConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHub.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHub.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHubApp.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubApp.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHubClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHubConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHubLogin.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubLogin.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGitHubUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGoogle.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogle.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKGoogleConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogleConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKInterface.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKInterface.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKInterfaceLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKInterfaceLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLinkedIn.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLinkedInClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLinkedInConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLinkedInRequestSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInRequestSerializer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLive.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLive.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLiveClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLiveClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLiveConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLiveConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuth.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKOAuthClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKOAuthLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKOAuthUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKPasswordClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKPasswordClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKPasswordLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKPasswordLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKTwitterClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKTwitterConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKTwitterUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKTwoFactorLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKTwoFactorLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKUser+Storage.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Persistence/AKUser+Storage.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AKUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/User/AKUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/AuthKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/AuthKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/AuthKit/akgoogleclient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogleClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLink.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLink.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkNavigation.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkNavigation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkResolving.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkResolving.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererController.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererView.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererView_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererView_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLinkTarget.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkTarget.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFAppLink_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLink_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFExecutor.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFMeasurementEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFMeasurementEvent.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFMeasurementEvent_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFMeasurementEvent_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFTask.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFTask.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFTaskCompletionSource.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFTaskCompletionSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFURL.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFURL.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFURL_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFURL_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BFWebViewAppLinkResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFWebViewAppLinkResolver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/Bolts.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/Bolts.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Bolts/BoltsVersion.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BoltsVersion.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKAccessToken.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEvents.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkResolver.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKApplicationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKButton.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKConstants.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCopying.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEvents+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEventsState.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsState.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEventsStateManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsStateManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEventsUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKAppEventsUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKPaymentObserver.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKPaymentObserver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKTimeSpentData.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppEvents/FBSDKTimeSpentData.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/AppLink/FBSDKBoltsMeasurementEventListener.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/AppLink/FBSDKBoltsMeasurementEventListener.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Base64/FBSDKBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Base64/FBSDKBase64.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPICrypto.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPICrypto.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPIProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocol.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPIProtocolType.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIProtocolType.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPIRequest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest+Private.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPIRequest.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKBridgeAPIResponse.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPIResponse.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/FBSDKURLOpening.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKURLOpening.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h: -------------------------------------------------------------------------------- 1 | ../../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolNativeV1.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h: -------------------------------------------------------------------------------- 1 | ../../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV1.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h: -------------------------------------------------------------------------------- 1 | ../../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/ProtocolVersions/FBSDKBridgeAPIProtocolWebV2.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Cryptography/FBSDKCrypto.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Cryptography/FBSDKCrypto.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ErrorRecovery/FBSDKErrorRecoveryAttempter.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/FBSDKErrorRecoveryAttempter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ErrorRecovery/_FBSDKTemporaryErrorRecoveryAttempter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKApplicationDelegate+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKAudioResourceLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKAudioResourceLoader.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKDynamicFrameworkLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKDynamicFrameworkLoader.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKError.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKError.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKInternalUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKInternalUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKLogger.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKMath.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKMath.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKProfile+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSettings+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKSystemAccountStoreAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKSystemAccountStoreAdapter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKTriStateBOOL.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTriStateBOOL.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/FBSDKTypeUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKTypeUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKGraphRequest+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequest+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKGraphRequestBody.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestBody.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKGraphRequestConnection+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestConnection+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKGraphRequestMetadata.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestMetadata.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKGraphRequestPiggybackManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKGraphRequestPiggybackManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/Network/FBSDKURLConnection.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/Network/FBSDKURLConnection.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKDialogConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKDialogConfiguration.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKErrorConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorConfiguration.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKErrorRecoveryConfiguration.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKServerConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfiguration.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/ServerConfiguration/FBSDKServerConfigurationManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/ServerConfiguration/FBSDKServerConfigurationManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCache.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCache.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCacheV3.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCacheV3_17.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_17.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCacheV3_21.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV3_21.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCacheV4.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKAccessTokenCaching.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCaching.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKKeychainStore.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/TokenCaching/FBSDKKeychainStoreViaBundleID.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKKeychainStoreViaBundleID.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKButton+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKButton+Subclass.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKCloseIcon.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKCloseIcon.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKColor.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKColor.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKIcon.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKIcon.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKLogo.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKLogo.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKMaleSilhouetteIcon.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKMaleSilhouetteIcon.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKUIUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKUIUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/UI/FBSDKViewImpressionTracker.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/UI/FBSDKViewImpressionTracker.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/WebDialog/FBSDKWebDialog.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialog.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit/WebDialog/FBSDKWebDialogView.h: -------------------------------------------------------------------------------- 1 | ../../../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/WebDialog/FBSDKWebDialogView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequest.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestConnection.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKMutableCopying.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKProfile.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKProfilePictureView.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKSettings.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKTestUsersManager.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKCoreKit/FBSDKUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginCompletion+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginCompletion.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginCompletion.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginError.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginError.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginKit+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManager+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginManagerLogger.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginUtility.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/FBSDKLoginUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit/_FBSDKLoginRecoveryAttempter.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/Internal/_FBSDKLoginRecoveryAttempter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/HSMath.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSMath/HSMath.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/HSUnitFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/HSUnitFormatterPrefix.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatterPrefix.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/HSUnitFormatterUnit.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatterUnit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/HSWeakPointer.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSWeakPointer/HSWeakPointer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/Haystack.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Haystack.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSArray+Class.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSArray+Class/NSArray+Class.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSData+Base64.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSData+Base64/NSData+Base64.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSDate+Additional.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDate+Additional/NSDate+Additional.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSDate+Timestamp.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDate+Timestamp/NSDate+Timestamp.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSDictionary+Class.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDictionary+Class/NSDictionary+Class.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSObject+Property.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Property/NSObject+Property.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSObject+PropertyList.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+PropertyList/NSObject+PropertyList.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSObject+Runtime.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Runtime/NSObject+Runtime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSObject+Swizzle.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Swizzle/NSObject+Swizzle.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSString+Additional.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Additional/NSString+Additional.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSString+Random.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Random/NSString+Random.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSString+Validation.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Validation/NSString+Validation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/NSURL+Parameters.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSURL+Parameters/NSURL+Parameters.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIAlertView+Short.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIAlertView+Short/UIAlertView+Short.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIApplication+Information.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Information/UIApplication+Information.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIApplication+Screenshot.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Screenshot/UIApplication+Screenshot.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIApplication+Version.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Version/UIApplication+Version.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIButton+Position.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIButton+Position/UIButton+Position.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIColor+Create.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIColor+Create/UIColor+Create.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIColor+Flat.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIColor+Flat/UIColor+Flat.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIDevice+Capabilities.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Capabilities/UIDevice+Capabilities.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIDevice+DeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+DeviceInfo/UIDevice+DeviceInfo.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIDevice+Hardware.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Hardware/UIDevice+Hardware.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIDevice+Network.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Network/UIDevice+Network.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIDevice+Software.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Software/UIDevice+Software.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIFont+SmallCaps.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIFont+SmallCaps/UIFont+SmallCaps.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIView+Cell.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Cell/UIView+Cell.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIView+Debug.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Debug/UIView+Debug.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIView+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Hierarchy/UIView+Hierarchy.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIView+Snapshot.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Snapshot/UIView+Snapshot.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/Haystack/UIViewController+BackgroundImage.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIViewController+BackgroundImage/UIViewController+BackgroundImage.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/IOSLinkedInAPI/LIALinkedInApplication.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInApplication.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/IOSLinkedInAPI/LIALinkedInAuthorizationViewController.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInAuthorizationViewController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/IOSLinkedInAPI/LIALinkedInHttpClient.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInHttpClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/IOSLinkedInAPI/NSString+LIAEncode.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/NSString+LIAEncode.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONAPI.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONAPI.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONHTTPClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONKeyMapper.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONKeyMapper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModel+networking.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONModel+networking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModel.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModelArray.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelArray.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModelClassProperty.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelClassProperty.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModelError.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelError.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONModelLib.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelLib.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/JSONValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONValueTransformer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/JSONModel/NSArray+JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelCategories/NSArray+JSONModel.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/JsonParser.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/JsonParser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/JsonWriter.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/JsonWriter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveApiHelper.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/LiveApiHelper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveAuthDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthDialog.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveAuthDialog.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthDialogDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveAuthDialogDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthHelper.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/LiveAuthHelper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthRefreshRequest.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveAuthRefreshRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthRequest.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveAuthRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveAuthStorage.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveAuthStorage.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectClient.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectClientCore.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveConnectClientCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectSession.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectSession.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectSessionStatus.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectSessionStatus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectionCreatorDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/LiveConnectionCreatorDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConnectionHelper.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/LiveConnectionHelper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveConstants.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveDownloadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveDownloadOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveDownloadOperationCore.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveDownloadOperationCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveDownloadOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveDownloadOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveDownloadOperationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveDownloadOperationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveOperation.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveOperationCore.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveOperationCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveOperationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveOperationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveOperationProgress.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperationProgress.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveUploadOperationCore.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/LiveUploadOperationCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveUploadOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveUploadOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/LiveUploadOverwriteOption.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveUploadOverwriteOption.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/StreamReader.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/StreamReader.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/StringHelper.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/StringHelper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/LiveSDK/UrlHelper.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Internal/Helpers/UrlHelper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SSKeychain/SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/SSKeychain/SSKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SSKeychain/SSKeychain/SSKeychainQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/BAVPlistNode.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/BAVPlistNode.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/JSONSyntaxHighlight.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/JSONSyntaxHighlight.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/NSDateFormatter+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSDateFormatter+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/NSError+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSError+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/NSString+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSString+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STHTTPRequest+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STHTTPRequest+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STHTTPRequest.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/STHTTPRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterAPI.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterAPI.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterAppOnly.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterAppOnly.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterHTML.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterHTML.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOAuth.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterOS.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOS.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterOSRequest.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOSRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/STTwitter/STTwitterProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterProtocol.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GPPDeepLink.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPDeepLink.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GPPShare.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPShare.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GPPSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPSignIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GPPSignInButton.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPSignInButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GPPURLHandler.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPURLHandler.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLBase64.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBase64.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLBatchQuery.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBatchQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLBatchResult.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBatchResult.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLDateTime.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLDateTime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLDefines.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLErrorObject.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLErrorObject.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLFramework.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLFramework.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLJSONParser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLObject.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLObject.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusAcl.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusAcl.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusAclentryResource.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusAclentryResource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusActivity.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusActivity.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusActivityFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusActivityFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusComment.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusComment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusCommentFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusCommentFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusConstants.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusItemScope.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusItemScope.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusMoment.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusMoment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusMomentsFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusMomentsFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusPeopleFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPeopleFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusPerson.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPerson.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLPlusPlace.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPlace.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLQuery.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLQueryPlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLQueryPlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLRuntimeCommon.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLRuntimeCommon.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLService.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLService.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLServicePlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLServicePlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLTargetNamespace.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLTargetNamespace.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLUploadParameters.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLUploadParameters.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTLUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLUtilities.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMDefines.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMGarbageCollection.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMGarbageCollection.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMHTTPFetchHistory.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetchHistory.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMHTTPFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcher.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMHTTPFetcherLogging.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcherLogging.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMHTTPFetcherService.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcherService.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMHTTPUploadFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPUploadFetcher.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMLogger.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMLogger.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMMethodCheck.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMMethodCheck.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMNSDictionary+URLArguments.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMNSDictionary+URLArguments.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMNSString+URLArguments.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMNSString+URLArguments.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMOAuth2Authentication.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2Authentication.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMOAuth2SignIn.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2SignIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMOAuth2ViewControllerTouch.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2ViewControllerTouch.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GTMObjC2Runtime.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMObjC2Runtime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GoogleOpenSource.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GoogleOpenSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/GooglePlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GooglePlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/googleplus-ios-sdk/OpenInChromeController.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/OpenInChromeController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AKPickerView/AKPickerView.h: -------------------------------------------------------------------------------- 1 | ../../../AKPickerView/AKPickerViewSample/AKPickerView/AKPickerView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKAuthViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKAuthViewController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKClientManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKClientManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKCore.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Base/AKCore.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKCrashlytics.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlytics.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKCrashlyticsClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKCrashlyticsConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKCrashlyticsUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Crashlytics/AKCrashlyticsUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Base/AKDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKFacebook.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebook.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKFacebookClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebookClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKFacebookConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Facebook/AKFacebookConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHub.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHub.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHubApp.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubApp.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHubClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHubConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHubLogin.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubLogin.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGitHubUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/GitHub/AKGitHubUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGoogle.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogle.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKGoogleConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogleConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKInterface.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKInterface.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKInterfaceLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Interface/AKInterfaceLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLinkedIn.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLinkedInClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLinkedInConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLinkedInRequestSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/LinkedIn/AKLinkedInRequestSerializer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLive.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLive.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLiveClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLiveClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLiveConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Live/AKLiveConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuth.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKOAuthClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKOAuthLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKOAuthUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/OAuth/AKOAuthUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKPasswordClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Client/AKPasswordClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKPasswordLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKPasswordLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKTwitterClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKTwitterConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKTwitterUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Twitter/AKTwitterUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKTwoFactorLoginSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/Protocol/AKTwoFactorLoginSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKUser+Storage.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Persistence/AKUser+Storage.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AKUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/Core/User/AKUser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/AuthKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../AuthKit/AuthKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/AuthKit/akgoogleclient.h: -------------------------------------------------------------------------------- 1 | ../../../../../Service/Google/AKGoogleClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLink.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLink.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkNavigation.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkNavigation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkResolving.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkResolving.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkReturnToRefererController.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkReturnToRefererView.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkReturnToRefererView_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkReturnToRefererView_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLinkTarget.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLinkTarget.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFAppLink_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFAppLink_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFExecutor.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFExecutor.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFMeasurementEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFMeasurementEvent.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFMeasurementEvent_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFMeasurementEvent_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFTask.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFTask.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFTaskCompletionSource.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BFTaskCompletionSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFURL.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFURL.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFURL_Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFURL_Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BFWebViewAppLinkResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/iOS/BFWebViewAppLinkResolver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/Bolts.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/Bolts.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Bolts/BoltsVersion.h: -------------------------------------------------------------------------------- 1 | ../../../Bolts/Bolts/Common/BoltsVersion.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKAccessToken.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAccessToken.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKAppEvents.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKAppLinkResolver.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkResolver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKAppLinkUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppLinkUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKApplicationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKButton.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKConstants.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKCopying.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCopying.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKCoreKit.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphErrorRecoveryProcessor.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKGraphRequest.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKGraphRequestConnection.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestConnection.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKMacros.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMacros.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKMutableCopying.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKMutableCopying.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKProfile.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfile.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKProfilePictureView.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKProfilePictureView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKSettings.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKTestUsersManager.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKTestUsersManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKCoreKit/FBSDKUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKUtility.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h: -------------------------------------------------------------------------------- 1 | ../../../../FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKTooltipView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/HSMath.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSMath/HSMath.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/HSUnitFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/HSUnitFormatterPrefix.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatterPrefix.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/HSUnitFormatterUnit.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSUnitFormatter/HSUnitFormatterUnit.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/HSWeakPointer.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Classes/HSWeakPointer/HSWeakPointer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/Haystack.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Haystack.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSArray+Class.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSArray+Class/NSArray+Class.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSData+Base64.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSData+Base64/NSData+Base64.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSDate+Additional.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDate+Additional/NSDate+Additional.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSDate+Timestamp.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDate+Timestamp/NSDate+Timestamp.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSDictionary+Class.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSDictionary+Class/NSDictionary+Class.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSObject+Property.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Property/NSObject+Property.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSObject+PropertyList.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+PropertyList/NSObject+PropertyList.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSObject+Runtime.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Runtime/NSObject+Runtime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSObject+Swizzle.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSObject+Swizzle/NSObject+Swizzle.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSString+Additional.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Additional/NSString+Additional.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSString+Random.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Random/NSString+Random.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSString+Validation.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSString+Validation/NSString+Validation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/NSURL+Parameters.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/NSURL+Parameters/NSURL+Parameters.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIAlertView+Short.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIAlertView+Short/UIAlertView+Short.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIApplication+Information.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Information/UIApplication+Information.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIApplication+Screenshot.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Screenshot/UIApplication+Screenshot.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIApplication+Version.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIApplication+Version/UIApplication+Version.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIButton+Position.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIButton+Position/UIButton+Position.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIColor+Create.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIColor+Create/UIColor+Create.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIColor+Flat.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIColor+Flat/UIColor+Flat.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIDevice+Capabilities.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Capabilities/UIDevice+Capabilities.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIDevice+DeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+DeviceInfo/UIDevice+DeviceInfo.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIDevice+Hardware.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Hardware/UIDevice+Hardware.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIDevice+Network.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Network/UIDevice+Network.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIDevice+Software.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIDevice+Software/UIDevice+Software.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIFont+SmallCaps.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIFont+SmallCaps/UIFont+SmallCaps.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIView+Cell.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Cell/UIView+Cell.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIView+Debug.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Debug/UIView+Debug.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIView+Hierarchy.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Hierarchy/UIView+Hierarchy.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIView+Snapshot.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIView+Snapshot/UIView+Snapshot.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/Haystack/UIViewController+BackgroundImage.h: -------------------------------------------------------------------------------- 1 | ../../../Haystack/SDK/Categories/UIViewController+BackgroundImage/UIViewController+BackgroundImage.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/IOSLinkedInAPI/LIALinkedInApplication.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInApplication.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/IOSLinkedInAPI/LIALinkedInAuthorizationViewController.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInAuthorizationViewController.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/IOSLinkedInAPI/LIALinkedInHttpClient.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/LIALinkedInHttpClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/IOSLinkedInAPI/NSString+LIAEncode.h: -------------------------------------------------------------------------------- 1 | ../../../IOSLinkedInAPI/IOSLinkedInAPI/NSString+LIAEncode.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONAPI.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONAPI.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONHTTPClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONKeyMapper.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONKeyMapper.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModel+networking.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelNetworking/JSONModel+networking.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModel.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModelArray.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelArray.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModelClassProperty.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelClassProperty.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModelError.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModel/JSONModelError.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONModelLib.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelLib.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/JSONValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelTransformations/JSONValueTransformer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/JSONModel/NSArray+JSONModel.h: -------------------------------------------------------------------------------- 1 | ../../../JSONModel/JSONModel/JSONModelCategories/NSArray+JSONModel.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveAuthDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveAuthDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveConnectClient.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectClient.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveConnectSession.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectSession.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveConnectSessionStatus.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveConnectSessionStatus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveDownloadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveDownloadOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveDownloadOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveDownloadOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveOperation.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveOperationProgress.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveOperationProgress.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveUploadOperationDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveUploadOperationDelegate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/LiveSDK/LiveUploadOverwriteOption.h: -------------------------------------------------------------------------------- 1 | ../../../LiveSDK/src/LiveSDK/Library/Public/LiveUploadOverwriteOption.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SSKeychain/SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/SSKeychain/SSKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SSKeychain/SSKeychain/SSKeychainQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/BAVPlistNode.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/BAVPlistNode.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/JSONSyntaxHighlight.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/JSONSyntaxHighlight.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/NSDateFormatter+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSDateFormatter+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/NSError+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSError+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/NSString+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/NSString+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STHTTPRequest+STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STHTTPRequest+STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STHTTPRequest.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/Vendor/STHTTPRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitter.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitter.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterAPI.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterAPI.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterAppOnly.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterAppOnly.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterHTML.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterHTML.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOAuth.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterOS.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOS.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterOSRequest.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterOSRequest.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/STTwitter/STTwitterProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../STTwitter/STTwitter/STTwitterProtocol.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GPPDeepLink.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPDeepLink.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GPPShare.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPShare.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GPPSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPSignIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GPPSignInButton.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPSignInButton.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GPPURLHandler.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GPPURLHandler.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLBase64.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBase64.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLBatchQuery.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBatchQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLBatchResult.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLBatchResult.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLDateTime.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLDateTime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLDefines.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLErrorObject.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLErrorObject.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLFramework.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLFramework.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLJSONParser.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLObject.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLObject.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusAcl.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusAcl.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusAclentryResource.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusAclentryResource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusActivity.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusActivity.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusActivityFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusActivityFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusComment.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusComment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusCommentFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusCommentFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusConstants.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusConstants.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusItemScope.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusItemScope.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusMoment.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusMoment.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusMomentsFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusMomentsFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusPeopleFeed.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPeopleFeed.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusPerson.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPerson.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLPlusPlace.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLPlusPlace.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLQuery.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLQuery.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLQueryPlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLQueryPlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLRuntimeCommon.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLRuntimeCommon.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLService.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLService.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLServicePlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLServicePlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLTargetNamespace.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLTargetNamespace.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLUploadParameters.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLUploadParameters.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTLUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTLUtilities.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMDefines.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMGarbageCollection.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMGarbageCollection.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMHTTPFetchHistory.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetchHistory.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMHTTPFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcher.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMHTTPFetcherLogging.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcherLogging.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMHTTPFetcherService.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPFetcherService.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMHTTPUploadFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMHTTPUploadFetcher.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMLogger.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMLogger.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMMethodCheck.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMMethodCheck.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMNSDictionary+URLArguments.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMNSDictionary+URLArguments.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMNSString+URLArguments.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMNSString+URLArguments.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMOAuth2Authentication.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2Authentication.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMOAuth2SignIn.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2SignIn.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMOAuth2ViewControllerTouch.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMOAuth2ViewControllerTouch.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GTMObjC2Runtime.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMObjC2Runtime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GoogleOpenSource.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GoogleOpenSource.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/GooglePlus.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/Headers/GooglePlus.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/googleplus-ios-sdk/OpenInChromeController.h: -------------------------------------------------------------------------------- 1 | ../../../googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/OpenInChromeController.h -------------------------------------------------------------------------------- /Demo/Pods/LiveSDK/src/LiveSDK/Library/Internal/Resources/backArrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/LiveSDK/src/LiveSDK/Library/Internal/Resources/backArrow_black.png -------------------------------------------------------------------------------- /Demo/Pods/STTwitter/STTwitter/STTwitter.h: -------------------------------------------------------------------------------- 1 | #import "STTwitterAPI.h" 2 | #import "STTwitterHTML.h" 3 | 4 | #import "NSDateFormatter+STTwitter.h" 5 | #import "NSString+STTwitter.h" 6 | #import "NSError+STTwitter.h" 7 | #import "STHTTPRequest+STTwitter.h" 8 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_AFNETWORKING_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AKPickerView/Pods-AKPickerView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AKPickerView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AKPickerView 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AKPickerView/Pods-AKPickerView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AKPickerView/Pods-AKPickerView.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_AKPICKERVIEW_OTHER_LDFLAGS = -framework "QuartzCore" -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AuthKit/Pods-AuthKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AuthKit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AuthKit 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AuthKit/Pods-AuthKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-AuthKit/Pods-AuthKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-AuthKit/Pods-AuthKit.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Bolts/Pods-Bolts-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Bolts : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Bolts 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Bolts/Pods-Bolts-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Bolts/Pods-Bolts.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-Bolts/Pods-Bolts.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-FBSDKCoreKit/Pods-FBSDKCoreKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FBSDKCoreKit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FBSDKCoreKit 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-FBSDKCoreKit/Pods-FBSDKCoreKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-FBSDKLoginKit/Pods-FBSDKLoginKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FBSDKLoginKit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FBSDKLoginKit 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-FBSDKLoginKit/Pods-FBSDKLoginKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Haystack/Pods-Haystack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Haystack : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Haystack 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Haystack/Pods-Haystack-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-Haystack/Pods-Haystack.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_HAYSTACK_OTHER_LDFLAGS = -framework "CoreText" -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-IOSLinkedInAPI/Pods-IOSLinkedInAPI-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_IOSLinkedInAPI : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_IOSLinkedInAPI 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-IOSLinkedInAPI/Pods-IOSLinkedInAPI-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-IOSLinkedInAPI/Pods-IOSLinkedInAPI.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-IOSLinkedInAPI/Pods-IOSLinkedInAPI.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-JSONModel/Pods-JSONModel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_JSONModel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_JSONModel 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-JSONModel/Pods-JSONModel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-JSONModel/Pods-JSONModel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-JSONModel/Pods-JSONModel.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-LiveSDK/Pods-LiveSDK-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LiveSDK : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LiveSDK 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-LiveSDK/Pods-LiveSDK-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-LiveSDK/Pods-LiveSDK.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-LiveSDK/Pods-LiveSDK.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-PureLayout/Pods-PureLayout-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_PureLayout : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_PureLayout 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-PureLayout/Pods-PureLayout-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-PureLayout/Pods-PureLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/Target Support Files/Pods-PureLayout/Pods-PureLayout.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-SSKeychain/Pods-SSKeychain-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SSKeychain : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SSKeychain 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-SSKeychain/Pods-SSKeychain-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-SSKeychain/Pods-SSKeychain.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SSKEYCHAIN_OTHER_LDFLAGS = -framework "Foundation" -framework "Security" -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-STTwitter/Pods-STTwitter-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_STTwitter : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_STTwitter 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-STTwitter/Pods-STTwitter-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-STTwitter/Pods-STTwitter.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_STTWITTER_OTHER_LDFLAGS = -framework "Accounts" -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "Twitter" -framework "UIKit" -weak_framework "Social" -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/GoogleOpenSource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/GoogleOpenSource -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/GoogleOpenSource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/GoogleOpenSource -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/A/Headers/GTMGarbageCollection.h: -------------------------------------------------------------------------------- 1 | // 2 | // This file previously included utility functions for working 3 | // with Garbage Collection on Mac OS X. 4 | // 5 | -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GoogleOpenSource.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPOAuth2ViewTouch.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPOAuth2ViewTouch.nib/objects.nib -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPOAuth2ViewTouch.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPOAuth2ViewTouch.nib/runtime.nib -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Info.plist -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ar.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ar.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ca.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ca.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/cs.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/cs.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/da.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/da.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/de.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/de.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/el.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/el.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/en.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/en.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/en_GB.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/en_GB.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/es.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/es.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/es_MX.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/es_MX.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/fi.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/fi.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/fr.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/fr.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_disabled.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_disabled@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_normal.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_normal@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_pressed.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_button_pressed@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_disabled.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_disabled@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_normal.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_normal@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_pressed.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_dark_icon_pressed@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_disabled.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_normal.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_normal@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_pressed.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_button_pressed@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_disabled.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_disabled@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_normal.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_normal@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_pressed.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/gpp_sign_in_light_icon_pressed@2x.png -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/he.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/he.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/hr.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/hr.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/hu.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/hu.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/id.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/id.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/it.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/it.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ja.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ja.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ko.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ko.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ms.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ms.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/nb.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/nb.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/nl.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/nl.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pl.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pl.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pt.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pt.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pt_PT.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/pt_PT.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ro.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ro.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ru.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/ru.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/sk.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/sk.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/sv.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/sv.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/th.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/th.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/tr.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/tr.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/uk.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/uk.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/vi.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/vi.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/zh_CN.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/zh_CN.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/zh_TW.lproj/GooglePlusPlatform.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/zh_TW.lproj/GooglePlusPlatform.strings -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/GooglePlus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/GooglePlus -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/GooglePlus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/A/GooglePlus -------------------------------------------------------------------------------- /Demo/Pods/googleplus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Resource/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/AuthKit/11f3519ea8db0849d50a92c2a44b9087df48ac4e/Resource/logo.png -------------------------------------------------------------------------------- /Service/Crashlytics/AKCrashlytics.h: -------------------------------------------------------------------------------- 1 | #import "AKCrashlyticsConstants.h" 2 | #import "AKCrashlyticsClient.h" 3 | #import "AKCrashlyticsUser.h" -------------------------------------------------------------------------------- /Service/Crashlytics/AKCrashlyticsConstants.h: -------------------------------------------------------------------------------- 1 | extern NSString *const AKCrashlyticsServerDefaultURL; 2 | extern NSString *const AKCrashlyticsDeveloperToken; -------------------------------------------------------------------------------- /Service/Crashlytics/AKCrashlyticsConstants.m: -------------------------------------------------------------------------------- 1 | NSString *const AKCrashlyticsServerDefaultURL = @"https://api.crashlytics.com/api/v2/"; 2 | NSString *const AKCrashlyticsDeveloperToken = @"kAKCrashlyticsDeveloperTokenKey"; -------------------------------------------------------------------------------- /Service/Crashlytics/AKCrashlyticsUser.m: -------------------------------------------------------------------------------- 1 | // 2 | // CLAccount.m 3 | // DTrack 4 | // 5 | // Created by Dal Rupnik on 22/07/14. 6 | // Copyright (c) 2014 D·Labs d.o.o. All rights reserved. 7 | // 8 | 9 | #import "AKCrashlyticsUser.h" 10 | 11 | @implementation AKCrashlyticsUser 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Service/Facebook/AKFacebook.h: -------------------------------------------------------------------------------- 1 | #import "AKFacebookConstants.h" 2 | #import "AKFacebookClient.h" 3 | -------------------------------------------------------------------------------- /Service/Facebook/AKFacebookConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | extern NSString *const AKFacebookPermissionPublicProfile; 6 | extern NSString *const AKFacebookPermissionEmail; 7 | extern NSString *const AKFacebookPermissionUserFriends; -------------------------------------------------------------------------------- /Service/GitHub/AKGitHubApp.m: -------------------------------------------------------------------------------- 1 | // 2 | // AKGitHubApp.m 3 | // Pods 4 | // 5 | // Created by Dal Rupnik on 01/07/14. 6 | // 7 | // 8 | 9 | #import "AKGitHubApp.h" 10 | 11 | @implementation AKGitHubApp 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Service/GitHub/AKGitHubLogin.m: -------------------------------------------------------------------------------- 1 | // 2 | // AKGitHubLogin.m 3 | // Pods 4 | // 5 | // Created by Dal Rupnik on 01/07/14. 6 | // 7 | // 8 | 9 | #import "AKGitHubLogin.h" 10 | 11 | @implementation AKGitHubLogin 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Service/Google/AKGoogle.h: -------------------------------------------------------------------------------- 1 | // 2 | // AKGoogle.h 3 | // Pods 4 | // 5 | // Created by Dal Rupnik on 26/03/15. 6 | // 7 | // 8 | 9 | #import "AKGoogleConstants.h" 10 | #import "AKGooglePlusClient.h" 11 | #import "AKGoogleSignInClient.h" 12 | -------------------------------------------------------------------------------- /Service/Google/AKGoogleConstants.h: -------------------------------------------------------------------------------- 1 | extern NSString *const AKGoogleScopeLogin; 2 | extern NSString *const AKGoogleScopeProfile; -------------------------------------------------------------------------------- /Service/Google/AKGoogleConstants.m: -------------------------------------------------------------------------------- 1 | #import "AKGoogleConstants.h" 2 | 3 | NSString *const AKGoogleScopeLogin = @"https://www.googleapis.com/auth/plus.login"; 4 | NSString *const AKGoogleScopeProfile = @"https://www.googleapis.com/auth/userinfo.profile"; -------------------------------------------------------------------------------- /Service/LinkedIn/AKLinkedIn.h: -------------------------------------------------------------------------------- 1 | #import "AKLinkedInConstants.h" 2 | #import "AKLinkedInClient.h" 3 | -------------------------------------------------------------------------------- /Service/LinkedIn/AKLinkedInClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 23/03/15. 3 | // 4 | 5 | #import "AKOAuth.h" 6 | 7 | @interface AKLinkedInClient : AKOAuthClient 8 | 9 | - (instancetype)initWithClientId:(NSString *)clientId clientSecret:(NSString *)clientSecret; 10 | 11 | @end -------------------------------------------------------------------------------- /Service/LinkedIn/AKLinkedInConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | extern NSString* const AKLinkedInServerDefaultURL; -------------------------------------------------------------------------------- /Service/LinkedIn/AKLinkedInConstants.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | #import "AKLinkedInConstants.h" 6 | 7 | NSString* const AKLinkedInServerDefaultURL = @"https://api.linkedin.com/"; -------------------------------------------------------------------------------- /Service/Live/AKLive.h: -------------------------------------------------------------------------------- 1 | // 2 | // AKLive.h 3 | // 4 | // Created by Dal Rupnik on 03/05/15. 5 | // 6 | 7 | #import "AKLiveConstants.h" 8 | #import "AKLiveClient.h" -------------------------------------------------------------------------------- /Service/Twitter/AKTwitter.h: -------------------------------------------------------------------------------- 1 | #import "AKTwitterConstants.h" 2 | #import "AKTwitterClient.h" 3 | -------------------------------------------------------------------------------- /Service/Twitter/AKTwitterClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 20/04/15. 3 | // 4 | 5 | #import "AKOAuth.h" 6 | 7 | @interface AKTwitterClient : AKOAuthClient 8 | 9 | - (instancetype)initWithConsumerKey:(NSString *)consumerKey consumerSecret:(NSString *)consumerSecret; 10 | 11 | @end -------------------------------------------------------------------------------- /Service/Twitter/AKTwitterConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | -------------------------------------------------------------------------------- /Service/Twitter/AKTwitterConstants.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 24/03/15. 3 | // 4 | 5 | #import "AKFacebookConstants.h" 6 | -------------------------------------------------------------------------------- /Service/Twitter/AKTwitterUser.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 20/04/15. 3 | // 4 | 5 | #import "AKOAuthUser.h" 6 | 7 | @interface AKTwitterUser : AKOAuthUser 8 | 9 | @property (nonatomic, readonly) NSString* screenName; 10 | 11 | @end -------------------------------------------------------------------------------- /Service/Twitter/AKTwitterUser.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Dal Rupnik on 20/04/15. 3 | // 4 | 5 | #import 6 | #import "AKTwitterUser.h" 7 | 8 | 9 | @implementation AKTwitterUser 10 | 11 | - (NSString *)screenName 12 | { 13 | return self.name; 14 | } 15 | 16 | @end --------------------------------------------------------------------------------