├── README.md ├── outdated ├── authentication-with-auth0-and-apollo │ ├── Auth0Example │ │ ├── .babelrc │ │ ├── .buckconfig │ │ ├── .flowconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .watchmanconfig │ │ ├── __tests__ │ │ │ ├── index.android.js │ │ │ └── index.ios.js │ │ ├── android │ │ │ ├── app │ │ │ │ ├── BUCK │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── auth0example │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── keystores │ │ │ │ ├── BUCK │ │ │ │ └── debug.keystore.properties │ │ │ └── settings.gradle │ │ ├── app.json │ │ ├── index.android.js │ │ ├── index.ios.js │ │ ├── ios │ │ │ ├── Auth0Example-tvOS │ │ │ │ └── Info.plist │ │ │ ├── Auth0Example-tvOSTests │ │ │ │ └── Info.plist │ │ │ ├── Auth0Example.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Auth0Example-tvOS.xcscheme │ │ │ │ │ └── Auth0Example.xcscheme │ │ │ ├── Auth0Example.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Auth0Example │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Base.lproj │ │ │ │ │ └── LaunchScreen.xib │ │ │ │ ├── Images.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ │ ├── Auth0ExampleTests │ │ │ │ ├── Auth0ExampleTests.m │ │ │ │ └── Info.plist │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ └── Pods │ │ │ │ ├── AFNetworking │ │ │ │ ├── AFNetworking │ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ │ ├── AFHTTPSessionManager.m │ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ │ │ ├── AFNetworking.h │ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ │ ├── AFSecurityPolicy.m │ │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ │ ├── AFURLRequestSerialization.m │ │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ │ ├── AFURLResponseSerialization.m │ │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ │ └── AFURLSessionManager.m │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── UIKit+AFNetworking │ │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ │ │ ├── AFImageDownloader.h │ │ │ │ │ ├── AFImageDownloader.m │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ │ ├── UIButton+AFNetworking.m │ │ │ │ │ ├── UIImage+AFNetworking.h │ │ │ │ │ ├── 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 │ │ │ │ ├── Headers │ │ │ │ ├── Private │ │ │ │ │ ├── AFNetworking │ │ │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ │ │ ├── AFImageDownloader.h │ │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ │ │ ├── AFNetworking.h │ │ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ │ │ ├── UIImage+AFNetworking.h │ │ │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ │ │ └── UIWebView+AFNetworking.h │ │ │ │ │ ├── Lock │ │ │ │ │ │ ├── A0APIClient.h │ │ │ │ │ │ ├── A0APIClientProvider.h │ │ │ │ │ │ ├── A0APIRouter.h │ │ │ │ │ │ ├── A0APIv1Router.h │ │ │ │ │ │ ├── A0ActiveDirectoryViewController.h │ │ │ │ │ │ ├── A0Alert.h │ │ │ │ │ │ ├── A0Application.h │ │ │ │ │ │ ├── A0AuthParameters.h │ │ │ │ │ │ ├── A0AuthenticationProvider.h │ │ │ │ │ │ ├── A0AuthenticationUIComponent.h │ │ │ │ │ │ ├── A0AuthenticatorProvider.h │ │ │ │ │ │ ├── A0BaseAuthenticator.h │ │ │ │ │ │ ├── A0ChangePasswordView.h │ │ │ │ │ │ ├── A0ChangePasswordViewController.h │ │ │ │ │ │ ├── A0ConfirmPasswordValidator.h │ │ │ │ │ │ ├── A0Connection+DatabaseValidation.h │ │ │ │ │ │ ├── A0Connection.h │ │ │ │ │ │ ├── A0ConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0ContainerViewController.h │ │ │ │ │ │ ├── A0CountryCodeTableViewController.h │ │ │ │ │ │ ├── A0CredentialFieldView.h │ │ │ │ │ │ ├── A0CredentialProvider.h │ │ │ │ │ │ ├── A0CredentialsValidator.h │ │ │ │ │ │ ├── A0DatabaseLoginViewController.h │ │ │ │ │ │ ├── A0DeviceNameProvider.h │ │ │ │ │ │ ├── A0EmailCodeViewController.h │ │ │ │ │ │ ├── A0EmailLockViewController.h │ │ │ │ │ │ ├── A0EmailMagicLinkViewController.h │ │ │ │ │ │ ├── A0EmailSendCodeViewController.h │ │ │ │ │ │ ├── A0EmailValidator.h │ │ │ │ │ │ ├── A0EnterpriseLoginViewController.h │ │ │ │ │ │ ├── A0ErrorCode.h │ │ │ │ │ │ ├── A0ErrorHandler.h │ │ │ │ │ │ ├── A0Errors.h │ │ │ │ │ │ ├── A0FailureAuthenticator.h │ │ │ │ │ │ ├── A0FieldValidator.h │ │ │ │ │ │ ├── A0FileCredentialProvider.h │ │ │ │ │ │ ├── A0FilteredConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0FullActiveDirectoryViewController.h │ │ │ │ │ │ ├── A0FullLoginViewController.h │ │ │ │ │ │ ├── A0GenericAPIErrorHandler.h │ │ │ │ │ │ ├── A0IdentityProviderAuthenticator.h │ │ │ │ │ │ ├── A0IdentityProviderCredentials.h │ │ │ │ │ │ ├── A0JSONResponseSerializer.h │ │ │ │ │ │ ├── A0KeyUploader.h │ │ │ │ │ │ ├── A0KeyboardEnabledView.h │ │ │ │ │ │ ├── A0KeyboardHandler.h │ │ │ │ │ │ ├── A0LoadingView.h │ │ │ │ │ │ ├── A0LoadingViewController.h │ │ │ │ │ │ ├── A0Lock+A0EmailLockViewController.h │ │ │ │ │ │ ├── A0Lock+A0LockViewController.h │ │ │ │ │ │ ├── A0Lock+A0SMSLockViewController.h │ │ │ │ │ │ ├── A0Lock+A0TouchIDLockViewController.h │ │ │ │ │ │ ├── A0Lock.h │ │ │ │ │ │ ├── A0LockConfiguration.h │ │ │ │ │ │ ├── A0LockEventDelegate.h │ │ │ │ │ │ ├── A0LockLogger.h │ │ │ │ │ │ ├── A0LockNotification.h │ │ │ │ │ │ ├── A0LockSignUpViewController.h │ │ │ │ │ │ ├── A0LockViewController.h │ │ │ │ │ │ ├── A0Logger.h │ │ │ │ │ │ ├── A0Logging.h │ │ │ │ │ │ ├── A0LoginView.h │ │ │ │ │ │ ├── A0MFACodeView.h │ │ │ │ │ │ ├── A0MFACodeViewController.h │ │ │ │ │ │ ├── A0MainBundleCredentialProvider.h │ │ │ │ │ │ ├── A0ModalPresenter.h │ │ │ │ │ │ ├── A0NavigationController.h │ │ │ │ │ │ ├── A0NavigationView.h │ │ │ │ │ │ ├── A0PKCE.h │ │ │ │ │ │ ├── A0PasswordFieldView.h │ │ │ │ │ │ ├── A0PasswordStrengthErrorHandler.h │ │ │ │ │ │ ├── A0PasswordValidator.h │ │ │ │ │ │ ├── A0PasswordlessLockViewModel.h │ │ │ │ │ │ ├── A0PhoneFieldView.h │ │ │ │ │ │ ├── A0PhoneNumberValidator.h │ │ │ │ │ │ ├── A0ProgressButton.h │ │ │ │ │ │ ├── A0RoundedBoxView.h │ │ │ │ │ │ ├── A0RuleErrorHandler.h │ │ │ │ │ │ ├── A0SMSCodeViewController.h │ │ │ │ │ │ ├── A0SMSLockViewController.h │ │ │ │ │ │ ├── A0SMSMagicLinkViewController.h │ │ │ │ │ │ ├── A0SMSSendCodeViewController.h │ │ │ │ │ │ ├── A0SafariAuthenticator.h │ │ │ │ │ │ ├── A0SafariSession.h │ │ │ │ │ │ ├── A0ServiceCollectionViewCell.h │ │ │ │ │ │ ├── A0ServiceCollectionViewLayoutDelegate.h │ │ │ │ │ │ ├── A0ServiceTableViewCell.h │ │ │ │ │ │ ├── A0ServiceTheme.h │ │ │ │ │ │ ├── A0ServiceViewModel.h │ │ │ │ │ │ ├── A0SignUpView.h │ │ │ │ │ │ ├── A0SignUpViewController.h │ │ │ │ │ │ ├── A0SimpleConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0SmallSocialServiceCollectionView.h │ │ │ │ │ │ ├── A0SocialLoginViewController.h │ │ │ │ │ │ ├── A0Strategy.h │ │ │ │ │ │ ├── A0Telemetry.h │ │ │ │ │ │ ├── A0Theme.h │ │ │ │ │ │ ├── A0TitleView.h │ │ │ │ │ │ ├── A0Token.h │ │ │ │ │ │ ├── A0TouchIDLockViewController.h │ │ │ │ │ │ ├── A0TouchIDRegisterViewController.h │ │ │ │ │ │ ├── A0TouchIDSignUpViewController.h │ │ │ │ │ │ ├── A0UserAPIClient.h │ │ │ │ │ │ ├── A0UserIdentity.h │ │ │ │ │ │ ├── A0UserProfile.h │ │ │ │ │ │ ├── A0UsernameValidator.h │ │ │ │ │ │ ├── A0WebAuthenticable.h │ │ │ │ │ │ ├── A0WebAuthentication.h │ │ │ │ │ │ ├── A0WebAuthenticator.h │ │ │ │ │ │ ├── A0WebKitViewController.h │ │ │ │ │ │ ├── A0WebViewAuthenticator.h │ │ │ │ │ │ ├── A0WebViewController.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── Lock.h │ │ │ │ │ │ ├── NSDictionary+A0QueryParameters.h │ │ │ │ │ │ ├── NSError+A0APIError.h │ │ │ │ │ │ ├── NSError+A0AuthAPIError.h │ │ │ │ │ │ ├── NSError+A0LockErrors.h │ │ │ │ │ │ ├── NSObject+A0APIClientProvider.h │ │ │ │ │ │ ├── NSObject+A0AuthenticatorProvider.h │ │ │ │ │ │ ├── UI.h │ │ │ │ │ │ ├── UIButton+A0SolidButton.h │ │ │ │ │ │ ├── UIConstants.h │ │ │ │ │ │ └── UIViewController+LockNotification.h │ │ │ │ │ ├── Masonry │ │ │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ │ │ ├── MASConstraint.h │ │ │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ │ │ ├── MASUtilities.h │ │ │ │ │ │ ├── MASViewAttribute.h │ │ │ │ │ │ ├── MASViewConstraint.h │ │ │ │ │ │ ├── Masonry.h │ │ │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ │ │ ├── View+MASAdditions.h │ │ │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ │ │ └── ViewController+MASAdditions.h │ │ │ │ │ ├── SimpleKeychain │ │ │ │ │ │ ├── A0SimpleKeychain+KeyPair.h │ │ │ │ │ │ ├── A0SimpleKeychain.h │ │ │ │ │ │ └── SimpleKeychain.h │ │ │ │ │ └── TouchIDAuth │ │ │ │ │ │ ├── A0JWTBuilder.h │ │ │ │ │ │ ├── A0RSAKeyExporter.h │ │ │ │ │ │ ├── A0TouchID.h │ │ │ │ │ │ ├── A0TouchIDAuthentication.h │ │ │ │ │ │ ├── NSData+A0JWTSafeBase64.h │ │ │ │ │ │ └── TouchIDAuth.h │ │ │ │ └── Public │ │ │ │ │ ├── AFNetworking │ │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ │ ├── AFImageDownloader.h │ │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ │ ├── AFNetworking.h │ │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ │ ├── UIImage+AFNetworking.h │ │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ │ └── UIWebView+AFNetworking.h │ │ │ │ │ ├── Lock │ │ │ │ │ ├── A0APIClient.h │ │ │ │ │ ├── A0APIClientProvider.h │ │ │ │ │ ├── A0APIRouter.h │ │ │ │ │ ├── A0APIv1Router.h │ │ │ │ │ ├── A0Alert.h │ │ │ │ │ ├── A0Application.h │ │ │ │ │ ├── A0AuthParameters.h │ │ │ │ │ ├── A0AuthenticationProvider.h │ │ │ │ │ ├── A0AuthenticatorProvider.h │ │ │ │ │ ├── A0BaseAuthenticator.h │ │ │ │ │ ├── A0ChangePasswordView.h │ │ │ │ │ ├── A0ConfirmPasswordValidator.h │ │ │ │ │ ├── A0Connection.h │ │ │ │ │ ├── A0ConnectionDomainMatcher.h │ │ │ │ │ ├── A0ContainerViewController.h │ │ │ │ │ ├── A0CredentialProvider.h │ │ │ │ │ ├── A0CredentialsValidator.h │ │ │ │ │ ├── A0DeviceNameProvider.h │ │ │ │ │ ├── A0EmailLockViewController.h │ │ │ │ │ ├── A0EmailValidator.h │ │ │ │ │ ├── A0ErrorCode.h │ │ │ │ │ ├── A0ErrorHandler.h │ │ │ │ │ ├── A0Errors.h │ │ │ │ │ ├── A0FieldValidator.h │ │ │ │ │ ├── A0FileCredentialProvider.h │ │ │ │ │ ├── A0FilteredConnectionDomainMatcher.h │ │ │ │ │ ├── A0GenericAPIErrorHandler.h │ │ │ │ │ ├── A0IdentityProviderAuthenticator.h │ │ │ │ │ ├── A0IdentityProviderCredentials.h │ │ │ │ │ ├── A0KeyUploader.h │ │ │ │ │ ├── A0KeyboardEnabledView.h │ │ │ │ │ ├── A0LoadingView.h │ │ │ │ │ ├── A0Lock+A0EmailLockViewController.h │ │ │ │ │ ├── A0Lock+A0LockViewController.h │ │ │ │ │ ├── A0Lock+A0SMSLockViewController.h │ │ │ │ │ ├── A0Lock+A0TouchIDLockViewController.h │ │ │ │ │ ├── A0Lock.h │ │ │ │ │ ├── A0LockConfiguration.h │ │ │ │ │ ├── A0LockEventDelegate.h │ │ │ │ │ ├── A0LockLogger.h │ │ │ │ │ ├── A0LockNotification.h │ │ │ │ │ ├── A0LockSignUpViewController.h │ │ │ │ │ ├── A0LockViewController.h │ │ │ │ │ ├── A0LoginView.h │ │ │ │ │ ├── A0MFACodeView.h │ │ │ │ │ ├── A0MainBundleCredentialProvider.h │ │ │ │ │ ├── A0ModalPresenter.h │ │ │ │ │ ├── A0PKCE.h │ │ │ │ │ ├── A0PasswordStrengthErrorHandler.h │ │ │ │ │ ├── A0PasswordValidator.h │ │ │ │ │ ├── A0PasswordlessLockViewModel.h │ │ │ │ │ ├── A0PhoneNumberValidator.h │ │ │ │ │ ├── A0RuleErrorHandler.h │ │ │ │ │ ├── A0SMSLockViewController.h │ │ │ │ │ ├── A0SafariAuthenticator.h │ │ │ │ │ ├── A0SafariSession.h │ │ │ │ │ ├── A0ServiceTheme.h │ │ │ │ │ ├── A0SignUpView.h │ │ │ │ │ ├── A0SimpleConnectionDomainMatcher.h │ │ │ │ │ ├── A0Strategy.h │ │ │ │ │ ├── A0Telemetry.h │ │ │ │ │ ├── A0Theme.h │ │ │ │ │ ├── A0Token.h │ │ │ │ │ ├── A0TouchIDLockViewController.h │ │ │ │ │ ├── A0UserAPIClient.h │ │ │ │ │ ├── A0UserIdentity.h │ │ │ │ │ ├── A0UserProfile.h │ │ │ │ │ ├── A0UsernameValidator.h │ │ │ │ │ ├── A0WebAuthenticable.h │ │ │ │ │ ├── A0WebAuthenticator.h │ │ │ │ │ ├── A0WebKitViewController.h │ │ │ │ │ ├── A0WebViewAuthenticator.h │ │ │ │ │ ├── A0WebViewController.h │ │ │ │ │ ├── Lock.h │ │ │ │ │ ├── NSError+A0AuthAPIError.h │ │ │ │ │ ├── NSError+A0LockErrors.h │ │ │ │ │ ├── NSObject+A0AuthenticatorProvider.h │ │ │ │ │ ├── UI.h │ │ │ │ │ └── UIButton+A0SolidButton.h │ │ │ │ │ ├── Masonry │ │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ │ ├── MASConstraint.h │ │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ │ ├── MASUtilities.h │ │ │ │ │ ├── MASViewAttribute.h │ │ │ │ │ ├── MASViewConstraint.h │ │ │ │ │ ├── Masonry.h │ │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ │ ├── View+MASAdditions.h │ │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ │ └── ViewController+MASAdditions.h │ │ │ │ │ ├── SimpleKeychain │ │ │ │ │ ├── A0SimpleKeychain+KeyPair.h │ │ │ │ │ ├── A0SimpleKeychain.h │ │ │ │ │ └── SimpleKeychain.h │ │ │ │ │ └── TouchIDAuth │ │ │ │ │ ├── A0JWTBuilder.h │ │ │ │ │ ├── A0RSAKeyExporter.h │ │ │ │ │ ├── A0TouchID.h │ │ │ │ │ ├── A0TouchIDAuthentication.h │ │ │ │ │ ├── NSData+A0JWTSafeBase64.h │ │ │ │ │ └── TouchIDAuth.h │ │ │ │ ├── Lock │ │ │ │ ├── Auth0 │ │ │ │ │ ├── CountryCodes.plist │ │ │ │ │ ├── Images │ │ │ │ │ │ ├── cellphone.png │ │ │ │ │ │ ├── cellphone@2x.png │ │ │ │ │ │ ├── cellphone@3x.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── close@2x.png │ │ │ │ │ │ ├── close@3x.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── lock@2x.png │ │ │ │ │ │ ├── lock@3x.png │ │ │ │ │ │ ├── mail.png │ │ │ │ │ │ ├── mail@2x.png │ │ │ │ │ │ ├── mail@3x.png │ │ │ │ │ │ ├── people.png │ │ │ │ │ │ ├── people@2x.png │ │ │ │ │ │ ├── people@3x.png │ │ │ │ │ │ ├── person.png │ │ │ │ │ │ ├── person@2x.png │ │ │ │ │ │ ├── person@3x.png │ │ │ │ │ │ ├── secondary_button_highlighted.png │ │ │ │ │ │ ├── secondary_button_highlighted@2x.png │ │ │ │ │ │ ├── secondary_button_highlighted@3x.png │ │ │ │ │ │ ├── secondary_button_normal.png │ │ │ │ │ │ ├── secondary_button_normal@2x.png │ │ │ │ │ │ ├── secondary_button_normal@3x.png │ │ │ │ │ │ ├── touchid.png │ │ │ │ │ │ ├── touchid@2x.png │ │ │ │ │ │ ├── touchid@3x.png │ │ │ │ │ │ ├── touchid_selected.png │ │ │ │ │ │ ├── touchid_selected@2x.png │ │ │ │ │ │ └── touchid_selected@3x.png │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Social │ │ │ │ │ │ ├── 37signals.png │ │ │ │ │ │ ├── 37signals@2x.png │ │ │ │ │ │ ├── 37signals@3x.png │ │ │ │ │ │ ├── amazon.png │ │ │ │ │ │ ├── amazon@2x.png │ │ │ │ │ │ ├── amazon@3x.png │ │ │ │ │ │ ├── aol.png │ │ │ │ │ │ ├── aol@2x.png │ │ │ │ │ │ ├── aol@3x.png │ │ │ │ │ │ ├── auth0.png │ │ │ │ │ │ ├── auth0@2x.png │ │ │ │ │ │ ├── auth0@3x.png │ │ │ │ │ │ ├── baidu.png │ │ │ │ │ │ ├── baidu@2x.png │ │ │ │ │ │ ├── baidu@3x.png │ │ │ │ │ │ ├── box.png │ │ │ │ │ │ ├── box@2x.png │ │ │ │ │ │ ├── box@3x.png │ │ │ │ │ │ ├── dwolla.png │ │ │ │ │ │ ├── dwolla@2x.png │ │ │ │ │ │ ├── dwolla@3x.png │ │ │ │ │ │ ├── evernote.png │ │ │ │ │ │ ├── evernote@2x.png │ │ │ │ │ │ ├── evernote@3x.png │ │ │ │ │ │ ├── exact.png │ │ │ │ │ │ ├── exact@2x.png │ │ │ │ │ │ ├── exact@3x.png │ │ │ │ │ │ ├── facebook.png │ │ │ │ │ │ ├── facebook@2x.png │ │ │ │ │ │ ├── facebook@3x.png │ │ │ │ │ │ ├── fitbit.png │ │ │ │ │ │ ├── fitbit@2x.png │ │ │ │ │ │ ├── fitbit@3x.png │ │ │ │ │ │ ├── github.png │ │ │ │ │ │ ├── github@2x.png │ │ │ │ │ │ ├── github@3x.png │ │ │ │ │ │ ├── google.png │ │ │ │ │ │ ├── google@2x.png │ │ │ │ │ │ ├── google@3x.png │ │ │ │ │ │ ├── instagram.png │ │ │ │ │ │ ├── instagram@2x.png │ │ │ │ │ │ ├── instagram@3x.png │ │ │ │ │ │ ├── linkedin.png │ │ │ │ │ │ ├── linkedin@2x.png │ │ │ │ │ │ ├── linkedin@3x.png │ │ │ │ │ │ ├── microsoft.png │ │ │ │ │ │ ├── microsoft@2x.png │ │ │ │ │ │ ├── microsoft@3x.png │ │ │ │ │ │ ├── miicard.png │ │ │ │ │ │ ├── miicard@2x.png │ │ │ │ │ │ ├── miicard@3x.png │ │ │ │ │ │ ├── paypal.png │ │ │ │ │ │ ├── paypal@2x.png │ │ │ │ │ │ ├── paypal@3x.png │ │ │ │ │ │ ├── planningcenter.png │ │ │ │ │ │ ├── planningcenter@2x.png │ │ │ │ │ │ ├── planningcenter@3x.png │ │ │ │ │ │ ├── renren.png │ │ │ │ │ │ ├── renren@2x.png │ │ │ │ │ │ ├── renren@3x.png │ │ │ │ │ │ ├── salesforce.png │ │ │ │ │ │ ├── salesforce@2x.png │ │ │ │ │ │ ├── salesforce@3x.png │ │ │ │ │ │ ├── shopify.png │ │ │ │ │ │ ├── shopify@2x.png │ │ │ │ │ │ ├── shopify@3x.png │ │ │ │ │ │ ├── soundcloud.png │ │ │ │ │ │ ├── soundcloud@2x.png │ │ │ │ │ │ ├── soundcloud@3x.png │ │ │ │ │ │ ├── thecity.png │ │ │ │ │ │ ├── thecity@2x.png │ │ │ │ │ │ ├── thecity@3x.png │ │ │ │ │ │ ├── twitter.png │ │ │ │ │ │ ├── twitter@2x.png │ │ │ │ │ │ ├── twitter@3x.png │ │ │ │ │ │ ├── vimeo.png │ │ │ │ │ │ ├── vimeo@2x.png │ │ │ │ │ │ ├── vimeo@3x.png │ │ │ │ │ │ ├── vkontakte.png │ │ │ │ │ │ ├── vkontakte@2x.png │ │ │ │ │ │ ├── vkontakte@3x.png │ │ │ │ │ │ ├── weibo.png │ │ │ │ │ │ ├── weibo@2x.png │ │ │ │ │ │ ├── weibo@3x.png │ │ │ │ │ │ ├── wordpress.png │ │ │ │ │ │ ├── wordpress@2x.png │ │ │ │ │ │ ├── wordpress@3x.png │ │ │ │ │ │ ├── yahoo.png │ │ │ │ │ │ ├── yahoo@2x.png │ │ │ │ │ │ ├── yahoo@3x.png │ │ │ │ │ │ ├── yammer.png │ │ │ │ │ │ ├── yammer@2x.png │ │ │ │ │ │ ├── yammer@3x.png │ │ │ │ │ │ ├── yandex.png │ │ │ │ │ │ ├── yandex@2x.png │ │ │ │ │ │ └── yandex@3x.png │ │ │ │ ├── CocoaPods │ │ │ │ │ └── Lock.h │ │ │ │ ├── LICENSE │ │ │ │ ├── Lock │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── A0APIClient.h │ │ │ │ │ │ ├── A0APIClient.m │ │ │ │ │ │ ├── A0APIClientProvider.h │ │ │ │ │ │ ├── A0APIRouter.h │ │ │ │ │ │ ├── A0APIv1Router.h │ │ │ │ │ │ ├── A0APIv1Router.m │ │ │ │ │ │ ├── A0Application.h │ │ │ │ │ │ ├── A0Application.m │ │ │ │ │ │ ├── A0AuthParameters.h │ │ │ │ │ │ ├── A0AuthParameters.m │ │ │ │ │ │ ├── A0AuthenticatorProvider.h │ │ │ │ │ │ ├── A0Connection.h │ │ │ │ │ │ ├── A0Connection.m │ │ │ │ │ │ ├── A0ConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0CredentialProvider.h │ │ │ │ │ │ ├── A0ErrorCode.h │ │ │ │ │ │ ├── A0ErrorHandler.h │ │ │ │ │ │ ├── A0Errors.h │ │ │ │ │ │ ├── A0Errors.m │ │ │ │ │ │ ├── A0FileCredentialProvider.h │ │ │ │ │ │ ├── A0FileCredentialProvider.m │ │ │ │ │ │ ├── A0FilteredConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0FilteredConnectionDomainMatcher.m │ │ │ │ │ │ ├── A0GenericAPIErrorHandler.h │ │ │ │ │ │ ├── A0GenericAPIErrorHandler.m │ │ │ │ │ │ ├── A0IdentityProviderCredentials.h │ │ │ │ │ │ ├── A0IdentityProviderCredentials.m │ │ │ │ │ │ ├── A0Lock.h │ │ │ │ │ │ ├── A0Lock.m │ │ │ │ │ │ ├── A0LockLogger.h │ │ │ │ │ │ ├── A0LockLogger.m │ │ │ │ │ │ ├── A0LockNotification.h │ │ │ │ │ │ ├── A0LockNotification.m │ │ │ │ │ │ ├── A0MainBundleCredentialProvider.h │ │ │ │ │ │ ├── A0MainBundleCredentialProvider.m │ │ │ │ │ │ ├── A0PKCE.h │ │ │ │ │ │ ├── A0PKCE.m │ │ │ │ │ │ ├── A0PasswordStrengthErrorHandler.h │ │ │ │ │ │ ├── A0PasswordStrengthErrorHandler.m │ │ │ │ │ │ ├── A0RuleErrorHandler.h │ │ │ │ │ │ ├── A0RuleErrorHandler.m │ │ │ │ │ │ ├── A0SimpleConnectionDomainMatcher.h │ │ │ │ │ │ ├── A0SimpleConnectionDomainMatcher.m │ │ │ │ │ │ ├── A0Strategy.h │ │ │ │ │ │ ├── A0Strategy.m │ │ │ │ │ │ ├── A0Telemetry.h │ │ │ │ │ │ ├── A0Telemetry.m │ │ │ │ │ │ ├── A0Token.h │ │ │ │ │ │ ├── A0Token.m │ │ │ │ │ │ ├── A0UserAPIClient.h │ │ │ │ │ │ ├── A0UserAPIClient.m │ │ │ │ │ │ ├── A0UserIdentity.h │ │ │ │ │ │ ├── A0UserIdentity.m │ │ │ │ │ │ ├── A0UserProfile.h │ │ │ │ │ │ ├── A0UserProfile.m │ │ │ │ │ │ ├── NSError+A0AuthAPIError.h │ │ │ │ │ │ ├── NSError+A0AuthAPIError.m │ │ │ │ │ │ ├── NSError+A0LockErrors.h │ │ │ │ │ │ ├── NSError+A0LockErrors.m │ │ │ │ │ │ ├── Private │ │ │ │ │ │ │ ├── A0JSONResponseSerializer.h │ │ │ │ │ │ │ ├── A0JSONResponseSerializer.m │ │ │ │ │ │ │ ├── A0Logger.h │ │ │ │ │ │ │ ├── A0Logger.m │ │ │ │ │ │ │ ├── A0Logging.h │ │ │ │ │ │ │ ├── A0WebAuthentication.h │ │ │ │ │ │ │ ├── A0WebAuthentication.m │ │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ │ ├── NSDictionary+A0QueryParameters.h │ │ │ │ │ │ │ ├── NSDictionary+A0QueryParameters.m │ │ │ │ │ │ │ ├── NSError+A0APIError.h │ │ │ │ │ │ │ ├── NSError+A0APIError.m │ │ │ │ │ │ │ ├── NSObject+A0APIClientProvider.h │ │ │ │ │ │ │ └── NSObject+A0APIClientProvider.m │ │ │ │ │ │ └── iOS │ │ │ │ │ │ │ ├── A0DeviceNameProvider.h │ │ │ │ │ │ │ ├── A0DeviceNameProvider.m │ │ │ │ │ │ │ ├── NSObject+A0AuthenticatorProvider.h │ │ │ │ │ │ │ └── NSObject+A0AuthenticatorProvider.m │ │ │ │ │ ├── CoreUI │ │ │ │ │ │ ├── A0Alert.h │ │ │ │ │ │ ├── A0Alert.m │ │ │ │ │ │ ├── A0CredentialsValidator.h │ │ │ │ │ │ ├── A0CredentialsValidator.m │ │ │ │ │ │ ├── A0EmailValidator.h │ │ │ │ │ │ ├── A0EmailValidator.m │ │ │ │ │ │ ├── A0FieldValidator.h │ │ │ │ │ │ ├── A0LoadingView.h │ │ │ │ │ │ ├── A0LoadingView.m │ │ │ │ │ │ ├── A0ModalPresenter.h │ │ │ │ │ │ ├── A0ModalPresenter.m │ │ │ │ │ │ ├── A0PasswordValidator.h │ │ │ │ │ │ ├── A0PasswordValidator.m │ │ │ │ │ │ ├── A0PasswordlessLockViewModel.h │ │ │ │ │ │ ├── A0PasswordlessLockViewModel.m │ │ │ │ │ │ ├── A0PhoneNumberValidator.h │ │ │ │ │ │ ├── A0PhoneNumberValidator.m │ │ │ │ │ │ ├── A0ServiceTheme.h │ │ │ │ │ │ ├── A0ServiceTheme.m │ │ │ │ │ │ ├── A0Theme.h │ │ │ │ │ │ ├── A0Theme.m │ │ │ │ │ │ ├── A0UsernameValidator.h │ │ │ │ │ │ ├── A0UsernameValidator.m │ │ │ │ │ │ ├── UIButton+A0SolidButton.h │ │ │ │ │ │ └── UIButton+A0SolidButton.m │ │ │ │ │ ├── Email │ │ │ │ │ │ ├── A0EmailLockViewController.h │ │ │ │ │ │ ├── A0EmailLockViewController.m │ │ │ │ │ │ ├── A0Lock+A0EmailLockViewController.h │ │ │ │ │ │ ├── A0Lock+A0EmailLockViewController.m │ │ │ │ │ │ └── Private │ │ │ │ │ │ │ ├── A0EmailCodeViewController.h │ │ │ │ │ │ │ ├── A0EmailCodeViewController.m │ │ │ │ │ │ │ ├── A0EmailMagicLinkViewController.h │ │ │ │ │ │ │ ├── A0EmailMagicLinkViewController.m │ │ │ │ │ │ │ ├── A0EmailSendCodeViewController.h │ │ │ │ │ │ │ └── A0EmailSendCodeViewController.m │ │ │ │ │ ├── Provider │ │ │ │ │ │ ├── A0AuthenticationProvider.h │ │ │ │ │ │ ├── A0BaseAuthenticator.h │ │ │ │ │ │ ├── A0BaseAuthenticator.m │ │ │ │ │ │ ├── A0IdentityProviderAuthenticator.h │ │ │ │ │ │ ├── A0IdentityProviderAuthenticator.m │ │ │ │ │ │ └── Private │ │ │ │ │ │ │ ├── A0FailureAuthenticator.h │ │ │ │ │ │ │ └── A0FailureAuthenticator.m │ │ │ │ │ ├── SMS │ │ │ │ │ │ ├── A0Lock+A0SMSLockViewController.h │ │ │ │ │ │ ├── A0Lock+A0SMSLockViewController.m │ │ │ │ │ │ ├── A0SMSLockViewController.h │ │ │ │ │ │ ├── A0SMSLockViewController.m │ │ │ │ │ │ └── Private │ │ │ │ │ │ │ ├── A0CountryCodeTableViewController.h │ │ │ │ │ │ │ ├── A0CountryCodeTableViewController.m │ │ │ │ │ │ │ ├── A0PhoneFieldView.h │ │ │ │ │ │ │ ├── A0PhoneFieldView.m │ │ │ │ │ │ │ ├── A0SMSCodeViewController.h │ │ │ │ │ │ │ ├── A0SMSCodeViewController.m │ │ │ │ │ │ │ ├── A0SMSMagicLinkViewController.h │ │ │ │ │ │ │ ├── A0SMSMagicLinkViewController.m │ │ │ │ │ │ │ ├── A0SMSSendCodeViewController.h │ │ │ │ │ │ │ └── A0SMSSendCodeViewController.m │ │ │ │ │ ├── Safari │ │ │ │ │ │ ├── A0SafariAuthenticator.h │ │ │ │ │ │ ├── A0SafariAuthenticator.m │ │ │ │ │ │ ├── A0SafariSession.h │ │ │ │ │ │ ├── A0SafariSession.m │ │ │ │ │ │ ├── A0WebAuthenticator.h │ │ │ │ │ │ └── A0WebAuthenticator.m │ │ │ │ │ ├── TouchID │ │ │ │ │ │ ├── A0KeyUploader.h │ │ │ │ │ │ ├── A0KeyUploader.m │ │ │ │ │ │ ├── A0Lock+A0TouchIDLockViewController.h │ │ │ │ │ │ ├── A0Lock+A0TouchIDLockViewController.m │ │ │ │ │ │ ├── A0TouchIDLockViewController.h │ │ │ │ │ │ ├── A0TouchIDLockViewController.m │ │ │ │ │ │ └── Private │ │ │ │ │ │ │ ├── A0TouchIDRegisterViewController.h │ │ │ │ │ │ │ ├── A0TouchIDRegisterViewController.m │ │ │ │ │ │ │ ├── A0TouchIDSignUpViewController.h │ │ │ │ │ │ │ └── A0TouchIDSignUpViewController.m │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── A0ChangePasswordView.h │ │ │ │ │ │ ├── A0ChangePasswordView.m │ │ │ │ │ │ ├── A0ConfirmPasswordValidator.h │ │ │ │ │ │ ├── A0ConfirmPasswordValidator.m │ │ │ │ │ │ ├── A0ContainerViewController.h │ │ │ │ │ │ ├── A0ContainerViewController.m │ │ │ │ │ │ ├── A0KeyboardEnabledView.h │ │ │ │ │ │ ├── A0Lock+A0LockViewController.h │ │ │ │ │ │ ├── A0Lock+A0LockViewController.m │ │ │ │ │ │ ├── A0LockConfiguration.h │ │ │ │ │ │ ├── A0LockConfiguration.m │ │ │ │ │ │ ├── A0LockEventDelegate.h │ │ │ │ │ │ ├── A0LockEventDelegate.m │ │ │ │ │ │ ├── A0LockSignUpViewController.h │ │ │ │ │ │ ├── A0LockSignUpViewController.m │ │ │ │ │ │ ├── A0LockViewController.h │ │ │ │ │ │ ├── A0LockViewController.m │ │ │ │ │ │ ├── A0LoginView.h │ │ │ │ │ │ ├── A0LoginView.m │ │ │ │ │ │ ├── A0MFACodeView.h │ │ │ │ │ │ ├── A0MFACodeView.m │ │ │ │ │ │ ├── A0SignUpView.h │ │ │ │ │ │ ├── A0SignUpView.m │ │ │ │ │ │ ├── Private │ │ │ │ │ │ │ ├── A0ActiveDirectoryViewController.h │ │ │ │ │ │ │ ├── A0ActiveDirectoryViewController.m │ │ │ │ │ │ │ ├── A0AuthenticationUIComponent.h │ │ │ │ │ │ │ ├── A0ChangePasswordViewController.h │ │ │ │ │ │ │ ├── A0ChangePasswordViewController.m │ │ │ │ │ │ │ ├── A0Connection+DatabaseValidation.h │ │ │ │ │ │ │ ├── A0Connection+DatabaseValidation.m │ │ │ │ │ │ │ ├── A0CredentialFieldView.h │ │ │ │ │ │ │ ├── A0CredentialFieldView.m │ │ │ │ │ │ │ ├── A0DatabaseLoginViewController.h │ │ │ │ │ │ │ ├── A0DatabaseLoginViewController.m │ │ │ │ │ │ │ ├── A0EnterpriseLoginViewController.h │ │ │ │ │ │ │ ├── A0EnterpriseLoginViewController.m │ │ │ │ │ │ │ ├── A0FullActiveDirectoryViewController.h │ │ │ │ │ │ │ ├── A0FullActiveDirectoryViewController.m │ │ │ │ │ │ │ ├── A0FullLoginViewController.h │ │ │ │ │ │ │ ├── A0FullLoginViewController.m │ │ │ │ │ │ │ ├── A0LoadingViewController.h │ │ │ │ │ │ │ ├── A0LoadingViewController.m │ │ │ │ │ │ │ ├── A0MFACodeViewController.h │ │ │ │ │ │ │ ├── A0MFACodeViewController.m │ │ │ │ │ │ │ ├── A0NavigationController.h │ │ │ │ │ │ │ ├── A0NavigationController.m │ │ │ │ │ │ │ ├── A0NavigationView.h │ │ │ │ │ │ │ ├── A0NavigationView.m │ │ │ │ │ │ │ ├── A0PasswordFieldView.h │ │ │ │ │ │ │ ├── A0PasswordFieldView.m │ │ │ │ │ │ │ ├── A0RoundedBoxView.h │ │ │ │ │ │ │ ├── A0RoundedBoxView.m │ │ │ │ │ │ │ ├── A0ServiceCollectionViewCell.h │ │ │ │ │ │ │ ├── A0ServiceCollectionViewCell.m │ │ │ │ │ │ │ ├── A0ServiceCollectionViewLayoutDelegate.h │ │ │ │ │ │ │ ├── A0ServiceCollectionViewLayoutDelegate.m │ │ │ │ │ │ │ ├── A0ServiceTableViewCell.h │ │ │ │ │ │ │ ├── A0ServiceTableViewCell.m │ │ │ │ │ │ │ ├── A0ServiceViewModel.h │ │ │ │ │ │ │ ├── A0ServiceViewModel.m │ │ │ │ │ │ │ ├── A0SignUpViewController.h │ │ │ │ │ │ │ ├── A0SignUpViewController.m │ │ │ │ │ │ │ ├── A0SmallSocialServiceCollectionView.h │ │ │ │ │ │ │ ├── A0SmallSocialServiceCollectionView.m │ │ │ │ │ │ │ ├── A0SocialLoginViewController.h │ │ │ │ │ │ │ ├── A0SocialLoginViewController.m │ │ │ │ │ │ │ ├── A0TitleView.h │ │ │ │ │ │ │ ├── A0TitleView.m │ │ │ │ │ │ │ ├── UIViewController+LockNotification.h │ │ │ │ │ │ │ └── UIViewController+LockNotification.m │ │ │ │ │ │ └── UI.h │ │ │ │ │ ├── Utils │ │ │ │ │ │ ├── A0KeyboardHandler.h │ │ │ │ │ │ ├── A0KeyboardHandler.m │ │ │ │ │ │ ├── A0ProgressButton.h │ │ │ │ │ │ ├── A0ProgressButton.m │ │ │ │ │ │ └── UIConstants.h │ │ │ │ │ └── WebView │ │ │ │ │ │ ├── A0WebAuthenticable.h │ │ │ │ │ │ ├── A0WebKitViewController.h │ │ │ │ │ │ ├── A0WebKitViewController.m │ │ │ │ │ │ ├── A0WebViewAuthenticator.h │ │ │ │ │ │ ├── A0WebViewAuthenticator.m │ │ │ │ │ │ ├── A0WebViewController.h │ │ │ │ │ │ └── A0WebViewController.m │ │ │ │ └── README.md │ │ │ │ ├── Manifest.lock │ │ │ │ ├── Masonry │ │ │ │ ├── LICENSE │ │ │ │ ├── Masonry │ │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ │ ├── MASCompositeConstraint.m │ │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ │ ├── MASConstraint.h │ │ │ │ │ ├── MASConstraint.m │ │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ │ ├── MASConstraintMaker.m │ │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ │ ├── MASLayoutConstraint.m │ │ │ │ │ ├── MASUtilities.h │ │ │ │ │ ├── MASViewAttribute.h │ │ │ │ │ ├── MASViewAttribute.m │ │ │ │ │ ├── MASViewConstraint.h │ │ │ │ │ ├── MASViewConstraint.m │ │ │ │ │ ├── Masonry.h │ │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ │ ├── NSArray+MASAdditions.m │ │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ │ │ ├── View+MASAdditions.h │ │ │ │ │ ├── View+MASAdditions.m │ │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ │ ├── ViewController+MASAdditions.h │ │ │ │ │ └── ViewController+MASAdditions.m │ │ │ │ └── README.md │ │ │ │ ├── Pods.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── SimpleKeychain │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── SimpleKeychain │ │ │ │ │ ├── A0SimpleKeychain+KeyPair.h │ │ │ │ │ ├── A0SimpleKeychain+KeyPair.m │ │ │ │ │ ├── A0SimpleKeychain.h │ │ │ │ │ ├── A0SimpleKeychain.m │ │ │ │ │ └── SimpleKeychain.h │ │ │ │ ├── Target Support Files │ │ │ │ ├── AFNetworking │ │ │ │ │ ├── AFNetworking-dummy.m │ │ │ │ │ ├── AFNetworking-prefix.pch │ │ │ │ │ └── AFNetworking.xcconfig │ │ │ │ ├── Lock │ │ │ │ │ ├── Lock-dummy.m │ │ │ │ │ ├── Lock-prefix.pch │ │ │ │ │ ├── Lock.xcconfig │ │ │ │ │ └── ResourceBundle-Auth0-Info.plist │ │ │ │ ├── Masonry │ │ │ │ │ ├── Masonry-dummy.m │ │ │ │ │ ├── Masonry-prefix.pch │ │ │ │ │ └── Masonry.xcconfig │ │ │ │ ├── Pods-Auth0Example │ │ │ │ │ ├── Pods-Auth0Example-acknowledgements.markdown │ │ │ │ │ ├── Pods-Auth0Example-acknowledgements.plist │ │ │ │ │ ├── Pods-Auth0Example-dummy.m │ │ │ │ │ ├── Pods-Auth0Example-frameworks.sh │ │ │ │ │ ├── Pods-Auth0Example-resources.sh │ │ │ │ │ ├── Pods-Auth0Example.debug.xcconfig │ │ │ │ │ └── Pods-Auth0Example.release.xcconfig │ │ │ │ ├── SimpleKeychain │ │ │ │ │ ├── SimpleKeychain-dummy.m │ │ │ │ │ ├── SimpleKeychain-prefix.pch │ │ │ │ │ └── SimpleKeychain.xcconfig │ │ │ │ └── TouchIDAuth │ │ │ │ │ ├── TouchIDAuth-dummy.m │ │ │ │ │ ├── TouchIDAuth-prefix.pch │ │ │ │ │ └── TouchIDAuth.xcconfig │ │ │ │ └── TouchIDAuth │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── TouchIDAuth │ │ │ │ ├── A0JWTBuilder.h │ │ │ │ ├── A0JWTBuilder.m │ │ │ │ ├── A0RSAKeyExporter.h │ │ │ │ ├── A0RSAKeyExporter.m │ │ │ │ ├── A0TouchID.h │ │ │ │ ├── A0TouchID.m │ │ │ │ ├── A0TouchIDAuthentication.h │ │ │ │ ├── A0TouchIDAuthentication.m │ │ │ │ ├── NSData+A0JWTSafeBase64.h │ │ │ │ ├── NSData+A0JWTSafeBase64.m │ │ │ │ └── TouchIDAuth.h │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ └── components │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ └── profile.js │ │ └── yarn.lock │ └── README.md ├── authentication-with-expo-and-auth0 │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── fonts │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-Semibold.ttf │ │ └── img │ │ │ ├── comments.png │ │ │ └── comments.svg │ ├── exp.json │ ├── graphql.config.json │ ├── graphql.schema.json │ ├── main.js │ ├── package.json │ ├── src │ │ ├── CommentView.js │ │ ├── CreateCommentView.js │ │ ├── CreatePostView.js │ │ ├── ListViewFooter.js │ │ ├── PostDetailView.js │ │ ├── PostItem.js │ │ ├── PostListView.js │ │ └── utils.js │ └── yarn.lock ├── quickstart-with-expo-and-apollo │ ├── .gitignore │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── app.json │ ├── package.json │ ├── src │ │ ├── CreatePage.js │ │ ├── ListPage.js │ │ └── Post.js │ └── yarn.lock ├── quickstart-with-expo-and-relay-pokedex │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .graphqlrc │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── app.json │ ├── components │ │ ├── PokemonDetails.js │ │ ├── PokemonItem.js │ │ └── PokemonList.js │ ├── mutations │ │ ├── CreatePokemonMutation.js │ │ ├── DeletePokemonMutation.js │ │ └── UpdatePokemonMutation.js │ └── package.json ├── subscriptions-with-apollo │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── README.md │ ├── __tests__ │ │ ├── index.android.js │ │ └── index.ios.js │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── reactnativeapolloinstagramexample │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── graphql.config.json │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── ReactNativeApolloInstagramExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ReactNativeApolloInstagramExample.xcscheme │ │ ├── ReactNativeApolloInstagramExample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── ReactNativeApolloInstagramExampleTests │ │ │ ├── Info.plist │ │ │ └── ReactNativeApolloInstagramExampleTests.m │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── CreatePage.js │ │ │ ├── ListPage.js │ │ │ └── Post.js │ │ ├── root.js │ │ └── util.js │ └── yarn.lock └── subscriptions-with-expo-and-apollo-chat │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── Chat.js │ ├── README.md │ ├── app.json │ ├── package.json │ └── yarn.lock └── quickstart-with-apollo ├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json ├── components ├── CreatePage.js ├── ListPage.js └── Post.js ├── package.json └── yarn.lock /outdated/authentication-with-auth0-and-apollo/Auth0Example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/java/com/auth0example/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.auth0example; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import com.auth0.lock.react.LockReactPackage; 5 | 6 | public class MainActivity extends ReactActivity { 7 | 8 | /** 9 | * Returns the name of the main component registered from JavaScript. 10 | * This is used to schedule rendering of the component. 11 | */ 12 | @Override 13 | protected String getMainComponentName() { 14 | return "Auth0Example"; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/java/com/auth0example/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.auth0example; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage() 26 | ); 27 | } 28 | }; 29 | 30 | @Override 31 | public ReactNativeHost getReactNativeHost() { 32 | return mReactNativeHost; 33 | } 34 | 35 | @Override 36 | public void onCreate() { 37 | super.onCreate(); 38 | SoLoader.init(this, /* native exopackage */ false); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Auth0Example 4 | 5 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Auth0Example' 2 | 3 | include ':app' 4 | include ':react-native-lock' 5 | project(':react-native-lock').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-lock/android') 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Auth0Example", 3 | "displayName": "Auth0Example" 4 | } -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/index.android.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native' 2 | 3 | import App from './src/app' 4 | 5 | AppRegistry.registerComponent('Auth0Example', () => App) 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/index.ios.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native' 2 | 3 | import App from './src/app' 4 | 5 | AppRegistry.registerComponent('Auth0Example', () => App) 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0Example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0Example/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0Example/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Auth0ExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Podfile: -------------------------------------------------------------------------------- 1 | target 'Auth0Example' do 2 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 3 | # use_frameworks! 4 | end 5 | 6 | # Auth0 Lock 7 | 8 | pod 'Lock', '~> 1.29' 9 | pod 'Lock/TouchID' 10 | pod 'Lock/SMS' 11 | pod 'Lock/Email' 12 | pod 'Lock/Safari' 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0APIClient.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIClient.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0APIClientProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIClientProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0APIRouter.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIRouter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0APIv1Router.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIv1Router.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ActiveDirectoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ActiveDirectoryViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Alert.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0Alert.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Application.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Application.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0AuthParameters.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0AuthParameters.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0AuthenticationProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0AuthenticationProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0AuthenticationUIComponent.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0AuthenticationUIComponent.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0AuthenticatorProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0AuthenticatorProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0BaseAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0BaseAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ChangePasswordView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ChangePasswordView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ChangePasswordViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ChangePasswordViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ConfirmPasswordValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ConfirmPasswordValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Connection+DatabaseValidation.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0Connection+DatabaseValidation.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Connection.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Connection.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ContainerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ContainerViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0CountryCodeTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/Private/A0CountryCodeTableViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0CredentialFieldView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0CredentialFieldView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0CredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0CredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0CredentialsValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0CredentialsValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0DatabaseLoginViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0DatabaseLoginViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0DeviceNameProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/iOS/A0DeviceNameProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EmailCodeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/Private/A0EmailCodeViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EmailLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/A0EmailLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EmailMagicLinkViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/Private/A0EmailMagicLinkViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EmailSendCodeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/Private/A0EmailSendCodeViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EmailValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0EmailValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0EnterpriseLoginViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0EnterpriseLoginViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ErrorCode.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ErrorCode.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Errors.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Errors.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FailureAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/Private/A0FailureAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FieldValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0FieldValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FileCredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0FileCredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FilteredConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0FilteredConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FullActiveDirectoryViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0FullActiveDirectoryViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0FullLoginViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0FullLoginViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0GenericAPIErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0GenericAPIErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0IdentityProviderAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0IdentityProviderAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0IdentityProviderCredentials.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0IdentityProviderCredentials.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0JSONResponseSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/A0JSONResponseSerializer.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0KeyUploader.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0KeyUploader.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0KeyboardEnabledView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0KeyboardEnabledView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0KeyboardHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Utils/A0KeyboardHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LoadingView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0LoadingView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LoadingViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0LoadingViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Lock+A0EmailLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/A0Lock+A0EmailLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Lock+A0LockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0Lock+A0LockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Lock+A0SMSLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/A0Lock+A0SMSLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Lock+A0TouchIDLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0Lock+A0TouchIDLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Lock.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Lock.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockConfiguration.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockEventDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockEventDelegate.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockLogger.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0LockLogger.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0LockNotification.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockSignUpViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockSignUpViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Logger.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/A0Logger.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Logging.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/A0Logging.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0LoginView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LoginView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0MFACodeView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0MFACodeView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0MFACodeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0MFACodeViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0MainBundleCredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0MainBundleCredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ModalPresenter.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0ModalPresenter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0NavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0NavigationController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0NavigationView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0NavigationView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PKCE.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0PKCE.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PasswordFieldView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0PasswordFieldView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PasswordStrengthErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0PasswordStrengthErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PasswordValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PasswordValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PasswordlessLockViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PasswordlessLockViewModel.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PhoneFieldView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/Private/A0PhoneFieldView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0PhoneNumberValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PhoneNumberValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ProgressButton.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Utils/A0ProgressButton.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0RoundedBoxView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0RoundedBoxView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0RuleErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0RuleErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SMSCodeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/Private/A0SMSCodeViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SMSLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/A0SMSLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SMSMagicLinkViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/Private/A0SMSMagicLinkViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SMSSendCodeViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/Private/A0SMSSendCodeViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SafariAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0SafariAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SafariSession.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0SafariSession.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ServiceCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ServiceCollectionViewCell.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ServiceCollectionViewLayoutDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ServiceCollectionViewLayoutDelegate.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ServiceTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ServiceTableViewCell.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ServiceTheme.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0ServiceTheme.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0ServiceViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0ServiceViewModel.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SignUpView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0SignUpView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SignUpViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0SignUpViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SimpleConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0SimpleConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SmallSocialServiceCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0SmallSocialServiceCollectionView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0SocialLoginViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0SocialLoginViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Strategy.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Strategy.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Telemetry.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Telemetry.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Theme.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0Theme.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0TitleView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/A0TitleView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0Token.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Token.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0TouchIDLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0TouchIDLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0TouchIDRegisterViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/Private/A0TouchIDRegisterViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0TouchIDSignUpViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/Private/A0TouchIDSignUpViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0UserAPIClient.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserAPIClient.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0UserIdentity.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserIdentity.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0UserProfile.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserProfile.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0UsernameValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0UsernameValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebAuthenticable.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebAuthenticable.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebAuthentication.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/A0WebAuthentication.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0WebAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebKitViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebKitViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebViewAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebViewAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/A0WebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/Constants.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/Constants.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/Lock.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/CocoaPods/Lock.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSDictionary+A0QueryParameters.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/NSDictionary+A0QueryParameters.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSError+A0APIError.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/NSError+A0APIError.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSError+A0AuthAPIError.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/NSError+A0AuthAPIError.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSError+A0LockErrors.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/NSError+A0LockErrors.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSObject+A0APIClientProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/Private/NSObject+A0APIClientProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/NSObject+A0AuthenticatorProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/iOS/NSObject+A0AuthenticatorProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/UI.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/UI.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/UIButton+A0SolidButton.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/UIButton+A0SolidButton.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/UIConstants.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Utils/UIConstants.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Lock/UIViewController+LockNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/Private/UIViewController+LockNotification.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/SimpleKeychain/A0SimpleKeychain+KeyPair.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/A0SimpleKeychain+KeyPair.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/SimpleKeychain/A0SimpleKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/A0SimpleKeychain.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/SimpleKeychain/SimpleKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/SimpleKeychain.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/A0JWTBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0JWTBuilder.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/A0RSAKeyExporter.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0RSAKeyExporter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/A0TouchID.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0TouchID.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/A0TouchIDAuthentication.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0TouchIDAuthentication.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/NSData+A0JWTSafeBase64.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/NSData+A0JWTSafeBase64.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Private/TouchIDAuth/TouchIDAuth.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/TouchIDAuth.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0APIClient.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIClient.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0APIClientProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIClientProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0APIRouter.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIRouter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0APIv1Router.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0APIv1Router.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Alert.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0Alert.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Application.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Application.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0AuthParameters.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0AuthParameters.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0AuthenticationProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0AuthenticationProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0AuthenticatorProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0AuthenticatorProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0BaseAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0BaseAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ChangePasswordView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ChangePasswordView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ConfirmPasswordValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ConfirmPasswordValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Connection.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Connection.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ContainerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0ContainerViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0CredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0CredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0CredentialsValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0CredentialsValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0DeviceNameProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/iOS/A0DeviceNameProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0EmailLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/A0EmailLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0EmailValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0EmailValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ErrorCode.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ErrorCode.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0ErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Errors.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Errors.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0FieldValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0FieldValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0FileCredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0FileCredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0FilteredConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0FilteredConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0GenericAPIErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0GenericAPIErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0IdentityProviderAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Provider/A0IdentityProviderAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0IdentityProviderCredentials.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0IdentityProviderCredentials.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0KeyUploader.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0KeyUploader.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0KeyboardEnabledView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0KeyboardEnabledView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LoadingView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0LoadingView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Lock+A0EmailLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Email/A0Lock+A0EmailLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Lock+A0LockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0Lock+A0LockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Lock+A0SMSLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/A0Lock+A0SMSLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Lock+A0TouchIDLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0Lock+A0TouchIDLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Lock.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Lock.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockConfiguration.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockEventDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockEventDelegate.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockLogger.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0LockLogger.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0LockNotification.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockSignUpViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockSignUpViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0LoginView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0LoginView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0MFACodeView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0MFACodeView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0MainBundleCredentialProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0MainBundleCredentialProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ModalPresenter.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0ModalPresenter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0PKCE.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0PKCE.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0PasswordStrengthErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0PasswordStrengthErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0PasswordValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PasswordValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0PasswordlessLockViewModel.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PasswordlessLockViewModel.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0PhoneNumberValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0PhoneNumberValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0RuleErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0RuleErrorHandler.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0SMSLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/SMS/A0SMSLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0SafariAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0SafariAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0SafariSession.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0SafariSession.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0ServiceTheme.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0ServiceTheme.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0SignUpView.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/A0SignUpView.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0SimpleConnectionDomainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0SimpleConnectionDomainMatcher.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Strategy.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Strategy.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Telemetry.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Telemetry.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Theme.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0Theme.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0Token.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0Token.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0TouchIDLockViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/TouchID/A0TouchIDLockViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0UserAPIClient.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserAPIClient.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0UserIdentity.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserIdentity.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0UserProfile.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/A0UserProfile.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0UsernameValidator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/A0UsernameValidator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0WebAuthenticable.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebAuthenticable.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0WebAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Safari/A0WebAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0WebKitViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebKitViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0WebViewAuthenticator.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebViewAuthenticator.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/A0WebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/WebView/A0WebViewController.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/Lock.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/CocoaPods/Lock.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/NSError+A0AuthAPIError.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/NSError+A0AuthAPIError.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/NSError+A0LockErrors.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/NSError+A0LockErrors.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/NSObject+A0AuthenticatorProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/Core/iOS/NSObject+A0AuthenticatorProvider.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/UI.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/UI/UI.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Lock/UIButton+A0SolidButton.h: -------------------------------------------------------------------------------- 1 | ../../../Lock/Lock/CoreUI/UIButton+A0SolidButton.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/SimpleKeychain/A0SimpleKeychain+KeyPair.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/A0SimpleKeychain+KeyPair.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/SimpleKeychain/A0SimpleKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/A0SimpleKeychain.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/SimpleKeychain/SimpleKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SimpleKeychain/SimpleKeychain/SimpleKeychain.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/A0JWTBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0JWTBuilder.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/A0RSAKeyExporter.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0RSAKeyExporter.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/A0TouchID.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0TouchID.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/A0TouchIDAuthentication.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/A0TouchIDAuthentication.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/NSData+A0JWTSafeBase64.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/NSData+A0JWTSafeBase64.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Headers/Public/TouchIDAuth/TouchIDAuth.h: -------------------------------------------------------------------------------- 1 | ../../../TouchIDAuth/TouchIDAuth/TouchIDAuth.h -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/cellphone@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/close@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/lock@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/mail@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/people@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/person@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_highlighted@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/secondary_button_normal@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Images/touchid_selected@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | $(PRODUCT_BUNDLE_IDENTIFIER) 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | $(PRODUCT_NAME) 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.29.1 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSHumanReadableCopyright 22 | Copyright © 2015 Auth0. All rights reserved. 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/37signals@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/amazon@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/aol@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/auth0@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/baidu@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/box@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/dwolla@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/evernote@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/exact@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/facebook@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/fitbit@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/github@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/google@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/instagram@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/linkedin@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/microsoft@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/miicard@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/paypal@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/planningcenter@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/renren@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/salesforce@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/shopify@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/soundcloud@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/thecity@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/twitter@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vimeo@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/vkontakte@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/weibo@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/wordpress@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yahoo@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yammer@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex@2x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Lock/Auth0/Social/yandex@3x.png -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASCompositeConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 21/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import "MASConstraint.h" 10 | #import "MASUtilities.h" 11 | 12 | /** 13 | * A group of MASConstraint objects 14 | */ 15 | @interface MASCompositeConstraint : MASConstraint 16 | 17 | /** 18 | * Creates a composite with a predefined array of children 19 | * 20 | * @param children child MASConstraints 21 | * 22 | * @return a composite constraint 23 | */ 24 | - (id)initWithChildren:(NSArray *)children; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * When you are debugging or printing the constraints attached to a view this subclass 13 | * makes it easier to identify which constraints have been created via Masonry 14 | */ 15 | @interface MASLayoutConstraint : NSLayoutConstraint 16 | 17 | /** 18 | * a key to associate with this constraint 19 | */ 20 | @property (nonatomic, strong) id mas_key; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | // 2 | // Masonry.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 20/07/13. 6 | // Copyright (c) 2013 cloudling. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Masonry. 12 | FOUNDATION_EXPORT double MasonryVersionNumber; 13 | 14 | //! Project version string for Masonry. 15 | FOUNDATION_EXPORT const unsigned char MasonryVersionString[]; 16 | 17 | #import "MASUtilities.h" 18 | #import "View+MASAdditions.h" 19 | #import "View+MASShorthandAdditions.h" 20 | #import "ViewController+MASAdditions.h" 21 | #import "NSArray+MASAdditions.h" 22 | #import "NSArray+MASShorthandAdditions.h" 23 | #import "MASConstraint.h" 24 | #import "MASCompositeConstraint.h" 25 | #import "MASViewAttribute.h" 26 | #import "MASViewConstraint.h" 27 | #import "MASConstraintMaker.h" 28 | #import "MASLayoutConstraint.h" 29 | #import "NSLayoutConstraint+MASDebugAdditions.h" 30 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+MASAdditions.h 3 | // Masonry 4 | // 5 | // Created by Craig Siemens on 2015-06-23. 6 | // 7 | // 8 | 9 | #import "MASUtilities.h" 10 | #import "MASConstraintMaker.h" 11 | #import "MASViewAttribute.h" 12 | 13 | #ifdef MAS_VIEW_CONTROLLER 14 | 15 | @interface MAS_VIEW_CONTROLLER (MASAdditions) 16 | 17 | /** 18 | * following properties return a new MASViewAttribute with appropriate UILayoutGuide and NSLayoutAttribute 19 | */ 20 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuide; 21 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuide; 22 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuideTop; 23 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_topLayoutGuideBottom; 24 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuideTop; 25 | @property (nonatomic, strong, readonly) MASViewAttribute *mas_bottomLayoutGuideBottom; 26 | 27 | 28 | @end 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/SimpleKeychain/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Auth0 LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #ifndef TARGET_OS_IOS 14 | #define TARGET_OS_IOS TARGET_OS_IPHONE 15 | #endif 16 | 17 | #ifndef TARGET_OS_WATCH 18 | #define TARGET_OS_WATCH 0 19 | #endif 20 | 21 | #ifndef TARGET_OS_TV 22 | #define TARGET_OS_TV 0 23 | #endif 24 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/AFNetworking 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AFNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Lock" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SimpleKeychain" "${PODS_ROOT}/Headers/Public/TouchIDAuth" 4 | OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/AFNetworking 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Lock/Lock-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Lock : NSObject 3 | @end 4 | @implementation PodsDummy_Lock 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Lock/Lock-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #define A0CurrentLockVersion @"1.29.1" 14 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Lock/Lock.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Lock 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Lock" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Lock" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SimpleKeychain" "${PODS_ROOT}/Headers/Public/TouchIDAuth" 4 | LIBRARY_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/AFNetworking" "$PODS_CONFIGURATION_BUILD_DIR/Masonry" "$PODS_CONFIGURATION_BUILD_DIR/SimpleKeychain" "$PODS_CONFIGURATION_BUILD_DIR/TouchIDAuth" 5 | OTHER_LDFLAGS = -framework "WebKit" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Lock 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Lock/ResourceBundle-Auth0-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.29.1 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Masonry 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Masonry" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Lock" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SimpleKeychain" "${PODS_ROOT}/Headers/Public/TouchIDAuth" 4 | OTHER_LDFLAGS = -framework "Foundation" -framework "UIKit" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Masonry 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/Pods-Auth0Example/Pods-Auth0Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Auth0Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Auth0Example 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/SimpleKeychain/SimpleKeychain-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SimpleKeychain : NSObject 3 | @end 4 | @implementation PodsDummy_SimpleKeychain 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/SimpleKeychain/SimpleKeychain-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/SimpleKeychain/SimpleKeychain.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SimpleKeychain 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SimpleKeychain" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Lock" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SimpleKeychain" "${PODS_ROOT}/Headers/Public/TouchIDAuth" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SimpleKeychain 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/TouchIDAuth/TouchIDAuth-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TouchIDAuth : NSObject 3 | @end 4 | @implementation PodsDummy_TouchIDAuth 5 | @end 6 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/TouchIDAuth/TouchIDAuth-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/Target Support Files/TouchIDAuth/TouchIDAuth.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/TouchIDAuth 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/TouchIDAuth" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Lock" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/SimpleKeychain" "${PODS_ROOT}/Headers/Public/TouchIDAuth" 4 | LIBRARY_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/SimpleKeychain" 5 | OTHER_LDFLAGS = -framework "LocalAuthentication" -framework "Security" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/TouchIDAuth 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/TouchIDAuth/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Auth0 LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/ios/Pods/TouchIDAuth/TouchIDAuth/TouchIDAuth.h: -------------------------------------------------------------------------------- 1 | // 2 | // TouchIDAuth.h 3 | // TouchIDAuth 4 | // 5 | // Created by Hernan Zalazar on 10/29/15. 6 | // Copyright © 2015 Auth0. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for TouchIDAuth. 12 | FOUNDATION_EXPORT double TouchIDAuthVersionNumber; 13 | 14 | //! Project version string for TouchIDAuth. 15 | FOUNDATION_EXPORT const unsigned char TouchIDAuthVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | #import 20 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Auth0Example", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node_modules/react-native/packager/packager.sh", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "16.0.0-alpha.6", 11 | "react-apollo": "^1.4.2", 12 | "react-native": "^0.44.2", 13 | "react-native-elements": "^0.12.2", 14 | "react-native-lock": "^0.6.0", 15 | "react-native-router-flux": "3.38.0", 16 | "react-native-vector-icons": "^4.2.0", 17 | "styled-components": "^2.0.0" 18 | }, 19 | "devDependencies": { 20 | "babel-jest": "20.0.3", 21 | "babel-preset-react-native": "1.9.2", 22 | "jest": "20.0.4", 23 | "react-test-renderer": "16.0.0-alpha.6" 24 | }, 25 | "jest": { 26 | "preset": "react-native" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /outdated/authentication-with-auth0-and-apollo/Auth0Example/src/components/index.js: -------------------------------------------------------------------------------- 1 | import styled from 'styled-components/native' 2 | 3 | export const Wrapper = styled.View` 4 | paddingTop: 65; 5 | paddingBottom: 10; 6 | ` 7 | 8 | export const Wrapper2 = styled.View` 9 | paddingTop: 65; 10 | ` 11 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-exponent"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'anf', 3 | rules: { 4 | 'flowtype/require-valid-file-annotation': 0, 5 | }, 6 | globals: { 7 | "fetch": false, 8 | }, 9 | }; 10 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .exponent/* 3 | npm-debug.* 4 | .idea -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-expo-and-auth0/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/assets/img/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/authentication-with-expo-and-auth0/assets/img/comments.png -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/assets/img/comments.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Group 4 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/exp.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "exponent-auth0", 3 | "description": "An empty new project", 4 | "slug": "exponent-auth0", 5 | "privacy": "public", 6 | "sdkVersion": "14.0.0", 7 | "version": "1.0.0", 8 | "orientation": "portrait", 9 | "primaryColor": "#cccccc", 10 | "icon": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png", 11 | "loading": { 12 | "icon": "https://s3.amazonaws.com/exp-brand-assets/ExponentEmptyManifest_192.png", 13 | "hideExponentText": false 14 | }, 15 | "packagerOpts": { 16 | "assetExts": ["ttf", "mp4"] 17 | }, 18 | "ios": { 19 | "supportsTablet": true 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "exponent-auth0", 3 | "version": "0.0.0", 4 | "description": "Hello Exponent!", 5 | "author": null, 6 | "private": true, 7 | "main": "main.js", 8 | "dependencies": { 9 | "@exponent/ex-navigation": "^2.9.1", 10 | "@exponent/vector-icons": "~4.0.0", 11 | "babel-preset-react-native-stage-0": "^1.0.1", 12 | "exponent": "~14.0.0-rc.1", 13 | "jwt-decode": "^2.1.0", 14 | "react": "~15.4.0", 15 | "react-apollo": "^1.2.0", 16 | "react-native": "git+https://github.com/exponentjs/react-native#sdk-14.0.0" 17 | }, 18 | "devDependencies": { 19 | "eslint": "^3.13.1", 20 | "eslint-config-anf": "^0.4.4" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /outdated/authentication-with-expo-and-auth0/src/utils.js: -------------------------------------------------------------------------------- 1 | export function timeDifference(current, previous) { 2 | 3 | var msPerMinute = 60 * 1000; 4 | var msPerHour = msPerMinute * 60; 5 | var msPerDay = msPerHour * 24; 6 | var msPerMonth = msPerDay * 30; 7 | var msPerYear = msPerDay * 365; 8 | 9 | var elapsed = current - previous; 10 | 11 | if (elapsed < msPerMinute) { 12 | return Math.round(elapsed/1000) + ' sec ago'; 13 | } 14 | 15 | else if (elapsed < msPerHour) { 16 | return Math.round(elapsed/msPerMinute) + ' min ago'; 17 | } 18 | 19 | else if (elapsed < msPerDay ) { 20 | return Math.round(elapsed/msPerHour ) + ' h ago'; 21 | } 22 | 23 | else if (elapsed < msPerMonth) { 24 | return Math.round(elapsed/msPerDay) + ' days ago'; 25 | } 26 | 27 | else if (elapsed < msPerYear) { 28 | return Math.round(elapsed/msPerMonth) + ' mo ago'; 29 | } 30 | 31 | else { 32 | return Math.round(elapsed/msPerYear ) + ' years ago'; 33 | } 34 | } -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-apollo/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | *.iml 28 | .idea 29 | .gradle 30 | local.properties 31 | .expo 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | android/app/libs 42 | android/keystores/debug.keystore 43 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-apollo/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { ApolloProvider, createNetworkInterface, ApolloClient } from 'react-apollo' 3 | import ListPage from './src/ListPage' 4 | import { 5 | View, 6 | TextInput, 7 | Button, 8 | Image, 9 | Text, 10 | StyleSheet, 11 | TouchableHighlight 12 | } from 'react-native' 13 | 14 | // __SIMPLE_API_ENDPOINT_ looks similar to: `https://api.graph.cool/simple/v1/` 15 | const networkInterface = createNetworkInterface({ uri: '__SIMPLE_API_ENDPOINT_' }) 16 | const client = new ApolloClient({ networkInterface }) 17 | 18 | export default class App extends React.Component { 19 | 20 | render() { 21 | return ( 22 | 23 | 24 | 25 | ) 26 | } 27 | 28 | } 29 | 30 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-apollo/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-apollo/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "15.0.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-apollo-instagram-example", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "jest-expo": "^0.3.0", 7 | "react-native-scripts": "0.0.27", 8 | "react-test-renderer": "~15.4.1" 9 | }, 10 | "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", 11 | "scripts": { 12 | "start": "react-native-scripts start", 13 | "eject": "react-native-scripts eject", 14 | "android": "react-native-scripts android", 15 | "ios": "react-native-scripts ios", 16 | "test": "node node_modules/jest/bin/jest.js --watch" 17 | }, 18 | "jest": { 19 | "preset": "jest-expo" 20 | }, 21 | "dependencies": { 22 | "expo": "^15.1.0", 23 | "react": "~15.4.0", 24 | "react-apollo": "^1.2.0", 25 | "react-native": "0.42.3" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-expo"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source", "react-relay"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | .idea/ 5 | .DS_Store -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/.graphqlrc: -------------------------------------------------------------------------------- 1 | { 2 | "request": { 3 | "url": "__RELAY_API_ENDPOINT_", 4 | "headers": { 5 | "Authorization": "xxxxx" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "15.0.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/mutations/CreatePokemonMutation.js: -------------------------------------------------------------------------------- 1 | import Relay from 'react-relay' 2 | 3 | export default class CreatePokemonMutation extends Relay.Mutation { 4 | 5 | getMutation() { 6 | return Relay.QL`mutation {createPokemon}` 7 | } 8 | 9 | getVariables() { 10 | const {pokemonName, pokemonUrl} = this.props 11 | return { 12 | name: pokemonName, 13 | url: pokemonUrl 14 | } 15 | } 16 | 17 | getFatQuery() { 18 | return Relay.QL` 19 | fragment on CreatePokemonPayload { 20 | viewer { 21 | allPokemons 22 | } 23 | } 24 | ` 25 | } 26 | 27 | getConfigs() { 28 | return [{ 29 | type: 'RANGE_ADD', 30 | parentName: 'viewer', 31 | parentID: this.props.viewerId, 32 | connectionName: 'allPokemons', 33 | edgeName: 'edge', 34 | rangeBehaviors: { 35 | '': 'append' 36 | } 37 | }] 38 | } 39 | 40 | } -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/mutations/DeletePokemonMutation.js: -------------------------------------------------------------------------------- 1 | import Relay from 'react-relay' 2 | 3 | export default class DeletePokemonMutation extends Relay.Mutation { 4 | 5 | getMutation() { 6 | return Relay.QL`mutation { deletePokemon }` 7 | } 8 | 9 | getVariables() { 10 | return { 11 | id: this.props.pokemonId, 12 | } 13 | } 14 | 15 | getFatQuery() { 16 | return Relay.QL` 17 | fragment on DeletePokemonPayload { 18 | pokemon 19 | } 20 | ` 21 | } 22 | 23 | getConfigs() { 24 | return [{ 25 | type: 'NODE_DELETE', 26 | parentName: 'pokemon', 27 | connectionName: 'edge', 28 | deletedIDFieldName: 'deletedId' 29 | }] 30 | } 31 | 32 | } -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/mutations/UpdatePokemonMutation.js: -------------------------------------------------------------------------------- 1 | import Relay from 'react-relay' 2 | 3 | export default class UpdatePokemonMutation extends Relay.Mutation { 4 | 5 | getMutation() { 6 | return Relay.QL`mutation {updatePokemon}` 7 | } 8 | 9 | getVariables() { 10 | const {pokemonId, pokemonName, pokemonUrl} = this.props 11 | return { 12 | id: pokemonId, 13 | name: pokemonName, 14 | url: pokemonUrl 15 | } 16 | } 17 | 18 | getFatQuery() { 19 | return Relay.QL` 20 | fragment on UpdatePokemonPayload { 21 | pokemon 22 | } 23 | ` 24 | } 25 | 26 | getConfigs() { 27 | return [{ 28 | type: 'FIELDS_CHANGE', 29 | fieldIDs: { 30 | pokemon: this.props.pokemonId, 31 | } 32 | }] 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /outdated/quickstart-with-expo-and-relay-pokedex/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "babel-plugin-react-relay": "^0.10.0", 7 | "jest-expo": "^0.3.0", 8 | "react-native-scripts": "0.0.25", 9 | "react-test-renderer": "~15.4.1" 10 | }, 11 | "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", 12 | "scripts": { 13 | "start": "react-native-scripts start", 14 | "eject": "react-native-scripts eject", 15 | "android": "react-native-scripts android", 16 | "ios": "react-native-scripts ios", 17 | "test": "node node_modules/jest/bin/jest.js --watch" 18 | }, 19 | "jest": { 20 | "preset": "jest-expo" 21 | }, 22 | "dependencies": { 23 | "expo": "^15.1.0", 24 | "react": "~15.4.0", 25 | "react-native": "0.42.3", 26 | "react-navigation": "^1.0.0-beta.7", 27 | "react-relay": "^0.10.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | *.iml 28 | .idea 29 | .gradle 30 | local.properties 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | 37 | # BUCK 38 | buck-out/ 39 | \.buckd/ 40 | android/app/libs 41 | android/keystores/debug.keystore 42 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/java/com/reactnativeapolloinstagramexample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnativeapolloinstagramexample; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "ReactNativeApolloInstagramExample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/java/com/reactnativeapolloinstagramexample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnativeapolloinstagramexample; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | protected boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage() 27 | ); 28 | } 29 | }; 30 | 31 | @Override 32 | public ReactNativeHost getReactNativeHost() { 33 | return mReactNativeHost; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/subscriptions-with-apollo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ReactNativeApolloInstagramExample 3 | 4 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/react-native-graphql/593de434d40d4e72091f903fc77755336a836f35/outdated/subscriptions-with-apollo/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 6 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ReactNativeApolloInstagramExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/graphql.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema": { 3 | "request": { 4 | "url" : "https://dev.api.graph.cool/simple/v1/ciwf0xa0g0asn0136mdda06jl", 5 | "method" : "POST", 6 | "postIntrospectionQuery" : true 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/index.android.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native' 2 | import root from './src/root' 3 | 4 | AppRegistry.registerComponent('ReactNativeApolloInstagramExample', () => () => root) 5 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/index.ios.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native' 2 | import root from './src/root' 3 | 4 | AppRegistry.registerComponent('ReactNativeApolloInstagramExample', () => () => root) 5 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/ios/ReactNativeApolloInstagramExample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/ios/ReactNativeApolloInstagramExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/ios/ReactNativeApolloInstagramExample/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/ios/ReactNativeApolloInstagramExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeApolloInstagramExample", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "~15.3.1", 11 | "react-apollo": "^1.2.0", 12 | "react-native": "0.39.0", 13 | "subscriptions-transport-ws": "^0.6.0" 14 | }, 15 | "devDependencies": { 16 | "babel-jest": "17.0.2", 17 | "babel-preset-react-native": "1.9.0", 18 | "jest": "17.0.2", 19 | "jest-react-native": "17.0.2", 20 | "react-test-renderer": "~15.3.1" 21 | }, 22 | "jest": { 23 | "preset": "jest-react-native" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-apollo/src/root.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ApolloClient, { createNetworkInterface } from 'apollo-client' 3 | import { ApolloProvider } from 'react-apollo' 4 | import {SubscriptionClient, addGraphQLSubscriptions} from 'subscriptions-transport-ws'; 5 | import ListPage from './components/ListPage' 6 | 7 | // __SUBSCRIPTIONS_API_ENDPOINT_ looks similar to: `wss://subscriptions.graph.cool/v1/` 8 | const wsClient = new SubscriptionClient('__SUBSCRIPTIONS_API_ENDPOINT_') 9 | 10 | // __SIMPLE_API_ENDPOINT_ looks similar to: `https://api.graph.cool/simple/v1/` 11 | const networkInterface = createNetworkInterface({ 12 | uri: 'https://api.graph.__SIMPLE_API_ENDPOINT_', 13 | }) 14 | 15 | const networkInterfaceWithSubscriptions = addGraphQLSubscriptions( 16 | networkInterface, 17 | wsClient 18 | ) 19 | 20 | const client = new ApolloClient({ 21 | networkInterface: networkInterfaceWithSubscriptions, 22 | }) 23 | 24 | export default ( 25 | 26 | 27 | 28 | ) 29 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-expo"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | .idea 5 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "17.0.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /outdated/subscriptions-with-expo-and-apollo-chat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chat", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "jest-expo": "~1.0.1", 7 | "react-native-scripts": "0.0.30", 8 | "react-test-renderer": "16.0.0-alpha.6" 9 | }, 10 | "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", 11 | "scripts": { 12 | "start": "react-native-scripts start", 13 | "eject": "react-native-scripts eject", 14 | "android": "react-native-scripts android", 15 | "ios": "react-native-scripts ios", 16 | "test": "node node_modules/jest/bin/jest.js --watch" 17 | }, 18 | "jest": { 19 | "preset": "jest-expo" 20 | }, 21 | "dependencies": { 22 | "expo": "^17.0.0", 23 | "farmhash": "^1.2.1", 24 | "node-hashes": "^0.1.0", 25 | "react": "16.0.0-alpha.6", 26 | "react-apollo": "^1.2.0", 27 | "react-native": "^0.44.0", 28 | "react-native-gifted-chat": "^0.1.4", 29 | "sillyname": "^0.1.0", 30 | "subscriptions-transport-ws": "0.6.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /quickstart-with-apollo/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["babel-preset-expo"], 3 | "env": { 4 | "development": { 5 | "plugins": ["transform-react-jsx-source"] 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /quickstart-with-apollo/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /quickstart-with-apollo/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { StyleSheet, Text, View } from 'react-native' 3 | import { ApolloProvider } from 'react-apollo' 4 | import { ApolloClient, HttpLink, InMemoryCache } from 'apollo-client-preset' 5 | import ListPage from './components/ListPage' 6 | 7 | // __SIMPLE_API_ENDPOINT__ looks like: 'https://api.graph.cool/simple/v1/__SERVICE_ID__' 8 | const httpLink = new HttpLink({ uri: '__SIMPLE_API_ENDPOINT__' }) 9 | 10 | const client = new ApolloClient({ 11 | link: httpLink, 12 | cache: new InMemoryCache() 13 | }) 14 | 15 | export default class App extends React.Component { 16 | render() { 17 | return ( 18 | 19 | 20 | 21 | ) 22 | } 23 | } 24 | 25 | const styles = StyleSheet.create({ 26 | container: { 27 | flex: 1, 28 | backgroundColor: '#fff', 29 | alignItems: 'center', 30 | justifyContent: 'center', 31 | }, 32 | }) 33 | -------------------------------------------------------------------------------- /quickstart-with-apollo/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /quickstart-with-apollo/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "22.0.0" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /quickstart-with-apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "quickstart-with-expo", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "jest-expo": "^22.0.0", 7 | "react-native-scripts": "1.7.0", 8 | "react-test-renderer": "16.0.0-beta.5" 9 | }, 10 | "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js", 11 | "scripts": { 12 | "start": "react-native-scripts start", 13 | "eject": "react-native-scripts eject", 14 | "android": "react-native-scripts android", 15 | "ios": "react-native-scripts ios", 16 | "test": "node node_modules/jest/bin/jest.js --watch" 17 | }, 18 | "jest": { 19 | "preset": "jest-expo" 20 | }, 21 | "dependencies": { 22 | "apollo-client-preset": "^1.0.2", 23 | "expo": "^22.0.2", 24 | "graphql": "^0.11.7", 25 | "graphql-tag": "^2.5.0", 26 | "react": "16.0.0-beta.5", 27 | "react-apollo": "^2.0.1", 28 | "react-native": "^0.49.5" 29 | } 30 | } 31 | --------------------------------------------------------------------------------