├── .DS_Store ├── 1-YoutubeCloneApp ├── 1-YoutubeCloneApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 1-YoutubeCloneApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailTableViewCell.swift │ ├── DetailViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── Video.swift │ ├── VideoTableViewCell.swift │ └── ViewController.swift ├── AvSpeechSynthesizer ├── AvSpeechSynthesizer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── AvSpeechSynthesizer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── AwesomeApp ├── .DS_Store ├── AwesomeApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── AwesomeApp.xcscheme │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── AwesomeApp.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── AwesomeApp │ ├── App │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── Common │ │ ├── Constants.swift │ │ ├── Halper.swift │ │ └── Util.swift │ ├── Info.plist │ ├── Model │ │ ├── Characters │ │ │ ├── Comics.swift │ │ │ ├── Data.swift │ │ │ ├── Events.swift │ │ │ ├── Items.swift │ │ │ ├── Results.swift │ │ │ ├── RootModel.swift │ │ │ ├── Series.swift │ │ │ ├── Stories.swift │ │ │ ├── Thumbnail.swift │ │ │ └── Urls.swift │ │ └── Comics │ │ │ ├── Characters.swift │ │ │ ├── ComicsData.swift │ │ │ ├── ComicsModel.swift │ │ │ ├── ComicsResults.swift │ │ │ ├── Creators.swift │ │ │ ├── Dates.swift │ │ │ ├── Images.swift │ │ │ ├── Prices.swift │ │ │ ├── TextObjects.swift │ │ │ └── Variants.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── AwesomeApp.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ └── AwesomeApp.xcdatamodel │ │ │ └── contents │ ├── Services │ │ └── EndPoints.swift │ ├── View │ │ ├── Characters │ │ │ ├── CharacterTableViewCell.swift │ │ │ └── CharacterViewController.swift │ │ ├── Detail │ │ │ ├── DetailTableViewCell.swift │ │ │ └── DetailViewController.swift │ │ └── Storyboard │ │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ └── ViewModel │ │ └── CharacterViewModel.swift ├── AwesomeAppTests │ ├── AwesomeAppTests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── AuthenticationInterceptor.swift │ │ ├── CachedResponseHandler.swift │ │ ├── Combine.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Pods-AwesomeApp.xcscheme │ │ ├── Pods-AwesomeAppTests.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.debug.xcconfig │ ├── Alamofire.modulemap │ └── Alamofire.release.xcconfig │ ├── Pods-AwesomeApp │ ├── Pods-AwesomeApp-Info.plist │ ├── Pods-AwesomeApp-acknowledgements.markdown │ ├── Pods-AwesomeApp-acknowledgements.plist │ ├── Pods-AwesomeApp-dummy.m │ ├── Pods-AwesomeApp-frameworks-Debug-input-files.xcfilelist │ ├── Pods-AwesomeApp-frameworks-Debug-output-files.xcfilelist │ ├── Pods-AwesomeApp-frameworks-Release-input-files.xcfilelist │ ├── Pods-AwesomeApp-frameworks-Release-output-files.xcfilelist │ ├── Pods-AwesomeApp-frameworks.sh │ ├── Pods-AwesomeApp-umbrella.h │ ├── Pods-AwesomeApp.debug.xcconfig │ ├── Pods-AwesomeApp.modulemap │ └── Pods-AwesomeApp.release.xcconfig │ └── Pods-AwesomeAppTests │ ├── Pods-AwesomeAppTests-Info.plist │ ├── Pods-AwesomeAppTests-acknowledgements.markdown │ ├── Pods-AwesomeAppTests-acknowledgements.plist │ ├── Pods-AwesomeAppTests-dummy.m │ ├── Pods-AwesomeAppTests-umbrella.h │ ├── Pods-AwesomeAppTests.debug.xcconfig │ ├── Pods-AwesomeAppTests.modulemap │ └── Pods-AwesomeAppTests.release.xcconfig ├── CeviriyleOgren ├── .DS_Store ├── CeviriyleOgren.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── CeviriyleOgren.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── CeviriyleOgren │ ├── Assets.xcassets │ │ ├── 0.imageset │ │ │ ├── 0.jpg │ │ │ └── Contents.json │ │ ├── 1.imageset │ │ │ ├── 1.jpg │ │ │ └── Contents.json │ │ ├── 2.imageset │ │ │ ├── 2.jpg │ │ │ └── Contents.json │ │ ├── 3.imageset │ │ │ ├── 3.jpg │ │ │ └── Contents.json │ │ ├── 4.imageset │ │ │ ├── 4.jpg │ │ │ └── Contents.json │ │ ├── 5.imageset │ │ │ ├── 5.jpg │ │ │ └── Contents.json │ │ ├── 6.imageset │ │ │ ├── 6.jpg │ │ │ └── Contents.json │ │ ├── 7.imageset │ │ │ ├── 7.jpg │ │ │ └── Contents.json │ │ ├── 8.imageset │ │ │ ├── 8.jpg │ │ │ └── Contents.json │ │ ├── 9.imageset │ │ │ ├── 9.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── ali.imageset │ │ │ ├── Contents.json │ │ │ └── ali.jpeg │ ├── CeviriyleOgren.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CeviriyleOgren.xcdatamodel │ │ │ └── contents │ ├── Controllers │ │ ├── BookTableViewCell.swift │ │ ├── BookVC.swift │ │ ├── ChapterTableViewCell.swift │ │ ├── ChapterVC.swift │ │ ├── ParagraphTableViewCell.swift │ │ ├── ParagraphVC.swift │ │ ├── StoryTableViewCell.swift │ │ └── ViewController.swift │ ├── Delegates │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Models │ │ └── ItemModel.swift │ ├── Services │ │ └── DataService.swift │ └── Views │ │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard ├── Podfile ├── Podfile.lock └── Pods │ ├── Firebase │ ├── CoreOnly │ │ ├── CHANGELOG.md │ │ ├── NOTICES │ │ ├── README.md │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md │ ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FIRAnalyticsConnector.framework │ │ ├── FIRAnalyticsConnector │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap │ ├── FirebaseAuth │ ├── Firebase │ │ └── Auth │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ └── Source │ │ │ ├── Auth │ │ │ ├── FIRActionCodeSettings.m │ │ │ ├── FIRAuth.m │ │ │ ├── FIRAuthDataResult.m │ │ │ ├── FIRAuthDataResult_Internal.h │ │ │ ├── FIRAuthDispatcher.h │ │ │ ├── FIRAuthDispatcher.m │ │ │ ├── FIRAuthGlobalWorkQueue.h │ │ │ ├── FIRAuthGlobalWorkQueue.m │ │ │ ├── FIRAuthOperationType.h │ │ │ ├── FIRAuthSerialTaskQueue.h │ │ │ ├── FIRAuthSerialTaskQueue.m │ │ │ ├── FIRAuthSettings.m │ │ │ ├── FIRAuthTokenResult.m │ │ │ ├── FIRAuthTokenResult_Internal.h │ │ │ └── FIRAuth_Internal.h │ │ │ ├── AuthProvider │ │ │ ├── Email │ │ │ │ ├── FIREmailAuthProvider.m │ │ │ │ ├── FIREmailPasswordAuthCredential.h │ │ │ │ └── FIREmailPasswordAuthCredential.m │ │ │ ├── FIRAuthCredential.m │ │ │ ├── FIRAuthCredential_Internal.h │ │ │ ├── FIRAuthProvider.m │ │ │ ├── Facebook │ │ │ │ ├── FIRFacebookAuthCredential.h │ │ │ │ ├── FIRFacebookAuthCredential.m │ │ │ │ └── FIRFacebookAuthProvider.m │ │ │ ├── GameCenter │ │ │ │ ├── FIRGameCenterAuthCredential.h │ │ │ │ ├── FIRGameCenterAuthCredential.m │ │ │ │ └── FIRGameCenterAuthProvider.m │ │ │ ├── GitHub │ │ │ │ ├── FIRGitHubAuthCredential.h │ │ │ │ ├── FIRGitHubAuthCredential.m │ │ │ │ └── FIRGitHubAuthProvider.m │ │ │ ├── Google │ │ │ │ ├── FIRGoogleAuthCredential.h │ │ │ │ ├── FIRGoogleAuthCredential.m │ │ │ │ └── FIRGoogleAuthProvider.m │ │ │ ├── OAuth │ │ │ │ ├── FIROAuthCredential.m │ │ │ │ ├── FIROAuthCredential_Internal.h │ │ │ │ └── FIROAuthProvider.m │ │ │ ├── Phone │ │ │ │ ├── FIRPhoneAuthCredential.m │ │ │ │ ├── FIRPhoneAuthCredential_Internal.h │ │ │ │ └── FIRPhoneAuthProvider.m │ │ │ └── Twitter │ │ │ │ ├── FIRTwitterAuthCredential.h │ │ │ │ ├── FIRTwitterAuthCredential.m │ │ │ │ └── FIRTwitterAuthProvider.m │ │ │ ├── Backend │ │ │ ├── FIRAuthBackend.h │ │ │ ├── FIRAuthBackend.m │ │ │ ├── FIRAuthRPCRequest.h │ │ │ ├── FIRAuthRPCResponse.h │ │ │ ├── FIRAuthRequestConfiguration.h │ │ │ ├── FIRAuthRequestConfiguration.m │ │ │ ├── FIRIdentityToolkitRequest.h │ │ │ ├── FIRIdentityToolkitRequest.m │ │ │ └── RPC │ │ │ │ ├── FIRCreateAuthURIRequest.h │ │ │ │ ├── FIRCreateAuthURIRequest.m │ │ │ │ ├── FIRCreateAuthURIResponse.h │ │ │ │ ├── FIRCreateAuthURIResponse.m │ │ │ │ ├── FIRDeleteAccountRequest.h │ │ │ │ ├── FIRDeleteAccountRequest.m │ │ │ │ ├── FIRDeleteAccountResponse.h │ │ │ │ ├── FIRDeleteAccountResponse.m │ │ │ │ ├── FIREmailLinkSignInRequest.h │ │ │ │ ├── FIREmailLinkSignInRequest.m │ │ │ │ ├── FIREmailLinkSignInResponse.h │ │ │ │ ├── FIREmailLinkSignInResponse.m │ │ │ │ ├── FIRGetAccountInfoRequest.h │ │ │ │ ├── FIRGetAccountInfoRequest.m │ │ │ │ ├── FIRGetAccountInfoResponse.h │ │ │ │ ├── FIRGetAccountInfoResponse.m │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.h │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.m │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.h │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.m │ │ │ │ ├── FIRGetProjectConfigRequest.h │ │ │ │ ├── FIRGetProjectConfigRequest.m │ │ │ │ ├── FIRGetProjectConfigResponse.h │ │ │ │ ├── FIRGetProjectConfigResponse.m │ │ │ │ ├── FIRResetPasswordRequest.h │ │ │ │ ├── FIRResetPasswordRequest.m │ │ │ │ ├── FIRResetPasswordResponse.h │ │ │ │ ├── FIRResetPasswordResponse.m │ │ │ │ ├── FIRSecureTokenRequest.h │ │ │ │ ├── FIRSecureTokenRequest.m │ │ │ │ ├── FIRSecureTokenResponse.h │ │ │ │ ├── FIRSecureTokenResponse.m │ │ │ │ ├── FIRSendVerificationCodeRequest.h │ │ │ │ ├── FIRSendVerificationCodeRequest.m │ │ │ │ ├── FIRSendVerificationCodeResponse.h │ │ │ │ ├── FIRSendVerificationCodeResponse.m │ │ │ │ ├── FIRSetAccountInfoRequest.h │ │ │ │ ├── FIRSetAccountInfoRequest.m │ │ │ │ ├── FIRSetAccountInfoResponse.h │ │ │ │ ├── FIRSetAccountInfoResponse.m │ │ │ │ ├── FIRSignInWithGameCenterRequest.h │ │ │ │ ├── FIRSignInWithGameCenterRequest.m │ │ │ │ ├── FIRSignInWithGameCenterResponse.h │ │ │ │ ├── FIRSignInWithGameCenterResponse.m │ │ │ │ ├── FIRSignUpNewUserRequest.h │ │ │ │ ├── FIRSignUpNewUserRequest.m │ │ │ │ ├── FIRSignUpNewUserResponse.h │ │ │ │ ├── FIRSignUpNewUserResponse.m │ │ │ │ ├── FIRVerifyAssertionRequest.h │ │ │ │ ├── FIRVerifyAssertionRequest.m │ │ │ │ ├── FIRVerifyAssertionResponse.h │ │ │ │ ├── FIRVerifyAssertionResponse.m │ │ │ │ ├── FIRVerifyClientRequest.h │ │ │ │ ├── FIRVerifyClientRequest.m │ │ │ │ ├── FIRVerifyClientResponse.h │ │ │ │ ├── FIRVerifyClientResponse.m │ │ │ │ ├── FIRVerifyCustomTokenRequest.h │ │ │ │ ├── FIRVerifyCustomTokenRequest.m │ │ │ │ ├── FIRVerifyCustomTokenResponse.h │ │ │ │ ├── FIRVerifyCustomTokenResponse.m │ │ │ │ ├── FIRVerifyPasswordRequest.h │ │ │ │ ├── FIRVerifyPasswordRequest.m │ │ │ │ ├── FIRVerifyPasswordResponse.h │ │ │ │ ├── FIRVerifyPasswordResponse.m │ │ │ │ ├── FIRVerifyPhoneNumberRequest.h │ │ │ │ ├── FIRVerifyPhoneNumberRequest.m │ │ │ │ ├── FIRVerifyPhoneNumberResponse.h │ │ │ │ └── FIRVerifyPhoneNumberResponse.m │ │ │ ├── FirebaseAuthVersion.m │ │ │ ├── Public │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRFederatedAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIROAuthCredential.h │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ │ ├── Storage │ │ │ ├── FIRAuthKeychainServices.h │ │ │ ├── FIRAuthKeychainServices.m │ │ │ ├── FIRAuthUserDefaults.h │ │ │ └── FIRAuthUserDefaults.m │ │ │ ├── SystemService │ │ │ ├── FIRAuthAPNSToken.h │ │ │ ├── FIRAuthAPNSToken.m │ │ │ ├── FIRAuthAPNSTokenManager.h │ │ │ ├── FIRAuthAPNSTokenManager.m │ │ │ ├── FIRAuthAppCredential.h │ │ │ ├── FIRAuthAppCredential.m │ │ │ ├── FIRAuthAppCredentialManager.h │ │ │ ├── FIRAuthAppCredentialManager.m │ │ │ ├── FIRAuthNotificationManager.h │ │ │ ├── FIRAuthNotificationManager.m │ │ │ ├── FIRAuthStoredUserManager.h │ │ │ ├── FIRAuthStoredUserManager.m │ │ │ ├── FIRSecureTokenService.h │ │ │ └── FIRSecureTokenService.m │ │ │ ├── User │ │ │ ├── FIRAdditionalUserInfo.m │ │ │ ├── FIRAdditionalUserInfo_Internal.h │ │ │ ├── FIRUser.m │ │ │ ├── FIRUserInfoImpl.h │ │ │ ├── FIRUserInfoImpl.m │ │ │ ├── FIRUserMetadata.m │ │ │ ├── FIRUserMetadata_Internal.h │ │ │ └── FIRUser_Internal.h │ │ │ └── Utilities │ │ │ ├── FIRAuthDefaultUIDelegate.h │ │ │ ├── FIRAuthDefaultUIDelegate.m │ │ │ ├── FIRAuthErrorUtils.h │ │ │ ├── FIRAuthErrorUtils.m │ │ │ ├── FIRAuthExceptionUtils.h │ │ │ ├── FIRAuthExceptionUtils.m │ │ │ ├── FIRAuthInternalErrors.h │ │ │ ├── FIRAuthURLPresenter.h │ │ │ ├── FIRAuthURLPresenter.m │ │ │ ├── FIRAuthWebUtils.h │ │ │ ├── FIRAuthWebUtils.m │ │ │ ├── FIRAuthWebView.h │ │ │ ├── FIRAuthWebView.m │ │ │ ├── FIRAuthWebViewController.h │ │ │ ├── FIRAuthWebViewController.m │ │ │ ├── NSData+FIRBase64.h │ │ │ └── NSData+FIRBase64.m │ ├── LICENSE │ └── README.md │ ├── FirebaseAuthInterop │ ├── Interop │ │ └── Auth │ │ │ └── Public │ │ │ └── FIRAuthInterop.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.h │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ └── FIROptionsInternal.h │ │ │ └── Public │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── firebasecore.nanopb.c │ │ │ └── firebasecore.nanopb.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCoreDiagnosticsInterop │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md │ ├── FirebaseDatabase │ ├── Firebase │ │ └── Database │ │ │ ├── Api │ │ │ ├── FIRDataSnapshot.m │ │ │ ├── FIRDatabase.m │ │ │ ├── FIRDatabaseComponent.h │ │ │ ├── FIRDatabaseComponent.m │ │ │ ├── FIRDatabaseConfig.h │ │ │ ├── FIRDatabaseConfig.m │ │ │ ├── FIRDatabaseQuery.m │ │ │ ├── FIRMutableData.m │ │ │ ├── FIRServerValue.m │ │ │ ├── FIRTransactionResult.m │ │ │ └── Private │ │ │ │ ├── FIRDataSnapshot_Private.h │ │ │ │ ├── FIRDatabaseQuery_Private.h │ │ │ │ ├── FIRDatabaseReference_Private.h │ │ │ │ ├── FIRDatabase_Private.h │ │ │ │ ├── FIRMutableData_Private.h │ │ │ │ ├── FIRTransactionResult_Private.h │ │ │ │ └── FTypedefs_Private.h │ │ │ ├── Constants │ │ │ ├── FConstants.h │ │ │ └── FConstants.m │ │ │ ├── Core │ │ │ ├── FCompoundHash.h │ │ │ ├── FCompoundHash.m │ │ │ ├── FListenProvider.h │ │ │ ├── FListenProvider.m │ │ │ ├── FPersistentConnection.h │ │ │ ├── FPersistentConnection.m │ │ │ ├── FQueryParams.h │ │ │ ├── FQueryParams.m │ │ │ ├── FQuerySpec.h │ │ │ ├── FQuerySpec.m │ │ │ ├── FRangeMerge.h │ │ │ ├── FRangeMerge.m │ │ │ ├── FRepo.h │ │ │ ├── FRepo.m │ │ │ ├── FRepoInfo.h │ │ │ ├── FRepoInfo.m │ │ │ ├── FRepoManager.h │ │ │ ├── FRepoManager.m │ │ │ ├── FRepo_Private.h │ │ │ ├── FServerValues.h │ │ │ ├── FServerValues.m │ │ │ ├── FSnapshotHolder.h │ │ │ ├── FSnapshotHolder.m │ │ │ ├── FSparseSnapshotTree.h │ │ │ ├── FSparseSnapshotTree.m │ │ │ ├── FSyncPoint.h │ │ │ ├── FSyncPoint.m │ │ │ ├── FSyncTree.h │ │ │ ├── FSyncTree.m │ │ │ ├── FWriteRecord.h │ │ │ ├── FWriteRecord.m │ │ │ ├── FWriteTree.h │ │ │ ├── FWriteTree.m │ │ │ ├── FWriteTreeRef.h │ │ │ ├── FWriteTreeRef.m │ │ │ ├── Operation │ │ │ │ ├── FAckUserWrite.h │ │ │ │ ├── FAckUserWrite.m │ │ │ │ ├── FMerge.h │ │ │ │ ├── FMerge.m │ │ │ │ ├── FOperation.h │ │ │ │ ├── FOperationSource.h │ │ │ │ ├── FOperationSource.m │ │ │ │ ├── FOverwrite.h │ │ │ │ └── FOverwrite.m │ │ │ ├── Utilities │ │ │ │ ├── FIRRetryHelper.h │ │ │ │ ├── FIRRetryHelper.m │ │ │ │ ├── FImmutableTree.h │ │ │ │ ├── FImmutableTree.m │ │ │ │ ├── FPath.h │ │ │ │ ├── FPath.m │ │ │ │ ├── FTree.h │ │ │ │ ├── FTree.m │ │ │ │ ├── FTreeNode.h │ │ │ │ └── FTreeNode.m │ │ │ └── View │ │ │ │ ├── FCacheNode.h │ │ │ │ ├── FCacheNode.m │ │ │ │ ├── FCancelEvent.h │ │ │ │ ├── FCancelEvent.m │ │ │ │ ├── FChange.h │ │ │ │ ├── FChange.m │ │ │ │ ├── FChildEventRegistration.h │ │ │ │ ├── FChildEventRegistration.m │ │ │ │ ├── FDataEvent.h │ │ │ │ ├── FDataEvent.m │ │ │ │ ├── FEvent.h │ │ │ │ ├── FEventRaiser.h │ │ │ │ ├── FEventRaiser.m │ │ │ │ ├── FEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.m │ │ │ │ ├── FValueEventRegistration.h │ │ │ │ ├── FValueEventRegistration.m │ │ │ │ ├── FView.h │ │ │ │ ├── FView.m │ │ │ │ ├── FViewCache.h │ │ │ │ ├── FViewCache.m │ │ │ │ └── Filter │ │ │ │ ├── FChildChangeAccumulator.h │ │ │ │ ├── FChildChangeAccumulator.m │ │ │ │ ├── FCompleteChildSource.h │ │ │ │ ├── FIndexedFilter.h │ │ │ │ ├── FIndexedFilter.m │ │ │ │ ├── FLimitedFilter.h │ │ │ │ ├── FLimitedFilter.m │ │ │ │ └── FNodeFilter.h │ │ │ ├── FClock.h │ │ │ ├── FClock.m │ │ │ ├── FEventGenerator.h │ │ │ ├── FEventGenerator.m │ │ │ ├── FIRDatabaseConfig_Private.h │ │ │ ├── FIRDatabaseReference.m │ │ │ ├── FIndex.h │ │ │ ├── FIndex.m │ │ │ ├── FKeyIndex.h │ │ │ ├── FKeyIndex.m │ │ │ ├── FListenComplete.h │ │ │ ├── FListenComplete.m │ │ │ ├── FMaxNode.h │ │ │ ├── FMaxNode.m │ │ │ ├── FNamedNode.h │ │ │ ├── FNamedNode.m │ │ │ ├── FPathIndex.h │ │ │ ├── FPathIndex.m │ │ │ ├── FPriorityIndex.h │ │ │ ├── FPriorityIndex.m │ │ │ ├── FRangedFilter.h │ │ │ ├── FRangedFilter.m │ │ │ ├── FTransformedEnumerator.h │ │ │ ├── FTransformedEnumerator.m │ │ │ ├── FValueIndex.h │ │ │ ├── FValueIndex.m │ │ │ ├── FViewProcessor.h │ │ │ ├── FViewProcessor.m │ │ │ ├── FViewProcessorResult.h │ │ │ ├── FViewProcessorResult.m │ │ │ ├── Login │ │ │ ├── FAuthTokenProvider.h │ │ │ ├── FAuthTokenProvider.m │ │ │ ├── FIRNoopAuthTokenProvider.h │ │ │ └── FIRNoopAuthTokenProvider.m │ │ │ ├── Persistence │ │ │ ├── FCachePolicy.h │ │ │ ├── FCachePolicy.m │ │ │ ├── FLevelDBStorageEngine.h │ │ │ ├── FLevelDBStorageEngine.m │ │ │ ├── FPendingPut.h │ │ │ ├── FPendingPut.m │ │ │ ├── FPersistenceManager.h │ │ │ ├── FPersistenceManager.m │ │ │ ├── FPruneForest.h │ │ │ ├── FPruneForest.m │ │ │ ├── FStorageEngine.h │ │ │ ├── FTrackedQuery.h │ │ │ ├── FTrackedQuery.m │ │ │ ├── FTrackedQueryManager.h │ │ │ └── FTrackedQueryManager.m │ │ │ ├── Public │ │ │ ├── FIRDataEventType.h │ │ │ ├── FIRDataSnapshot.h │ │ │ ├── FIRDatabase.h │ │ │ ├── FIRDatabaseQuery.h │ │ │ ├── FIRDatabaseReference.h │ │ │ ├── FIRMutableData.h │ │ │ ├── FIRServerValue.h │ │ │ ├── FIRTransactionResult.h │ │ │ └── FirebaseDatabase.h │ │ │ ├── Realtime │ │ │ ├── FConnection.h │ │ │ ├── FConnection.m │ │ │ ├── FWebSocketConnection.h │ │ │ └── FWebSocketConnection.m │ │ │ ├── Snapshot │ │ │ ├── FChildrenNode.h │ │ │ ├── FChildrenNode.m │ │ │ ├── FCompoundWrite.h │ │ │ ├── FCompoundWrite.m │ │ │ ├── FEmptyNode.h │ │ │ ├── FEmptyNode.m │ │ │ ├── FIndexedNode.h │ │ │ ├── FIndexedNode.m │ │ │ ├── FLeafNode.h │ │ │ ├── FLeafNode.m │ │ │ ├── FNode.h │ │ │ ├── FSnapshotUtilities.h │ │ │ └── FSnapshotUtilities.m │ │ │ ├── Utilities │ │ │ ├── FAtomicNumber.h │ │ │ ├── FAtomicNumber.m │ │ │ ├── FEventEmitter.h │ │ │ ├── FEventEmitter.m │ │ │ ├── FNextPushId.h │ │ │ ├── FNextPushId.m │ │ │ ├── FParsedUrl.h │ │ │ ├── FParsedUrl.m │ │ │ ├── FStringUtilities.h │ │ │ ├── FStringUtilities.m │ │ │ ├── FTypedefs.h │ │ │ ├── FUtilities.h │ │ │ ├── FUtilities.m │ │ │ ├── FValidation.h │ │ │ ├── FValidation.m │ │ │ └── Tuples │ │ │ │ ├── FTupleBoolBlock.h │ │ │ │ ├── FTupleBoolBlock.m │ │ │ │ ├── FTupleCallbackStatus.h │ │ │ │ ├── FTupleCallbackStatus.m │ │ │ │ ├── FTupleFirebase.h │ │ │ │ ├── FTupleFirebase.m │ │ │ │ ├── FTupleNodePath.h │ │ │ │ ├── FTupleNodePath.m │ │ │ │ ├── FTupleObjectNode.h │ │ │ │ ├── FTupleObjectNode.m │ │ │ │ ├── FTupleObjects.h │ │ │ │ ├── FTupleObjects.m │ │ │ │ ├── FTupleOnDisconnect.h │ │ │ │ ├── FTupleOnDisconnect.m │ │ │ │ ├── FTuplePathValue.h │ │ │ │ ├── FTuplePathValue.m │ │ │ │ ├── FTupleRemovedQueriesEvents.h │ │ │ │ ├── FTupleRemovedQueriesEvents.m │ │ │ │ ├── FTupleSetIdPath.h │ │ │ │ ├── FTupleSetIdPath.m │ │ │ │ ├── FTupleStringNode.h │ │ │ │ ├── FTupleStringNode.m │ │ │ │ ├── FTupleTSN.h │ │ │ │ ├── FTupleTSN.m │ │ │ │ ├── FTupleTransaction.h │ │ │ │ ├── FTupleTransaction.m │ │ │ │ ├── FTupleUserCallback.h │ │ │ │ └── FTupleUserCallback.m │ │ │ └── third_party │ │ │ ├── FImmutableSortedDictionary │ │ │ └── FImmutableSortedDictionary │ │ │ │ ├── FArraySortedDictionary.h │ │ │ │ ├── FArraySortedDictionary.m │ │ │ │ ├── FImmutableSortedDictionary.h │ │ │ │ ├── FImmutableSortedDictionary.m │ │ │ │ ├── FImmutableSortedSet.h │ │ │ │ ├── FImmutableSortedSet.m │ │ │ │ ├── FLLRBEmptyNode.h │ │ │ │ ├── FLLRBEmptyNode.m │ │ │ │ ├── FLLRBNode.h │ │ │ │ ├── FLLRBValueNode.h │ │ │ │ ├── FLLRBValueNode.m │ │ │ │ ├── FTreeSortedDictionary.h │ │ │ │ ├── FTreeSortedDictionary.m │ │ │ │ ├── FTreeSortedDictionaryEnumerator.h │ │ │ │ └── FTreeSortedDictionaryEnumerator.m │ │ │ ├── SocketRocket │ │ │ ├── FSRWebSocket.h │ │ │ ├── FSRWebSocket.m │ │ │ ├── NSData+SRB64Additions.h │ │ │ ├── NSData+SRB64Additions.m │ │ │ ├── fbase64.c │ │ │ └── fbase64.h │ │ │ └── Wrap-leveldb │ │ │ ├── APLevelDB.h │ │ │ └── APLevelDB.mm │ ├── LICENSE │ └── README.md │ ├── FirebaseInstallations │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ ├── Errors │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ └── FIRInstallationsHTTPError.m │ │ │ ├── FIRInstallations.m │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ ├── FIRInstallationsItem.h │ │ │ ├── FIRInstallationsItem.m │ │ │ ├── FIRInstallationsLogger.h │ │ │ ├── FIRInstallationsLogger.m │ │ │ ├── FIRInstallationsVersion.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ ├── Public │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ ├── FIRInstallationsVersion.h │ │ │ └── FirebaseInstallations.h │ │ │ └── SecureStorage │ │ │ ├── FIRInstallationsKeychainUtils.h │ │ │ ├── FIRInstallationsKeychainUtils.m │ │ │ ├── FIRSecureStorage.h │ │ │ └── FIRSecureStorage.m │ ├── LICENSE │ └── README.md │ ├── FirebaseInstanceID │ ├── Firebase │ │ └── InstanceID │ │ │ ├── FIRIMessageCode.h │ │ │ ├── FIRInstanceID+Private.m │ │ │ ├── FIRInstanceID.m │ │ │ ├── FIRInstanceIDAPNSInfo.h │ │ │ ├── FIRInstanceIDAPNSInfo.m │ │ │ ├── FIRInstanceIDAuthKeyChain.h │ │ │ ├── FIRInstanceIDAuthKeyChain.m │ │ │ ├── FIRInstanceIDAuthService.h │ │ │ ├── FIRInstanceIDAuthService.m │ │ │ ├── FIRInstanceIDBackupExcludedPlist.h │ │ │ ├── FIRInstanceIDBackupExcludedPlist.m │ │ │ ├── FIRInstanceIDCheckinPreferences+Internal.h │ │ │ ├── FIRInstanceIDCheckinPreferences+Internal.m │ │ │ ├── FIRInstanceIDCheckinPreferences.m │ │ │ ├── FIRInstanceIDCheckinPreferences_Private.h │ │ │ ├── FIRInstanceIDCheckinService.h │ │ │ ├── FIRInstanceIDCheckinService.m │ │ │ ├── FIRInstanceIDCheckinStore.h │ │ │ ├── FIRInstanceIDCheckinStore.m │ │ │ ├── FIRInstanceIDCombinedHandler.h │ │ │ ├── FIRInstanceIDCombinedHandler.m │ │ │ ├── FIRInstanceIDConstants.h │ │ │ ├── FIRInstanceIDConstants.m │ │ │ ├── FIRInstanceIDDefines.h │ │ │ ├── FIRInstanceIDKeychain.h │ │ │ ├── FIRInstanceIDKeychain.m │ │ │ ├── FIRInstanceIDLogger.h │ │ │ ├── FIRInstanceIDLogger.m │ │ │ ├── FIRInstanceIDStore.h │ │ │ ├── FIRInstanceIDStore.m │ │ │ ├── FIRInstanceIDStringEncoding.h │ │ │ ├── FIRInstanceIDStringEncoding.m │ │ │ ├── FIRInstanceIDTokenDeleteOperation.h │ │ │ ├── FIRInstanceIDTokenDeleteOperation.m │ │ │ ├── FIRInstanceIDTokenFetchOperation.h │ │ │ ├── FIRInstanceIDTokenFetchOperation.m │ │ │ ├── FIRInstanceIDTokenInfo.h │ │ │ ├── FIRInstanceIDTokenInfo.m │ │ │ ├── FIRInstanceIDTokenManager.h │ │ │ ├── FIRInstanceIDTokenManager.m │ │ │ ├── FIRInstanceIDTokenOperation+Private.h │ │ │ ├── FIRInstanceIDTokenOperation.h │ │ │ ├── FIRInstanceIDTokenOperation.m │ │ │ ├── FIRInstanceIDTokenStore.h │ │ │ ├── FIRInstanceIDTokenStore.m │ │ │ ├── FIRInstanceIDURLQueryItem.h │ │ │ ├── FIRInstanceIDURLQueryItem.m │ │ │ ├── FIRInstanceIDUtilities.h │ │ │ ├── FIRInstanceIDUtilities.m │ │ │ ├── FIRInstanceIDVersionUtilities.h │ │ │ ├── FIRInstanceIDVersionUtilities.m │ │ │ ├── NSError+FIRInstanceID.h │ │ │ ├── NSError+FIRInstanceID.m │ │ │ ├── Private │ │ │ ├── FIRInstanceID+Private.h │ │ │ ├── FIRInstanceIDCheckinPreferences.h │ │ │ └── FIRInstanceID_Private.h │ │ │ └── Public │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ ├── LICENSE │ └── README.md │ ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.h │ │ └── GTMSessionUploadFetcher.m │ ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ └── Modules │ │ └── module.modulemap │ ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCORDataFuture.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORStorage.m │ │ │ ├── GDTCORStoredEvent.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── GDTCORUploadPackage.m │ │ │ ├── Private │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORStorage.h │ │ │ ├── GDTCORStorage_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ ├── GDTCORUploadCoordinator.h │ │ │ └── GDTCORUploadPackage_Private.h │ │ │ └── Public │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCORDataFuture.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORPrioritizer.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStoredEvent.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ ├── GDTCORUploadPackage.h │ │ │ ├── GDTCORUploader.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md │ ├── GoogleDataTransportCCTSupport │ ├── GoogleDataTransportCCTSupport │ │ └── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTPrioritizer.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTFLLPrioritizer.m │ │ │ ├── GDTFLLUploader.m │ │ │ ├── Private │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ ├── GDTCCTPrioritizer.h │ │ │ ├── GDTCCTUploader.h │ │ │ ├── GDTFLLPrioritizer.h │ │ │ └── GDTFLLUploader.h │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── cct.nanopb.c │ │ │ └── cct.nanopb.h │ ├── LICENSE │ └── README.md │ ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ └── GULApplication.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Public │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ └── GULSecureCoding.h │ │ │ └── third_party │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── LICENSE │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.h │ │ │ └── GULNSData+zlib.m │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ ├── SceneDelegateSwizzler │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ └── README.md │ ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FIRCoreDiagnosticsData.h │ │ └── FIRCoreDiagnosticsInterop.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseAuth.xcscheme │ │ ├── FirebaseAuthInterop.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ ├── FirebaseCoreDiagnosticsInterop.xcscheme │ │ ├── FirebaseDatabase.xcscheme │ │ ├── FirebaseInstallations.xcscheme │ │ ├── FirebaseInstanceID.xcscheme │ │ ├── GTMSessionFetcher.xcscheme │ │ ├── GoogleAppMeasurement.xcscheme │ │ ├── GoogleDataTransport.xcscheme │ │ ├── GoogleDataTransportCCTSupport.xcscheme │ │ ├── GoogleUtilities.xcscheme │ │ ├── Pods-CeviriyleOgren.xcscheme │ │ ├── PromisesObjC.xcscheme │ │ ├── leveldb-library.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist │ ├── PromisesObjC │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FBLPromises │ │ ├── FBLPromise+All.m │ │ ├── FBLPromise+Always.m │ │ ├── FBLPromise+Any.m │ │ ├── FBLPromise+Async.m │ │ ├── FBLPromise+Await.m │ │ ├── FBLPromise+Catch.m │ │ ├── FBLPromise+Delay.m │ │ ├── FBLPromise+Do.m │ │ ├── FBLPromise+Race.m │ │ ├── FBLPromise+Recover.m │ │ ├── FBLPromise+Reduce.m │ │ ├── FBLPromise+Retry.m │ │ ├── FBLPromise+Testing.m │ │ ├── FBLPromise+Then.m │ │ ├── FBLPromise+Timeout.m │ │ ├── FBLPromise+Validate.m │ │ ├── FBLPromise+Wrap.m │ │ ├── FBLPromise.m │ │ ├── FBLPromiseError.m │ │ └── include │ │ ├── FBLPromise+All.h │ │ ├── FBLPromise+Always.h │ │ ├── FBLPromise+Any.h │ │ ├── FBLPromise+Async.h │ │ ├── FBLPromise+Await.h │ │ ├── FBLPromise+Catch.h │ │ ├── FBLPromise+Delay.h │ │ ├── FBLPromise+Do.h │ │ ├── FBLPromise+Race.h │ │ ├── FBLPromise+Recover.h │ │ ├── FBLPromise+Reduce.h │ │ ├── FBLPromise+Retry.h │ │ ├── FBLPromise+Testing.h │ │ ├── FBLPromise+Then.h │ │ ├── FBLPromise+Timeout.h │ │ ├── FBLPromise+Validate.h │ │ ├── FBLPromise+Wrap.h │ │ ├── FBLPromise.h │ │ ├── FBLPromiseError.h │ │ ├── FBLPromisePrivate.h │ │ └── FBLPromises.h │ ├── Target Support Files │ ├── Firebase │ │ ├── Firebase.debug.xcconfig │ │ └── Firebase.release.xcconfig │ ├── FirebaseAnalytics │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ └── FirebaseAnalytics.release.xcconfig │ ├── FirebaseAuth │ │ ├── FirebaseAuth-Info.plist │ │ ├── FirebaseAuth-dummy.m │ │ ├── FirebaseAuth-umbrella.h │ │ ├── FirebaseAuth.debug.xcconfig │ │ ├── FirebaseAuth.modulemap │ │ └── FirebaseAuth.release.xcconfig │ ├── FirebaseAuthInterop │ │ ├── FirebaseAuthInterop.debug.xcconfig │ │ └── FirebaseAuthInterop.release.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.debug.xcconfig │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.release.xcconfig │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ ├── FirebaseCoreDiagnosticsInterop │ │ ├── FirebaseCoreDiagnosticsInterop.debug.xcconfig │ │ └── FirebaseCoreDiagnosticsInterop.release.xcconfig │ ├── FirebaseDatabase │ │ ├── FirebaseDatabase-Info.plist │ │ ├── FirebaseDatabase-dummy.m │ │ ├── FirebaseDatabase-umbrella.h │ │ ├── FirebaseDatabase.debug.xcconfig │ │ ├── FirebaseDatabase.modulemap │ │ └── FirebaseDatabase.release.xcconfig │ ├── FirebaseInstallations │ │ ├── FirebaseInstallations-Info.plist │ │ ├── FirebaseInstallations-dummy.m │ │ ├── FirebaseInstallations-umbrella.h │ │ ├── FirebaseInstallations.debug.xcconfig │ │ ├── FirebaseInstallations.modulemap │ │ └── FirebaseInstallations.release.xcconfig │ ├── FirebaseInstanceID │ │ ├── FirebaseInstanceID-Info.plist │ │ ├── FirebaseInstanceID-dummy.m │ │ ├── FirebaseInstanceID-umbrella.h │ │ ├── FirebaseInstanceID.debug.xcconfig │ │ ├── FirebaseInstanceID.modulemap │ │ └── FirebaseInstanceID.release.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-Info.plist │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ └── GTMSessionFetcher.release.xcconfig │ ├── GoogleAppMeasurement │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ └── GoogleAppMeasurement.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport-Info.plist │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport-umbrella.h │ │ ├── GoogleDataTransport.debug.xcconfig │ │ ├── GoogleDataTransport.modulemap │ │ └── GoogleDataTransport.release.xcconfig │ ├── GoogleDataTransportCCTSupport │ │ ├── GoogleDataTransportCCTSupport-Info.plist │ │ ├── GoogleDataTransportCCTSupport-dummy.m │ │ ├── GoogleDataTransportCCTSupport-umbrella.h │ │ ├── GoogleDataTransportCCTSupport.debug.xcconfig │ │ ├── GoogleDataTransportCCTSupport.modulemap │ │ └── GoogleDataTransportCCTSupport.release.xcconfig │ ├── GoogleUtilities │ │ ├── GoogleUtilities-Info.plist │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-prefix.pch │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.modulemap │ │ └── GoogleUtilities.release.xcconfig │ ├── Pods-CeviriyleOgren │ │ ├── Pods-CeviriyleOgren-Info.plist │ │ ├── Pods-CeviriyleOgren-acknowledgements.markdown │ │ ├── Pods-CeviriyleOgren-acknowledgements.plist │ │ ├── Pods-CeviriyleOgren-dummy.m │ │ ├── Pods-CeviriyleOgren-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-CeviriyleOgren-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-CeviriyleOgren-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-CeviriyleOgren-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-CeviriyleOgren-frameworks.sh │ │ ├── Pods-CeviriyleOgren-umbrella.h │ │ ├── Pods-CeviriyleOgren.debug.xcconfig │ │ ├── Pods-CeviriyleOgren.modulemap │ │ └── Pods-CeviriyleOgren.release.xcconfig │ ├── PromisesObjC │ │ ├── PromisesObjC-Info.plist │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC-umbrella.h │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.modulemap │ │ └── PromisesObjC.release.xcconfig │ ├── leveldb-library │ │ ├── leveldb-library-Info.plist │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.debug.xcconfig │ │ ├── leveldb-library.modulemap │ │ └── leveldb-library.release.xcconfig │ └── nanopb │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.modulemap │ │ └── nanopb.release.xcconfig │ ├── leveldb-library │ ├── LICENSE │ ├── README.md │ ├── db │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── write_batch.cc │ │ └── write_batch_internal.h │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── port │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bloom.cc │ │ ├── cache.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.h │ │ └── windows_logger.h │ └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── ChangeButtonColor ├── ChangeButtonColor.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ChangeButtonColor │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── ClearButtonAppearTextField ├── ClearButtonAppearTextField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ClearButtonAppearTextField │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CreateAQrCode ├── .DS_Store ├── CreateAQrCode.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CreateAQrCode │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CurrencyConverter ├── .DS_Store ├── CurrencyConverter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CurrencyConverter │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Currency.swift │ ├── DetailViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── TableViewCell.swift │ ├── ViewController.swift │ └── flags │ ├── DKK.png │ ├── EUR.png │ ├── GBP.png │ ├── JPY.png │ ├── TRY.png │ ├── USD.png │ ├── back.jpg │ ├── currency.png │ └── default.png ├── FirebaseApp ├── .DS_Store ├── FirebaseApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── FirebaseApp.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── FirebaseApp │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Controllers │ │ ├── BookChapterVC.swift │ │ ├── BookDetailViewController.swift │ │ ├── BookHomeVC.swift │ │ ├── BookParagrafVC.swift │ │ ├── BookTableViewCell.swift │ │ ├── SignInVC.swift │ │ ├── SignUpVC.swift │ │ ├── TableViewCell.swift │ │ ├── UploadVC.swift │ │ └── ViewController.swift │ ├── Delegates │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── FirebaseApp.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── FirebaseApp.xcdatamodel │ │ │ └── contents │ ├── GoogleService-Info.plist │ ├── Helpers │ │ └── Common.swift │ ├── Info.plist │ ├── Models │ │ └── ItemModel.swift │ ├── Services │ │ └── DataService.swift │ └── Views │ │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard ├── Podfile ├── Podfile.lock └── Pods │ ├── Firebase │ ├── CoreOnly │ │ ├── CHANGELOG.md │ │ ├── NOTICES │ │ ├── README.md │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ ├── LICENSE │ └── README.md │ ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FIRAnalyticsConnector.framework │ │ ├── FIRAnalyticsConnector │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ ├── FIRAnalytics+AppDelegate.h │ │ ├── FIRAnalytics.h │ │ ├── FIREventNames.h │ │ ├── FIRParameterNames.h │ │ ├── FIRUserPropertyNames.h │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ └── module.modulemap │ ├── FirebaseAuth │ ├── Firebase │ │ └── Auth │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ └── Source │ │ │ ├── Auth │ │ │ ├── FIRActionCodeSettings.m │ │ │ ├── FIRAuth.m │ │ │ ├── FIRAuthDataResult.m │ │ │ ├── FIRAuthDataResult_Internal.h │ │ │ ├── FIRAuthDispatcher.h │ │ │ ├── FIRAuthDispatcher.m │ │ │ ├── FIRAuthGlobalWorkQueue.h │ │ │ ├── FIRAuthGlobalWorkQueue.m │ │ │ ├── FIRAuthOperationType.h │ │ │ ├── FIRAuthSerialTaskQueue.h │ │ │ ├── FIRAuthSerialTaskQueue.m │ │ │ ├── FIRAuthSettings.m │ │ │ ├── FIRAuthTokenResult.m │ │ │ ├── FIRAuthTokenResult_Internal.h │ │ │ └── FIRAuth_Internal.h │ │ │ ├── AuthProvider │ │ │ ├── Email │ │ │ │ ├── FIREmailAuthProvider.m │ │ │ │ ├── FIREmailPasswordAuthCredential.h │ │ │ │ └── FIREmailPasswordAuthCredential.m │ │ │ ├── FIRAuthCredential.m │ │ │ ├── FIRAuthCredential_Internal.h │ │ │ ├── FIRAuthProvider.m │ │ │ ├── Facebook │ │ │ │ ├── FIRFacebookAuthCredential.h │ │ │ │ ├── FIRFacebookAuthCredential.m │ │ │ │ └── FIRFacebookAuthProvider.m │ │ │ ├── GameCenter │ │ │ │ ├── FIRGameCenterAuthCredential.h │ │ │ │ ├── FIRGameCenterAuthCredential.m │ │ │ │ └── FIRGameCenterAuthProvider.m │ │ │ ├── GitHub │ │ │ │ ├── FIRGitHubAuthCredential.h │ │ │ │ ├── FIRGitHubAuthCredential.m │ │ │ │ └── FIRGitHubAuthProvider.m │ │ │ ├── Google │ │ │ │ ├── FIRGoogleAuthCredential.h │ │ │ │ ├── FIRGoogleAuthCredential.m │ │ │ │ └── FIRGoogleAuthProvider.m │ │ │ ├── OAuth │ │ │ │ ├── FIROAuthCredential.m │ │ │ │ ├── FIROAuthCredential_Internal.h │ │ │ │ └── FIROAuthProvider.m │ │ │ ├── Phone │ │ │ │ ├── FIRPhoneAuthCredential.m │ │ │ │ ├── FIRPhoneAuthCredential_Internal.h │ │ │ │ └── FIRPhoneAuthProvider.m │ │ │ └── Twitter │ │ │ │ ├── FIRTwitterAuthCredential.h │ │ │ │ ├── FIRTwitterAuthCredential.m │ │ │ │ └── FIRTwitterAuthProvider.m │ │ │ ├── Backend │ │ │ ├── FIRAuthBackend.h │ │ │ ├── FIRAuthBackend.m │ │ │ ├── FIRAuthRPCRequest.h │ │ │ ├── FIRAuthRPCResponse.h │ │ │ ├── FIRAuthRequestConfiguration.h │ │ │ ├── FIRAuthRequestConfiguration.m │ │ │ ├── FIRIdentityToolkitRequest.h │ │ │ ├── FIRIdentityToolkitRequest.m │ │ │ └── RPC │ │ │ │ ├── FIRCreateAuthURIRequest.h │ │ │ │ ├── FIRCreateAuthURIRequest.m │ │ │ │ ├── FIRCreateAuthURIResponse.h │ │ │ │ ├── FIRCreateAuthURIResponse.m │ │ │ │ ├── FIRDeleteAccountRequest.h │ │ │ │ ├── FIRDeleteAccountRequest.m │ │ │ │ ├── FIRDeleteAccountResponse.h │ │ │ │ ├── FIRDeleteAccountResponse.m │ │ │ │ ├── FIREmailLinkSignInRequest.h │ │ │ │ ├── FIREmailLinkSignInRequest.m │ │ │ │ ├── FIREmailLinkSignInResponse.h │ │ │ │ ├── FIREmailLinkSignInResponse.m │ │ │ │ ├── FIRGetAccountInfoRequest.h │ │ │ │ ├── FIRGetAccountInfoRequest.m │ │ │ │ ├── FIRGetAccountInfoResponse.h │ │ │ │ ├── FIRGetAccountInfoResponse.m │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.h │ │ │ │ ├── FIRGetOOBConfirmationCodeRequest.m │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.h │ │ │ │ ├── FIRGetOOBConfirmationCodeResponse.m │ │ │ │ ├── FIRGetProjectConfigRequest.h │ │ │ │ ├── FIRGetProjectConfigRequest.m │ │ │ │ ├── FIRGetProjectConfigResponse.h │ │ │ │ ├── FIRGetProjectConfigResponse.m │ │ │ │ ├── FIRResetPasswordRequest.h │ │ │ │ ├── FIRResetPasswordRequest.m │ │ │ │ ├── FIRResetPasswordResponse.h │ │ │ │ ├── FIRResetPasswordResponse.m │ │ │ │ ├── FIRSecureTokenRequest.h │ │ │ │ ├── FIRSecureTokenRequest.m │ │ │ │ ├── FIRSecureTokenResponse.h │ │ │ │ ├── FIRSecureTokenResponse.m │ │ │ │ ├── FIRSendVerificationCodeRequest.h │ │ │ │ ├── FIRSendVerificationCodeRequest.m │ │ │ │ ├── FIRSendVerificationCodeResponse.h │ │ │ │ ├── FIRSendVerificationCodeResponse.m │ │ │ │ ├── FIRSetAccountInfoRequest.h │ │ │ │ ├── FIRSetAccountInfoRequest.m │ │ │ │ ├── FIRSetAccountInfoResponse.h │ │ │ │ ├── FIRSetAccountInfoResponse.m │ │ │ │ ├── FIRSignInWithGameCenterRequest.h │ │ │ │ ├── FIRSignInWithGameCenterRequest.m │ │ │ │ ├── FIRSignInWithGameCenterResponse.h │ │ │ │ ├── FIRSignInWithGameCenterResponse.m │ │ │ │ ├── FIRSignUpNewUserRequest.h │ │ │ │ ├── FIRSignUpNewUserRequest.m │ │ │ │ ├── FIRSignUpNewUserResponse.h │ │ │ │ ├── FIRSignUpNewUserResponse.m │ │ │ │ ├── FIRVerifyAssertionRequest.h │ │ │ │ ├── FIRVerifyAssertionRequest.m │ │ │ │ ├── FIRVerifyAssertionResponse.h │ │ │ │ ├── FIRVerifyAssertionResponse.m │ │ │ │ ├── FIRVerifyClientRequest.h │ │ │ │ ├── FIRVerifyClientRequest.m │ │ │ │ ├── FIRVerifyClientResponse.h │ │ │ │ ├── FIRVerifyClientResponse.m │ │ │ │ ├── FIRVerifyCustomTokenRequest.h │ │ │ │ ├── FIRVerifyCustomTokenRequest.m │ │ │ │ ├── FIRVerifyCustomTokenResponse.h │ │ │ │ ├── FIRVerifyCustomTokenResponse.m │ │ │ │ ├── FIRVerifyPasswordRequest.h │ │ │ │ ├── FIRVerifyPasswordRequest.m │ │ │ │ ├── FIRVerifyPasswordResponse.h │ │ │ │ ├── FIRVerifyPasswordResponse.m │ │ │ │ ├── FIRVerifyPhoneNumberRequest.h │ │ │ │ ├── FIRVerifyPhoneNumberRequest.m │ │ │ │ ├── FIRVerifyPhoneNumberResponse.h │ │ │ │ └── FIRVerifyPhoneNumberResponse.m │ │ │ ├── FirebaseAuthVersion.m │ │ │ ├── Public │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRFederatedAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIROAuthCredential.h │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRUser.h │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ │ ├── Storage │ │ │ ├── FIRAuthKeychainServices.h │ │ │ ├── FIRAuthKeychainServices.m │ │ │ ├── FIRAuthUserDefaults.h │ │ │ └── FIRAuthUserDefaults.m │ │ │ ├── SystemService │ │ │ ├── FIRAuthAPNSToken.h │ │ │ ├── FIRAuthAPNSToken.m │ │ │ ├── FIRAuthAPNSTokenManager.h │ │ │ ├── FIRAuthAPNSTokenManager.m │ │ │ ├── FIRAuthAppCredential.h │ │ │ ├── FIRAuthAppCredential.m │ │ │ ├── FIRAuthAppCredentialManager.h │ │ │ ├── FIRAuthAppCredentialManager.m │ │ │ ├── FIRAuthNotificationManager.h │ │ │ ├── FIRAuthNotificationManager.m │ │ │ ├── FIRAuthStoredUserManager.h │ │ │ ├── FIRAuthStoredUserManager.m │ │ │ ├── FIRSecureTokenService.h │ │ │ └── FIRSecureTokenService.m │ │ │ ├── User │ │ │ ├── FIRAdditionalUserInfo.m │ │ │ ├── FIRAdditionalUserInfo_Internal.h │ │ │ ├── FIRUser.m │ │ │ ├── FIRUserInfoImpl.h │ │ │ ├── FIRUserInfoImpl.m │ │ │ ├── FIRUserMetadata.m │ │ │ ├── FIRUserMetadata_Internal.h │ │ │ └── FIRUser_Internal.h │ │ │ └── Utilities │ │ │ ├── FIRAuthDefaultUIDelegate.h │ │ │ ├── FIRAuthDefaultUIDelegate.m │ │ │ ├── FIRAuthErrorUtils.h │ │ │ ├── FIRAuthErrorUtils.m │ │ │ ├── FIRAuthExceptionUtils.h │ │ │ ├── FIRAuthExceptionUtils.m │ │ │ ├── FIRAuthInternalErrors.h │ │ │ ├── FIRAuthURLPresenter.h │ │ │ ├── FIRAuthURLPresenter.m │ │ │ ├── FIRAuthWebUtils.h │ │ │ ├── FIRAuthWebUtils.m │ │ │ ├── FIRAuthWebView.h │ │ │ ├── FIRAuthWebView.m │ │ │ ├── FIRAuthWebViewController.h │ │ │ ├── FIRAuthWebViewController.m │ │ │ ├── NSData+FIRBase64.h │ │ │ └── NSData+FIRBase64.m │ ├── LICENSE │ └── README.md │ ├── FirebaseAuthInterop │ ├── Interop │ │ └── Auth │ │ │ └── Public │ │ │ └── FIRAuthInterop.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCore │ ├── FirebaseCore │ │ └── Sources │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRComponent.m │ │ │ ├── FIRComponentContainer.m │ │ │ ├── FIRComponentType.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ ├── FIRDependency.m │ │ │ ├── FIRDiagnosticsData.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRHeartbeatInfo.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRVersion.h │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRComponent.h │ │ │ ├── FIRComponentContainer.h │ │ │ ├── FIRComponentContainerInternal.h │ │ │ ├── FIRComponentType.h │ │ │ ├── FIRConfigurationInternal.h │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ ├── FIRDependency.h │ │ │ ├── FIRDiagnosticsData.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRHeartbeatInfo.h │ │ │ ├── FIRLibrary.h │ │ │ ├── FIRLogger.h │ │ │ └── FIROptionsInternal.h │ │ │ └── Public │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCoreDiagnostics │ ├── Firebase │ │ └── CoreDiagnostics │ │ │ └── FIRCDLibrary │ │ │ ├── FIRCoreDiagnostics.m │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── firebasecore.nanopb.c │ │ │ └── firebasecore.nanopb.h │ ├── LICENSE │ └── README.md │ ├── FirebaseCoreDiagnosticsInterop │ ├── Interop │ │ └── CoreDiagnostics │ │ │ └── Public │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ ├── LICENSE │ └── README.md │ ├── FirebaseDatabase │ ├── Firebase │ │ └── Database │ │ │ ├── Api │ │ │ ├── FIRDataSnapshot.m │ │ │ ├── FIRDatabase.m │ │ │ ├── FIRDatabaseComponent.h │ │ │ ├── FIRDatabaseComponent.m │ │ │ ├── FIRDatabaseConfig.h │ │ │ ├── FIRDatabaseConfig.m │ │ │ ├── FIRDatabaseQuery.m │ │ │ ├── FIRMutableData.m │ │ │ ├── FIRServerValue.m │ │ │ ├── FIRTransactionResult.m │ │ │ └── Private │ │ │ │ ├── FIRDataSnapshot_Private.h │ │ │ │ ├── FIRDatabaseQuery_Private.h │ │ │ │ ├── FIRDatabaseReference_Private.h │ │ │ │ ├── FIRDatabase_Private.h │ │ │ │ ├── FIRMutableData_Private.h │ │ │ │ ├── FIRTransactionResult_Private.h │ │ │ │ └── FTypedefs_Private.h │ │ │ ├── Constants │ │ │ ├── FConstants.h │ │ │ └── FConstants.m │ │ │ ├── Core │ │ │ ├── FCompoundHash.h │ │ │ ├── FCompoundHash.m │ │ │ ├── FListenProvider.h │ │ │ ├── FListenProvider.m │ │ │ ├── FPersistentConnection.h │ │ │ ├── FPersistentConnection.m │ │ │ ├── FQueryParams.h │ │ │ ├── FQueryParams.m │ │ │ ├── FQuerySpec.h │ │ │ ├── FQuerySpec.m │ │ │ ├── FRangeMerge.h │ │ │ ├── FRangeMerge.m │ │ │ ├── FRepo.h │ │ │ ├── FRepo.m │ │ │ ├── FRepoInfo.h │ │ │ ├── FRepoInfo.m │ │ │ ├── FRepoManager.h │ │ │ ├── FRepoManager.m │ │ │ ├── FRepo_Private.h │ │ │ ├── FServerValues.h │ │ │ ├── FServerValues.m │ │ │ ├── FSnapshotHolder.h │ │ │ ├── FSnapshotHolder.m │ │ │ ├── FSparseSnapshotTree.h │ │ │ ├── FSparseSnapshotTree.m │ │ │ ├── FSyncPoint.h │ │ │ ├── FSyncPoint.m │ │ │ ├── FSyncTree.h │ │ │ ├── FSyncTree.m │ │ │ ├── FWriteRecord.h │ │ │ ├── FWriteRecord.m │ │ │ ├── FWriteTree.h │ │ │ ├── FWriteTree.m │ │ │ ├── FWriteTreeRef.h │ │ │ ├── FWriteTreeRef.m │ │ │ ├── Operation │ │ │ │ ├── FAckUserWrite.h │ │ │ │ ├── FAckUserWrite.m │ │ │ │ ├── FMerge.h │ │ │ │ ├── FMerge.m │ │ │ │ ├── FOperation.h │ │ │ │ ├── FOperationSource.h │ │ │ │ ├── FOperationSource.m │ │ │ │ ├── FOverwrite.h │ │ │ │ └── FOverwrite.m │ │ │ ├── Utilities │ │ │ │ ├── FIRRetryHelper.h │ │ │ │ ├── FIRRetryHelper.m │ │ │ │ ├── FImmutableTree.h │ │ │ │ ├── FImmutableTree.m │ │ │ │ ├── FPath.h │ │ │ │ ├── FPath.m │ │ │ │ ├── FTree.h │ │ │ │ ├── FTree.m │ │ │ │ ├── FTreeNode.h │ │ │ │ └── FTreeNode.m │ │ │ └── View │ │ │ │ ├── FCacheNode.h │ │ │ │ ├── FCacheNode.m │ │ │ │ ├── FCancelEvent.h │ │ │ │ ├── FCancelEvent.m │ │ │ │ ├── FChange.h │ │ │ │ ├── FChange.m │ │ │ │ ├── FChildEventRegistration.h │ │ │ │ ├── FChildEventRegistration.m │ │ │ │ ├── FDataEvent.h │ │ │ │ ├── FDataEvent.m │ │ │ │ ├── FEvent.h │ │ │ │ ├── FEventRaiser.h │ │ │ │ ├── FEventRaiser.m │ │ │ │ ├── FEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.h │ │ │ │ ├── FKeepSyncedEventRegistration.m │ │ │ │ ├── FValueEventRegistration.h │ │ │ │ ├── FValueEventRegistration.m │ │ │ │ ├── FView.h │ │ │ │ ├── FView.m │ │ │ │ ├── FViewCache.h │ │ │ │ ├── FViewCache.m │ │ │ │ └── Filter │ │ │ │ ├── FChildChangeAccumulator.h │ │ │ │ ├── FChildChangeAccumulator.m │ │ │ │ ├── FCompleteChildSource.h │ │ │ │ ├── FIndexedFilter.h │ │ │ │ ├── FIndexedFilter.m │ │ │ │ ├── FLimitedFilter.h │ │ │ │ ├── FLimitedFilter.m │ │ │ │ └── FNodeFilter.h │ │ │ ├── FClock.h │ │ │ ├── FClock.m │ │ │ ├── FEventGenerator.h │ │ │ ├── FEventGenerator.m │ │ │ ├── FIRDatabaseConfig_Private.h │ │ │ ├── FIRDatabaseReference.m │ │ │ ├── FIndex.h │ │ │ ├── FIndex.m │ │ │ ├── FKeyIndex.h │ │ │ ├── FKeyIndex.m │ │ │ ├── FListenComplete.h │ │ │ ├── FListenComplete.m │ │ │ ├── FMaxNode.h │ │ │ ├── FMaxNode.m │ │ │ ├── FNamedNode.h │ │ │ ├── FNamedNode.m │ │ │ ├── FPathIndex.h │ │ │ ├── FPathIndex.m │ │ │ ├── FPriorityIndex.h │ │ │ ├── FPriorityIndex.m │ │ │ ├── FRangedFilter.h │ │ │ ├── FRangedFilter.m │ │ │ ├── FTransformedEnumerator.h │ │ │ ├── FTransformedEnumerator.m │ │ │ ├── FValueIndex.h │ │ │ ├── FValueIndex.m │ │ │ ├── FViewProcessor.h │ │ │ ├── FViewProcessor.m │ │ │ ├── FViewProcessorResult.h │ │ │ ├── FViewProcessorResult.m │ │ │ ├── Login │ │ │ ├── FAuthTokenProvider.h │ │ │ ├── FAuthTokenProvider.m │ │ │ ├── FIRNoopAuthTokenProvider.h │ │ │ └── FIRNoopAuthTokenProvider.m │ │ │ ├── Persistence │ │ │ ├── FCachePolicy.h │ │ │ ├── FCachePolicy.m │ │ │ ├── FLevelDBStorageEngine.h │ │ │ ├── FLevelDBStorageEngine.m │ │ │ ├── FPendingPut.h │ │ │ ├── FPendingPut.m │ │ │ ├── FPersistenceManager.h │ │ │ ├── FPersistenceManager.m │ │ │ ├── FPruneForest.h │ │ │ ├── FPruneForest.m │ │ │ ├── FStorageEngine.h │ │ │ ├── FTrackedQuery.h │ │ │ ├── FTrackedQuery.m │ │ │ ├── FTrackedQueryManager.h │ │ │ └── FTrackedQueryManager.m │ │ │ ├── Public │ │ │ ├── FIRDataEventType.h │ │ │ ├── FIRDataSnapshot.h │ │ │ ├── FIRDatabase.h │ │ │ ├── FIRDatabaseQuery.h │ │ │ ├── FIRDatabaseReference.h │ │ │ ├── FIRMutableData.h │ │ │ ├── FIRServerValue.h │ │ │ ├── FIRTransactionResult.h │ │ │ └── FirebaseDatabase.h │ │ │ ├── Realtime │ │ │ ├── FConnection.h │ │ │ ├── FConnection.m │ │ │ ├── FWebSocketConnection.h │ │ │ └── FWebSocketConnection.m │ │ │ ├── Snapshot │ │ │ ├── FChildrenNode.h │ │ │ ├── FChildrenNode.m │ │ │ ├── FCompoundWrite.h │ │ │ ├── FCompoundWrite.m │ │ │ ├── FEmptyNode.h │ │ │ ├── FEmptyNode.m │ │ │ ├── FIndexedNode.h │ │ │ ├── FIndexedNode.m │ │ │ ├── FLeafNode.h │ │ │ ├── FLeafNode.m │ │ │ ├── FNode.h │ │ │ ├── FSnapshotUtilities.h │ │ │ └── FSnapshotUtilities.m │ │ │ ├── Utilities │ │ │ ├── FAtomicNumber.h │ │ │ ├── FAtomicNumber.m │ │ │ ├── FEventEmitter.h │ │ │ ├── FEventEmitter.m │ │ │ ├── FNextPushId.h │ │ │ ├── FNextPushId.m │ │ │ ├── FParsedUrl.h │ │ │ ├── FParsedUrl.m │ │ │ ├── FStringUtilities.h │ │ │ ├── FStringUtilities.m │ │ │ ├── FTypedefs.h │ │ │ ├── FUtilities.h │ │ │ ├── FUtilities.m │ │ │ ├── FValidation.h │ │ │ ├── FValidation.m │ │ │ └── Tuples │ │ │ │ ├── FTupleBoolBlock.h │ │ │ │ ├── FTupleBoolBlock.m │ │ │ │ ├── FTupleCallbackStatus.h │ │ │ │ ├── FTupleCallbackStatus.m │ │ │ │ ├── FTupleFirebase.h │ │ │ │ ├── FTupleFirebase.m │ │ │ │ ├── FTupleNodePath.h │ │ │ │ ├── FTupleNodePath.m │ │ │ │ ├── FTupleObjectNode.h │ │ │ │ ├── FTupleObjectNode.m │ │ │ │ ├── FTupleObjects.h │ │ │ │ ├── FTupleObjects.m │ │ │ │ ├── FTupleOnDisconnect.h │ │ │ │ ├── FTupleOnDisconnect.m │ │ │ │ ├── FTuplePathValue.h │ │ │ │ ├── FTuplePathValue.m │ │ │ │ ├── FTupleRemovedQueriesEvents.h │ │ │ │ ├── FTupleRemovedQueriesEvents.m │ │ │ │ ├── FTupleSetIdPath.h │ │ │ │ ├── FTupleSetIdPath.m │ │ │ │ ├── FTupleStringNode.h │ │ │ │ ├── FTupleStringNode.m │ │ │ │ ├── FTupleTSN.h │ │ │ │ ├── FTupleTSN.m │ │ │ │ ├── FTupleTransaction.h │ │ │ │ ├── FTupleTransaction.m │ │ │ │ ├── FTupleUserCallback.h │ │ │ │ └── FTupleUserCallback.m │ │ │ └── third_party │ │ │ ├── FImmutableSortedDictionary │ │ │ └── FImmutableSortedDictionary │ │ │ │ ├── FArraySortedDictionary.h │ │ │ │ ├── FArraySortedDictionary.m │ │ │ │ ├── FImmutableSortedDictionary.h │ │ │ │ ├── FImmutableSortedDictionary.m │ │ │ │ ├── FImmutableSortedSet.h │ │ │ │ ├── FImmutableSortedSet.m │ │ │ │ ├── FLLRBEmptyNode.h │ │ │ │ ├── FLLRBEmptyNode.m │ │ │ │ ├── FLLRBNode.h │ │ │ │ ├── FLLRBValueNode.h │ │ │ │ ├── FLLRBValueNode.m │ │ │ │ ├── FTreeSortedDictionary.h │ │ │ │ ├── FTreeSortedDictionary.m │ │ │ │ ├── FTreeSortedDictionaryEnumerator.h │ │ │ │ └── FTreeSortedDictionaryEnumerator.m │ │ │ ├── SocketRocket │ │ │ ├── FSRWebSocket.h │ │ │ ├── FSRWebSocket.m │ │ │ ├── NSData+SRB64Additions.h │ │ │ ├── NSData+SRB64Additions.m │ │ │ ├── fbase64.c │ │ │ └── fbase64.h │ │ │ └── Wrap-leveldb │ │ │ ├── APLevelDB.h │ │ │ └── APLevelDB.mm │ ├── LICENSE │ └── README.md │ ├── FirebaseInstallations │ ├── FirebaseInstallations │ │ └── Source │ │ │ └── Library │ │ │ ├── Errors │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ └── FIRInstallationsHTTPError.m │ │ │ ├── FIRInstallations.m │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ ├── FIRInstallationsItem.h │ │ │ ├── FIRInstallationsItem.m │ │ │ ├── FIRInstallationsLogger.h │ │ │ ├── FIRInstallationsLogger.m │ │ │ ├── FIRInstallationsVersion.m │ │ │ ├── IIDMigration │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ ├── InstallationsAPI │ │ │ ├── FIRInstallationsAPIService.h │ │ │ ├── FIRInstallationsAPIService.m │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ ├── InstallationsIDController │ │ │ ├── FIRInstallationsIDController.h │ │ │ ├── FIRInstallationsIDController.m │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ └── FIRInstallationsStatus.h │ │ │ ├── InstallationsStore │ │ │ ├── FIRInstallationsStore.h │ │ │ ├── FIRInstallationsStore.m │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ └── FIRInstallationsStoredItem.m │ │ │ ├── Public │ │ │ ├── FIRInstallations.h │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ ├── FIRInstallationsErrors.h │ │ │ ├── FIRInstallationsVersion.h │ │ │ └── FirebaseInstallations.h │ │ │ └── SecureStorage │ │ │ ├── FIRInstallationsKeychainUtils.h │ │ │ ├── FIRInstallationsKeychainUtils.m │ │ │ ├── FIRSecureStorage.h │ │ │ └── FIRSecureStorage.m │ ├── LICENSE │ └── README.md │ ├── FirebaseInstanceID │ ├── Firebase │ │ └── InstanceID │ │ │ ├── FIRIMessageCode.h │ │ │ ├── FIRInstanceID+Private.m │ │ │ ├── FIRInstanceID.m │ │ │ ├── FIRInstanceIDAPNSInfo.h │ │ │ ├── FIRInstanceIDAPNSInfo.m │ │ │ ├── FIRInstanceIDAuthKeyChain.h │ │ │ ├── FIRInstanceIDAuthKeyChain.m │ │ │ ├── FIRInstanceIDAuthService.h │ │ │ ├── FIRInstanceIDAuthService.m │ │ │ ├── FIRInstanceIDBackupExcludedPlist.h │ │ │ ├── FIRInstanceIDBackupExcludedPlist.m │ │ │ ├── FIRInstanceIDCheckinPreferences+Internal.h │ │ │ ├── FIRInstanceIDCheckinPreferences+Internal.m │ │ │ ├── FIRInstanceIDCheckinPreferences.m │ │ │ ├── FIRInstanceIDCheckinPreferences_Private.h │ │ │ ├── FIRInstanceIDCheckinService.h │ │ │ ├── FIRInstanceIDCheckinService.m │ │ │ ├── FIRInstanceIDCheckinStore.h │ │ │ ├── FIRInstanceIDCheckinStore.m │ │ │ ├── FIRInstanceIDCombinedHandler.h │ │ │ ├── FIRInstanceIDCombinedHandler.m │ │ │ ├── FIRInstanceIDConstants.h │ │ │ ├── FIRInstanceIDConstants.m │ │ │ ├── FIRInstanceIDDefines.h │ │ │ ├── FIRInstanceIDKeychain.h │ │ │ ├── FIRInstanceIDKeychain.m │ │ │ ├── FIRInstanceIDLogger.h │ │ │ ├── FIRInstanceIDLogger.m │ │ │ ├── FIRInstanceIDStore.h │ │ │ ├── FIRInstanceIDStore.m │ │ │ ├── FIRInstanceIDStringEncoding.h │ │ │ ├── FIRInstanceIDStringEncoding.m │ │ │ ├── FIRInstanceIDTokenDeleteOperation.h │ │ │ ├── FIRInstanceIDTokenDeleteOperation.m │ │ │ ├── FIRInstanceIDTokenFetchOperation.h │ │ │ ├── FIRInstanceIDTokenFetchOperation.m │ │ │ ├── FIRInstanceIDTokenInfo.h │ │ │ ├── FIRInstanceIDTokenInfo.m │ │ │ ├── FIRInstanceIDTokenManager.h │ │ │ ├── FIRInstanceIDTokenManager.m │ │ │ ├── FIRInstanceIDTokenOperation+Private.h │ │ │ ├── FIRInstanceIDTokenOperation.h │ │ │ ├── FIRInstanceIDTokenOperation.m │ │ │ ├── FIRInstanceIDTokenStore.h │ │ │ ├── FIRInstanceIDTokenStore.m │ │ │ ├── FIRInstanceIDURLQueryItem.h │ │ │ ├── FIRInstanceIDURLQueryItem.m │ │ │ ├── FIRInstanceIDUtilities.h │ │ │ ├── FIRInstanceIDUtilities.m │ │ │ ├── FIRInstanceIDVersionUtilities.h │ │ │ ├── FIRInstanceIDVersionUtilities.m │ │ │ ├── NSError+FIRInstanceID.h │ │ │ ├── NSError+FIRInstanceID.m │ │ │ ├── Private │ │ │ ├── FIRInstanceID+Private.h │ │ │ ├── FIRInstanceIDCheckinPreferences.h │ │ │ └── FIRInstanceID_Private.h │ │ │ └── Public │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ ├── LICENSE │ └── README.md │ ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.h │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.h │ │ └── GTMSessionUploadFetcher.m │ ├── GoogleAppMeasurement │ └── Frameworks │ │ └── GoogleAppMeasurement.framework │ │ ├── GoogleAppMeasurement │ │ └── Modules │ │ └── module.modulemap │ ├── GoogleDataTransport │ ├── GoogleDataTransport │ │ └── GDTCORLibrary │ │ │ ├── GDTCORAssert.m │ │ │ ├── GDTCORClock.m │ │ │ ├── GDTCORConsoleLogger.m │ │ │ ├── GDTCORDataFuture.m │ │ │ ├── GDTCOREvent.m │ │ │ ├── GDTCORLifecycle.m │ │ │ ├── GDTCORPlatform.m │ │ │ ├── GDTCORReachability.m │ │ │ ├── GDTCORRegistrar.m │ │ │ ├── GDTCORStorage.m │ │ │ ├── GDTCORStoredEvent.m │ │ │ ├── GDTCORTransformer.m │ │ │ ├── GDTCORTransport.m │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ ├── GDTCORUploadPackage.m │ │ │ ├── Private │ │ │ ├── GDTCOREvent_Private.h │ │ │ ├── GDTCORReachability.h │ │ │ ├── GDTCORReachability_Private.h │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ ├── GDTCORStorage.h │ │ │ ├── GDTCORStorage_Private.h │ │ │ ├── GDTCORTransformer.h │ │ │ ├── GDTCORTransformer_Private.h │ │ │ ├── GDTCORTransport_Private.h │ │ │ ├── GDTCORUploadCoordinator.h │ │ │ └── GDTCORUploadPackage_Private.h │ │ │ └── Public │ │ │ ├── GDTCORAssert.h │ │ │ ├── GDTCORClock.h │ │ │ ├── GDTCORConsoleLogger.h │ │ │ ├── GDTCORDataFuture.h │ │ │ ├── GDTCOREvent.h │ │ │ ├── GDTCOREventDataObject.h │ │ │ ├── GDTCOREventTransformer.h │ │ │ ├── GDTCORLifecycle.h │ │ │ ├── GDTCORPlatform.h │ │ │ ├── GDTCORPrioritizer.h │ │ │ ├── GDTCORRegistrar.h │ │ │ ├── GDTCORStoredEvent.h │ │ │ ├── GDTCORTargets.h │ │ │ ├── GDTCORTransport.h │ │ │ ├── GDTCORUploadPackage.h │ │ │ ├── GDTCORUploader.h │ │ │ └── GoogleDataTransport.h │ ├── LICENSE │ └── README.md │ ├── GoogleDataTransportCCTSupport │ ├── GoogleDataTransportCCTSupport │ │ └── GDTCCTLibrary │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ ├── GDTCCTPrioritizer.m │ │ │ ├── GDTCCTUploader.m │ │ │ ├── GDTFLLPrioritizer.m │ │ │ ├── GDTFLLUploader.m │ │ │ ├── Private │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ ├── GDTCCTPrioritizer.h │ │ │ ├── GDTCCTUploader.h │ │ │ ├── GDTFLLPrioritizer.h │ │ │ └── GDTFLLUploader.h │ │ │ └── Protogen │ │ │ └── nanopb │ │ │ ├── cct.nanopb.c │ │ │ └── cct.nanopb.h │ ├── LICENSE │ └── README.md │ ├── GoogleUtilities │ ├── GoogleUtilities │ │ ├── AppDelegateSwizzler │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULAppDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ └── GULApplication.h │ │ ├── Common │ │ │ └── GULLoggerCodes.h │ │ ├── Environment │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ ├── GULSecureCoding.m │ │ │ ├── Public │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ └── GULSecureCoding.h │ │ │ └── third_party │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ └── GULAppEnvironmentUtil.m │ │ ├── LICENSE │ │ ├── Logger │ │ │ ├── GULLogger.m │ │ │ ├── Private │ │ │ │ └── GULLogger.h │ │ │ └── Public │ │ │ │ └── GULLoggerLevel.h │ │ ├── MethodSwizzler │ │ │ ├── GULSwizzler.m │ │ │ └── Private │ │ │ │ ├── GULOriginalIMPConvenienceMacros.h │ │ │ │ └── GULSwizzler.h │ │ ├── NSData+zlib │ │ │ ├── GULNSData+zlib.h │ │ │ └── GULNSData+zlib.m │ │ ├── Network │ │ │ ├── GULMutableDictionary.m │ │ │ ├── GULNetwork.m │ │ │ ├── GULNetworkConstants.m │ │ │ ├── GULNetworkURLSession.m │ │ │ └── Private │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ ├── GULNetwork.h │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ └── GULNetworkURLSession.h │ │ ├── Reachability │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ ├── GULReachabilityChecker.m │ │ │ └── Private │ │ │ │ ├── GULReachabilityChecker.h │ │ │ │ └── GULReachabilityMessageCode.h │ │ ├── SceneDelegateSwizzler │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ ├── Internal │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ └── Private │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ └── UserDefaults │ │ │ ├── GULUserDefaults.m │ │ │ └── Private │ │ │ └── GULUserDefaults.h │ └── README.md │ ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FIRCoreDiagnosticsData.h │ │ └── FIRCoreDiagnosticsInterop.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseAuth.xcscheme │ │ ├── FirebaseAuthInterop.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ ├── FirebaseCoreDiagnosticsInterop.xcscheme │ │ ├── FirebaseDatabase.xcscheme │ │ ├── FirebaseInstallations.xcscheme │ │ ├── FirebaseInstanceID.xcscheme │ │ ├── GTMSessionFetcher.xcscheme │ │ ├── GoogleAppMeasurement.xcscheme │ │ ├── GoogleDataTransport.xcscheme │ │ ├── GoogleDataTransportCCTSupport.xcscheme │ │ ├── GoogleUtilities.xcscheme │ │ ├── Pods-FirebaseApp.xcscheme │ │ ├── PromisesObjC.xcscheme │ │ ├── leveldb-library.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist │ ├── PromisesObjC │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── FBLPromises │ │ ├── FBLPromise+All.m │ │ ├── FBLPromise+Always.m │ │ ├── FBLPromise+Any.m │ │ ├── FBLPromise+Async.m │ │ ├── FBLPromise+Await.m │ │ ├── FBLPromise+Catch.m │ │ ├── FBLPromise+Delay.m │ │ ├── FBLPromise+Do.m │ │ ├── FBLPromise+Race.m │ │ ├── FBLPromise+Recover.m │ │ ├── FBLPromise+Reduce.m │ │ ├── FBLPromise+Retry.m │ │ ├── FBLPromise+Testing.m │ │ ├── FBLPromise+Then.m │ │ ├── FBLPromise+Timeout.m │ │ ├── FBLPromise+Validate.m │ │ ├── FBLPromise+Wrap.m │ │ ├── FBLPromise.m │ │ ├── FBLPromiseError.m │ │ └── include │ │ ├── FBLPromise+All.h │ │ ├── FBLPromise+Always.h │ │ ├── FBLPromise+Any.h │ │ ├── FBLPromise+Async.h │ │ ├── FBLPromise+Await.h │ │ ├── FBLPromise+Catch.h │ │ ├── FBLPromise+Delay.h │ │ ├── FBLPromise+Do.h │ │ ├── FBLPromise+Race.h │ │ ├── FBLPromise+Recover.h │ │ ├── FBLPromise+Reduce.h │ │ ├── FBLPromise+Retry.h │ │ ├── FBLPromise+Testing.h │ │ ├── FBLPromise+Then.h │ │ ├── FBLPromise+Timeout.h │ │ ├── FBLPromise+Validate.h │ │ ├── FBLPromise+Wrap.h │ │ ├── FBLPromise.h │ │ ├── FBLPromiseError.h │ │ ├── FBLPromisePrivate.h │ │ └── FBLPromises.h │ ├── Target Support Files │ ├── Firebase │ │ ├── Firebase.debug.xcconfig │ │ └── Firebase.release.xcconfig │ ├── FirebaseAnalytics │ │ ├── FirebaseAnalytics.debug.xcconfig │ │ └── FirebaseAnalytics.release.xcconfig │ ├── FirebaseAuth │ │ ├── FirebaseAuth-Info.plist │ │ ├── FirebaseAuth-dummy.m │ │ ├── FirebaseAuth-umbrella.h │ │ ├── FirebaseAuth.debug.xcconfig │ │ ├── FirebaseAuth.modulemap │ │ └── FirebaseAuth.release.xcconfig │ ├── FirebaseAuthInterop │ │ ├── FirebaseAuthInterop.debug.xcconfig │ │ └── FirebaseAuthInterop.release.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.debug.xcconfig │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.release.xcconfig │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ ├── FirebaseCoreDiagnosticsInterop │ │ ├── FirebaseCoreDiagnosticsInterop.debug.xcconfig │ │ └── FirebaseCoreDiagnosticsInterop.release.xcconfig │ ├── FirebaseDatabase │ │ ├── FirebaseDatabase-Info.plist │ │ ├── FirebaseDatabase-dummy.m │ │ ├── FirebaseDatabase-umbrella.h │ │ ├── FirebaseDatabase.debug.xcconfig │ │ ├── FirebaseDatabase.modulemap │ │ └── FirebaseDatabase.release.xcconfig │ ├── FirebaseInstallations │ │ ├── FirebaseInstallations-Info.plist │ │ ├── FirebaseInstallations-dummy.m │ │ ├── FirebaseInstallations-umbrella.h │ │ ├── FirebaseInstallations.debug.xcconfig │ │ ├── FirebaseInstallations.modulemap │ │ └── FirebaseInstallations.release.xcconfig │ ├── FirebaseInstanceID │ │ ├── FirebaseInstanceID-Info.plist │ │ ├── FirebaseInstanceID-dummy.m │ │ ├── FirebaseInstanceID-umbrella.h │ │ ├── FirebaseInstanceID.debug.xcconfig │ │ ├── FirebaseInstanceID.modulemap │ │ └── FirebaseInstanceID.release.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-Info.plist │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ └── GTMSessionFetcher.release.xcconfig │ ├── GoogleAppMeasurement │ │ ├── GoogleAppMeasurement.debug.xcconfig │ │ └── GoogleAppMeasurement.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport-Info.plist │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport-umbrella.h │ │ ├── GoogleDataTransport.debug.xcconfig │ │ ├── GoogleDataTransport.modulemap │ │ └── GoogleDataTransport.release.xcconfig │ ├── GoogleDataTransportCCTSupport │ │ ├── GoogleDataTransportCCTSupport-Info.plist │ │ ├── GoogleDataTransportCCTSupport-dummy.m │ │ ├── GoogleDataTransportCCTSupport-umbrella.h │ │ ├── GoogleDataTransportCCTSupport.debug.xcconfig │ │ ├── GoogleDataTransportCCTSupport.modulemap │ │ └── GoogleDataTransportCCTSupport.release.xcconfig │ ├── GoogleUtilities │ │ ├── GoogleUtilities-Info.plist │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-prefix.pch │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.modulemap │ │ └── GoogleUtilities.release.xcconfig │ ├── Pods-FirebaseApp │ │ ├── Pods-FirebaseApp-Info.plist │ │ ├── Pods-FirebaseApp-acknowledgements.markdown │ │ ├── Pods-FirebaseApp-acknowledgements.plist │ │ ├── Pods-FirebaseApp-dummy.m │ │ ├── Pods-FirebaseApp-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-FirebaseApp-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-FirebaseApp-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-FirebaseApp-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-FirebaseApp-frameworks.sh │ │ ├── Pods-FirebaseApp-umbrella.h │ │ ├── Pods-FirebaseApp.debug.xcconfig │ │ ├── Pods-FirebaseApp.modulemap │ │ └── Pods-FirebaseApp.release.xcconfig │ ├── PromisesObjC │ │ ├── PromisesObjC-Info.plist │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC-umbrella.h │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.modulemap │ │ └── PromisesObjC.release.xcconfig │ ├── leveldb-library │ │ ├── leveldb-library-Info.plist │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.debug.xcconfig │ │ ├── leveldb-library.modulemap │ │ └── leveldb-library.release.xcconfig │ └── nanopb │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.modulemap │ │ └── nanopb.release.xcconfig │ ├── leveldb-library │ ├── LICENSE │ ├── README.md │ ├── db │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── write_batch.cc │ │ └── write_batch_internal.h │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── port │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_stdcxx.h │ │ └── thread_annotations.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── bloom.cc │ │ ├── cache.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_posix_test_helper.h │ │ ├── env_windows_test_helper.h │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── no_destructor.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.h │ │ └── windows_logger.h │ └── nanopb │ ├── LICENSE.txt │ ├── README.md │ ├── pb.h │ ├── pb_common.c │ ├── pb_common.h │ ├── pb_decode.c │ ├── pb_decode.h │ ├── pb_encode.c │ └── pb_encode.h ├── LimitUITextView ├── LimitUITextView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── LimitUITextView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LoadHTMLString ├── LoadHTMLString.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── LoadHTMLString │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LoadRemoteImageUrl ├── LoadRemoteImageUrl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── LoadRemoteImageUrl │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── MapKitApp ├── MapKitApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── MapKitApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── MoviesApp ├── .DS_Store ├── MoviesApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── MoviesApp │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Files │ ├── arrival-small.jpg │ ├── arrival-wide.jpg │ ├── avengersultron-small.jpg │ ├── avengersultron-wide.jpg │ ├── batmanvsuperman-small.jpg │ ├── batmanvsuperman-wide.jpg │ ├── civilwar-small.jpg │ ├── civilwar-wide.jpg │ ├── deadpool-small.jpg │ ├── deadpool-wide.jpg │ ├── doctorstrange-small.jpg │ ├── doctorstrange-wide.jpg │ ├── kongskull-small.jpg │ ├── kongskull-wide.jpg │ ├── legobatman-small.jpg │ ├── legobatman-wide.jpg │ ├── logan-small.jpg │ ├── logan-wide.jpg │ ├── madmax-small.jpg │ ├── madmax-wide.jpg │ ├── rogueone-small.jpg │ ├── rogueone-wide.jpg │ ├── suicidesquad-small.jpg │ ├── suicidesquad-wide.jpg │ ├── sully-small.jpg │ └── sully-wide.jpg │ ├── Info.plist │ ├── Movie.swift │ ├── MovieTableViewCell.swift │ ├── MovieViewController.swift │ ├── MoviesTableViewController.swift │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── jokes.json ├── MyApp ├── .DS_Store ├── MyApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── MyApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── contact.jpg ├── MyCol ├── .DS_Store ├── MyCol.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── MyCol │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CollectionViewCell.swift │ ├── Info.plist │ ├── MyCol.xcdatamodeld │ ├── .xccurrentversion │ └── MyCol.xcdatamodel │ │ └── contents │ ├── SceneDelegate.swift │ └── ViewController.swift ├── MySpecialGallery ├── .DS_Store ├── MySpecialGallery.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── MySpecialGallery │ ├── .DS_Store │ ├── 1.jpg │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DataBaseHelper.swift │ ├── DetailViewController.swift │ ├── Info.plist │ ├── MySpecialGallery.xcdatamodeld │ ├── .xccurrentversion │ └── MySpecialGallery.xcdatamodel │ │ └── contents │ ├── SceneDelegate.swift │ ├── TableViewCell.swift │ ├── ViewController.swift │ └── default-image.jpg ├── NOCODE ├── NOCODE.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── NOCODE │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ ├── autumn.jpg │ ├── spring.jpg │ ├── summer.jpg │ └── winter.jpg ├── NavigationBar ├── NavigationBar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── NavigationBar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── NotesApp ├── .DS_Store ├── NotesApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── NotesApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NewViewController.swift │ ├── NoteViewController.swift │ ├── NotesApp.xcdatamodeld │ ├── .xccurrentversion │ └── NotesApp.xcdatamodel │ │ └── contents │ ├── SceneDelegate.swift │ └── ViewController.swift ├── NumberApp ├── .DS_Store ├── NumberApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── NumberApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── number-background.jpg ├── PuzzleApp ├── PuzzleApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── PuzzleApp │ ├── .DS_Store │ ├── Alert.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Charuzard.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800.png │ │ └── Contents.json │ ├── Contents.json │ ├── Pikachu.imageset │ │ ├── 6-2-pokemon-png-hd_400x400.png │ │ └── Contents.json │ ├── Soldier.imageset │ │ ├── Contents.json │ │ └── Soldier.png │ ├── charuzardBody.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-6.png │ │ └── Contents.json │ ├── charuzardFace.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-5.png │ │ └── Contents.json │ ├── charuzardLeftWing.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-2.png │ │ └── Contents.json │ ├── charuzardNeck.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-4.png │ │ └── Contents.json │ ├── charuzardRightHand.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-7.png │ │ └── Contents.json │ ├── charuzardRightLeg.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-10.png │ │ └── Contents.json │ ├── charuzardRightWing.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-3.png │ │ └── Contents.json │ ├── charuzardTail.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-9.png │ │ └── Contents.json │ ├── charuzardTailEnd.imageset │ │ ├── 20252-5-pokemon-transparent-background_800x800-8.png │ │ └── Contents.json │ ├── pikachuLeftBody.imageset │ │ ├── 6-2-pokemon-png-hd_400x400-3.png │ │ └── Contents.json │ ├── pikachuLeftFace.imageset │ │ ├── 6-2-pokemon-png-hd_400x400-5.png │ │ └── Contents.json │ ├── pikachuRightBody.imageset │ │ ├── 6-2-pokemon-png-hd_400x400-2.png │ │ └── Contents.json │ ├── pikachuRightFace.imageset │ │ ├── 6-2-pokemon-png-hd_400x400-4.png │ │ └── Contents.json │ ├── soldier1.imageset │ │ ├── Contents.json │ │ └── Puzzle (1).png │ ├── soldier10.imageset │ │ ├── Contents.json │ │ └── Puzzle (10).png │ ├── soldier11.imageset │ │ ├── Contents.json │ │ └── Puzzle (11).png │ ├── soldier12.imageset │ │ ├── Contents.json │ │ └── Puzzle (12).png │ ├── soldier13.imageset │ │ ├── Contents.json │ │ └── Puzzle (13).png │ ├── soldier14.imageset │ │ ├── Contents.json │ │ └── Puzzle (14).png │ ├── soldier15.imageset │ │ ├── Contents.json │ │ └── Puzzle (15).png │ ├── soldier16.imageset │ │ ├── Contents.json │ │ └── Puzzle (16).png │ ├── soldier2.imageset │ │ ├── Contents.json │ │ └── Puzzle (2).png │ ├── soldier3.imageset │ │ ├── Contents.json │ │ └── Puzzle (3).png │ ├── soldier4.imageset │ │ ├── Contents.json │ │ └── Puzzle (4).png │ ├── soldier5.imageset │ │ ├── Contents.json │ │ └── Puzzle (5).png │ ├── soldier6.imageset │ │ ├── Contents.json │ │ └── Puzzle (6).png │ ├── soldier7.imageset │ │ ├── Contents.json │ │ └── Puzzle (7).png │ ├── soldier8.imageset │ │ ├── Contents.json │ │ └── Puzzle (8).png │ └── soldier9.imageset │ │ ├── Contents.json │ │ └── Puzzle (9).png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CollectionViewCell.swift │ ├── HomeViewController.swift │ ├── Info.plist │ ├── Puzzle.swift │ ├── SceneDelegate.swift │ ├── ViewController.swift │ ├── puzzle-button.png │ ├── puzzle-play.png │ └── puzzle.jpg ├── QuizApp ├── .DS_Store ├── QuizApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── QuizApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HomeViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ ├── play.png │ └── q.jpg ├── README.md ├── RemindersApp ├── .DS_Store ├── RemindersApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── RemindersApp │ ├── AddViewController.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── RestoranApp ├── .DS_Store ├── RestoranApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── RestoranApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── location.jpeg ├── SansOyunlariApp ├── .DS_Store ├── SansOyunlariApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SansOyunlariApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CollectionViewCell.swift │ ├── DateViewController.swift │ ├── Info.plist │ ├── ResultViewController.swift │ ├── SceneDelegate.swift │ ├── Util.swift │ ├── ViewController.swift │ ├── back.png │ ├── logo.jpg │ └── top.png ├── Shadow ├── .DS_Store ├── Shadow.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Shadow │ ├── 1.jpg │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── StatusBar ├── .DS_Store ├── StatusBar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── StatusBar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── SwiftUIExamples ├── SwiftUIExamples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SwiftUIExamples │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── SwiftUIForm ├── .DS_Store ├── SwiftUIForm.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SwiftUIForm │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── TemplateApp ├── .DS_Store ├── Podfile ├── Podfile.lock ├── Pods │ ├── Alamofire │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── AFError.swift │ │ │ ├── Alamofire.swift │ │ │ ├── AlamofireExtended.swift │ │ │ ├── AuthenticationInterceptor.swift │ │ │ ├── CachedResponseHandler.swift │ │ │ ├── Combine.swift │ │ │ ├── DispatchQueue+Alamofire.swift │ │ │ ├── EventMonitor.swift │ │ │ ├── HTTPHeaders.swift │ │ │ ├── HTTPMethod.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── MultipartUpload.swift │ │ │ ├── NetworkReachabilityManager.swift │ │ │ ├── Notifications.swift │ │ │ ├── OperationQueue+Alamofire.swift │ │ │ ├── ParameterEncoder.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Protected.swift │ │ │ ├── RedirectHandler.swift │ │ │ ├── Request.swift │ │ │ ├── RequestInterceptor.swift │ │ │ ├── RequestTaskMap.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result+Alamofire.swift │ │ │ ├── RetryPolicy.swift │ │ │ ├── ServerTrustEvaluation.swift │ │ │ ├── Session.swift │ │ │ ├── SessionDelegate.swift │ │ │ ├── StringEncoding+Alamofire.swift │ │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ │ ├── URLEncodedFormEncoder.swift │ │ │ ├── URLRequest+Alamofire.swift │ │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ │ └── Validation.swift │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Alamofire.xcscheme │ │ │ ├── Pods-TemplateApp.xcscheme │ │ │ ├── SCLAlertView.xcscheme │ │ │ ├── SwiftyJSON.xcscheme │ │ │ └── xcschememanagement.plist │ ├── SCLAlertView │ │ ├── LICENCE │ │ ├── README.md │ │ └── SCLAlertView │ │ │ ├── SCLAlertView.swift │ │ │ └── SCLExtensions.swift │ ├── SwiftyJSON │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ └── SwiftyJSON │ │ │ └── SwiftyJSON.swift │ └── Target Support Files │ │ ├── Alamofire │ │ ├── Alamofire-Info.plist │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.debug.xcconfig │ │ ├── Alamofire.modulemap │ │ └── Alamofire.release.xcconfig │ │ ├── Pods-TemplateApp │ │ ├── Pods-TemplateApp-Info.plist │ │ ├── Pods-TemplateApp-acknowledgements.markdown │ │ ├── Pods-TemplateApp-acknowledgements.plist │ │ ├── Pods-TemplateApp-dummy.m │ │ ├── Pods-TemplateApp-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-TemplateApp-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-TemplateApp-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-TemplateApp-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-TemplateApp-frameworks.sh │ │ ├── Pods-TemplateApp-umbrella.h │ │ ├── Pods-TemplateApp.debug.xcconfig │ │ ├── Pods-TemplateApp.modulemap │ │ └── Pods-TemplateApp.release.xcconfig │ │ ├── SCLAlertView │ │ ├── SCLAlertView-Info.plist │ │ ├── SCLAlertView-dummy.m │ │ ├── SCLAlertView-prefix.pch │ │ ├── SCLAlertView-umbrella.h │ │ ├── SCLAlertView.debug.xcconfig │ │ ├── SCLAlertView.modulemap │ │ └── SCLAlertView.release.xcconfig │ │ └── SwiftyJSON │ │ ├── SwiftyJSON-Info.plist │ │ ├── SwiftyJSON-dummy.m │ │ ├── SwiftyJSON-prefix.pch │ │ ├── SwiftyJSON-umbrella.h │ │ ├── SwiftyJSON.debug.xcconfig │ │ ├── SwiftyJSON.modulemap │ │ └── SwiftyJSON.release.xcconfig ├── TemplateApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── TemplateApp.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── TemplateApp │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Business │ ├── CoreData.swift │ ├── Extension.swift │ └── Service.swift │ ├── ContactViewController.swift │ ├── Controller │ ├── CategoryVC.swift │ ├── SubCategoryVC.swift │ └── TopCategoryVC.swift │ ├── DetailTableViewCell.swift │ ├── DetailViewController.swift │ ├── FavoriteTableViewCell.swift │ ├── FavoriteViewController.swift │ ├── Info.plist │ ├── Model.swift │ ├── Models │ └── Root.swift │ ├── SceneDelegate.swift │ ├── TableViewCell.swift │ ├── TemplateApp.xcdatamodeld │ ├── .xccurrentversion │ └── TemplateApp.xcdatamodel │ │ └── contents │ ├── View │ └── TopCategoryTableViewCell.swift │ └── ViewController.swift ├── TodoApp ├── .DS_Store ├── TodoApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── TodoApp │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@2x-1.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x-1.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@2x-1.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ └── ItunesArtwork@2x.png │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DatabaseHelper.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── Task.swift │ ├── TaskStore.swift │ ├── TodoApp.xcdatamodeld │ ├── .xccurrentversion │ └── TodoApp.xcdatamodel │ │ └── contents │ ├── ViewController.swift │ ├── checkmark-24.png │ ├── checkmark-48.png │ ├── checkmark-72.png │ ├── logo.png │ ├── trash-24.png │ ├── trash-48.png │ └── trash-72.png ├── WeatherApp ├── .DS_Store ├── WeatherApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── WeatherApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── weather.jpg ├── WebViewApp ├── WebViewApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── WebViewApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── YoutubeApp ├── .DS_Store ├── YoutubeApp.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── mac.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── YoutubeApp ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── DetailTableViewCell.swift ├── DetailViewController.swift ├── Info.plist ├── Model └── Video.swift ├── SceneDelegate.swift ├── VideoTableViewCell.swift ├── ViewController.swift ├── YoutubeApp.xcdatamodeld ├── .xccurrentversion └── YoutubeApp.xcdatamodel │ └── contents ├── channel-logo.png ├── logo.jpg └── videos.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/.DS_Store -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/AppDelegate.swift -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/DetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/DetailTableViewCell.swift -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/Info.plist -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/SceneDelegate.swift -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/Video.swift -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/VideoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/VideoTableViewCell.swift -------------------------------------------------------------------------------- /1-YoutubeCloneApp/1-YoutubeCloneApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/1-YoutubeCloneApp/1-YoutubeCloneApp/ViewController.swift -------------------------------------------------------------------------------- /AvSpeechSynthesizer/AvSpeechSynthesizer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AvSpeechSynthesizer/AvSpeechSynthesizer/AppDelegate.swift -------------------------------------------------------------------------------- /AvSpeechSynthesizer/AvSpeechSynthesizer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AvSpeechSynthesizer/AvSpeechSynthesizer/Info.plist -------------------------------------------------------------------------------- /AvSpeechSynthesizer/AvSpeechSynthesizer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AvSpeechSynthesizer/AvSpeechSynthesizer/ViewController.swift -------------------------------------------------------------------------------- /AwesomeApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/.DS_Store -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/App/AppDelegate.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/App/SceneDelegate.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Common/Constants.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Common/Halper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Common/Halper.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Common/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Common/Util.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Info.plist -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Comics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Comics.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Data.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Events.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Events.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Items.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Items.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Results.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/RootModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/RootModel.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Series.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Stories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Stories.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Thumbnail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Thumbnail.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Characters/Urls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Characters/Urls.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Characters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Characters.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/ComicsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/ComicsData.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/ComicsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/ComicsModel.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/ComicsResults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/ComicsResults.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Creators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Creators.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Dates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Dates.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Images.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Prices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Prices.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/TextObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/TextObjects.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Model/Comics/Variants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Model/Comics/Variants.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/Services/EndPoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/Services/EndPoints.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/View/Detail/DetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/View/Detail/DetailTableViewCell.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/View/Detail/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/View/Detail/DetailViewController.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeApp/ViewModel/CharacterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeApp/ViewModel/CharacterViewModel.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeAppTests/AwesomeAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeAppTests/AwesomeAppTests.swift -------------------------------------------------------------------------------- /AwesomeApp/AwesomeAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/AwesomeAppTests/Info.plist -------------------------------------------------------------------------------- /AwesomeApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Podfile -------------------------------------------------------------------------------- /AwesomeApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Podfile.lock -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /AwesomeApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /AwesomeApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/AwesomeApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AwesomeApp/Pods/Target Support Files/Pods-AwesomeApp/Pods-AwesomeApp-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework -------------------------------------------------------------------------------- /AwesomeApp/Pods/Target Support Files/Pods-AwesomeApp/Pods-AwesomeApp-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework -------------------------------------------------------------------------------- /CeviriyleOgren/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/.DS_Store -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Controllers/BookVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Controllers/BookVC.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Controllers/ChapterVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Controllers/ChapterVC.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Controllers/ParagraphVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Controllers/ParagraphVC.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Delegates/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Delegates/AppDelegate.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Delegates/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Delegates/SceneDelegate.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/GoogleService-Info.plist -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Info.plist -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Models/ItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Models/ItemModel.swift -------------------------------------------------------------------------------- /CeviriyleOgren/CeviriyleOgren/Services/DataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/CeviriyleOgren/Services/DataService.swift -------------------------------------------------------------------------------- /CeviriyleOgren/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Podfile -------------------------------------------------------------------------------- /CeviriyleOgren/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Podfile.lock -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/CoreOnly/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/CoreOnly/CHANGELOG.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/CoreOnly/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/CoreOnly/NOTICES -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/CoreOnly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/CoreOnly/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Firebase/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuth/Firebase/Auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuth/Firebase/Auth/CHANGELOG.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuth/Firebase/Auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuth/Firebase/Auth/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuth/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuth/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuthInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuthInterop/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseAuthInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseAuthInterop/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCoreDiagnosticsInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCoreDiagnosticsInterop/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseCoreDiagnosticsInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseCoreDiagnosticsInterop/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseDatabase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseDatabase/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseDatabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseDatabase/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseInstanceID/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseInstanceID/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/FirebaseInstanceID/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleDataTransportCCTSupport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleDataTransportCCTSupport/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleDataTransportCCTSupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleDataTransportCCTSupport/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleUtilities/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleUtilities/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Manifest.lock -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/LICENSE -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/builder.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/builder.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/c.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/db_impl.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/db_impl.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/db_iter.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/db_iter.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/dbformat.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/dbformat.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/dumpfile.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/filename.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/filename.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/log_format.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/log_reader.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/log_reader.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/log_writer.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/log_writer.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/memtable.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/memtable.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/repair.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/skiplist.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/snapshot.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/table_cache.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/table_cache.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/version_edit.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/version_edit.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/version_set.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/version_set.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/write_batch.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/db/write_batch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/db/write_batch_internal.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/c.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/cache.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/db.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/env.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/export.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/options.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/slice.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/status.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/include/leveldb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/include/leveldb/table.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/port/port.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/port/port_example.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/port/port_stdcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/port/port_stdcxx.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/port/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/port/thread_annotations.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/block.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/block.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/block_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/block_builder.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/block_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/block_builder.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/filter_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/filter_block.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/filter_block.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/format.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/format.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/iterator.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/iterator_wrapper.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/merger.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/merger.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/table.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/table/table_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/table/table_builder.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/arena.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/arena.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/bloom.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/cache.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/coding.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/coding.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/comparator.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/crc32c.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/crc32c.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/env.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/env_posix.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/filter_policy.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/hash.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/hash.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/histogram.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/histogram.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/logging.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/logging.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/mutexlock.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/no_destructor.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/options.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/posix_logger.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/random.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/status.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/testharness.cc -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/testharness.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/testutil.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/leveldb-library/util/windows_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/leveldb-library/util/windows_logger.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/README.md -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /CeviriyleOgren/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CeviriyleOgren/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /ChangeButtonColor/ChangeButtonColor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/ChangeButtonColor/ChangeButtonColor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChangeButtonColor/ChangeButtonColor/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/ChangeButtonColor/ChangeButtonColor/AppDelegate.swift -------------------------------------------------------------------------------- /ChangeButtonColor/ChangeButtonColor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/ChangeButtonColor/ChangeButtonColor/Info.plist -------------------------------------------------------------------------------- /ChangeButtonColor/ChangeButtonColor/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/ChangeButtonColor/ChangeButtonColor/SceneDelegate.swift -------------------------------------------------------------------------------- /ChangeButtonColor/ChangeButtonColor/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/ChangeButtonColor/ChangeButtonColor/ViewController.swift -------------------------------------------------------------------------------- /CreateAQrCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/.DS_Store -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode/AppDelegate.swift -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode/Info.plist -------------------------------------------------------------------------------- /CreateAQrCode/CreateAQrCode/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CreateAQrCode/CreateAQrCode/ViewController.swift -------------------------------------------------------------------------------- /CurrencyConverter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/.DS_Store -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/AppDelegate.swift -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/Currency.swift -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/Info.plist -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/SceneDelegate.swift -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/TableViewCell.swift -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/ViewController.swift -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/DKK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/DKK.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/EUR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/EUR.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/GBP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/GBP.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/JPY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/JPY.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/TRY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/TRY.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/USD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/USD.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/back.jpg -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/currency.png -------------------------------------------------------------------------------- /CurrencyConverter/CurrencyConverter/flags/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/CurrencyConverter/CurrencyConverter/flags/default.png -------------------------------------------------------------------------------- /FirebaseApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/.DS_Store -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/.DS_Store -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/BookChapterVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/BookChapterVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/BookHomeVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/BookHomeVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/BookParagrafVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/BookParagrafVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/BookTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/BookTableViewCell.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/SignInVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/SignInVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/SignUpVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/SignUpVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/TableViewCell.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/UploadVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/UploadVC.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Controllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Controllers/ViewController.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Delegates/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Delegates/AppDelegate.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Delegates/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Delegates/SceneDelegate.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/GoogleService-Info.plist -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Helpers/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Helpers/Common.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Info.plist -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Models/ItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Models/ItemModel.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Services/DataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Services/DataService.swift -------------------------------------------------------------------------------- /FirebaseApp/FirebaseApp/Views/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/FirebaseApp/Views/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FirebaseApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Podfile -------------------------------------------------------------------------------- /FirebaseApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Podfile.lock -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/CoreOnly/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/CoreOnly/CHANGELOG.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/CoreOnly/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/CoreOnly/NOTICES -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/CoreOnly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/CoreOnly/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Firebase/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuth/Firebase/Auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuth/Firebase/Auth/CHANGELOG.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuth/Firebase/Auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuth/Firebase/Auth/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuth/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuth/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuthInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuthInterop/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseAuthInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseAuthInterop/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCoreDiagnosticsInterop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCoreDiagnosticsInterop/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseCoreDiagnosticsInterop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseCoreDiagnosticsInterop/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseDatabase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseDatabase/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseDatabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseDatabase/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseInstanceID/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseInstanceID/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/FirebaseInstanceID/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleDataTransportCCTSupport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleDataTransportCCTSupport/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleDataTransportCCTSupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleDataTransportCCTSupport/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleUtilities/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleUtilities/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /FirebaseApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FirebaseApp/Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/LICENSE -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/builder.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/builder.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/c.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/db_impl.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/db_impl.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/db_iter.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/db_iter.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/dbformat.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/dbformat.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/dumpfile.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/filename.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/filename.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/log_format.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/log_reader.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/log_reader.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/log_writer.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/log_writer.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/memtable.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/memtable.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/repair.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/skiplist.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/snapshot.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/table_cache.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/table_cache.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/version_edit.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/version_edit.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/version_set.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/version_set.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/write_batch.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/db/write_batch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/db/write_batch_internal.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/c.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/cache.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/db.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/env.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/export.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/options.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/slice.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/status.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/include/leveldb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/include/leveldb/table.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/port/port.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/port/port_example.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/port/port_stdcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/port/port_stdcxx.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/port/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/port/thread_annotations.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/block.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/block.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/block_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/block_builder.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/block_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/block_builder.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/filter_block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/filter_block.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/filter_block.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/format.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/format.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/iterator.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/iterator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/iterator_wrapper.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/merger.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/merger.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/table.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/table/table_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/table/table_builder.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/arena.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/arena.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/bloom.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/cache.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/coding.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/coding.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/comparator.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/crc32c.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/crc32c.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/env.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/env_posix.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/filter_policy.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/hash.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/hash.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/histogram.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/histogram.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/logging.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/logging.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/mutexlock.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/no_destructor.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/options.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/posix_logger.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/random.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/status.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/testharness.cc -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/testharness.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/testutil.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/leveldb-library/util/windows_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/leveldb-library/util/windows_logger.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/README.md -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /FirebaseApp/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/FirebaseApp/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /LimitUITextView/LimitUITextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LimitUITextView/LimitUITextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LimitUITextView/LimitUITextView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LimitUITextView/LimitUITextView/AppDelegate.swift -------------------------------------------------------------------------------- /LimitUITextView/LimitUITextView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LimitUITextView/LimitUITextView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LimitUITextView/LimitUITextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LimitUITextView/LimitUITextView/Info.plist -------------------------------------------------------------------------------- /LimitUITextView/LimitUITextView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LimitUITextView/LimitUITextView/ViewController.swift -------------------------------------------------------------------------------- /LoadHTMLString/LoadHTMLString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadHTMLString/LoadHTMLString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LoadHTMLString/LoadHTMLString/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadHTMLString/LoadHTMLString/AppDelegate.swift -------------------------------------------------------------------------------- /LoadHTMLString/LoadHTMLString/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadHTMLString/LoadHTMLString/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LoadHTMLString/LoadHTMLString/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadHTMLString/LoadHTMLString/Info.plist -------------------------------------------------------------------------------- /LoadHTMLString/LoadHTMLString/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadHTMLString/LoadHTMLString/ViewController.swift -------------------------------------------------------------------------------- /LoadRemoteImageUrl/LoadRemoteImageUrl/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadRemoteImageUrl/LoadRemoteImageUrl/AppDelegate.swift -------------------------------------------------------------------------------- /LoadRemoteImageUrl/LoadRemoteImageUrl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadRemoteImageUrl/LoadRemoteImageUrl/Info.plist -------------------------------------------------------------------------------- /LoadRemoteImageUrl/LoadRemoteImageUrl/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/LoadRemoteImageUrl/LoadRemoteImageUrl/ViewController.swift -------------------------------------------------------------------------------- /MapKitApp/MapKitApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/AppDelegate.swift -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/Info.plist -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/SceneDelegate.swift -------------------------------------------------------------------------------- /MapKitApp/MapKitApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MapKitApp/MapKitApp/ViewController.swift -------------------------------------------------------------------------------- /MoviesApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/.DS_Store -------------------------------------------------------------------------------- /MoviesApp/MoviesApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/.DS_Store -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/AppDelegate.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/arrival-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/arrival-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/arrival-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/arrival-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/avengersultron-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/avengersultron-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/avengersultron-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/avengersultron-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/batmanvsuperman-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/batmanvsuperman-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/batmanvsuperman-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/batmanvsuperman-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/civilwar-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/civilwar-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/civilwar-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/civilwar-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/deadpool-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/deadpool-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/deadpool-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/deadpool-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/doctorstrange-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/doctorstrange-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/doctorstrange-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/doctorstrange-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/kongskull-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/kongskull-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/kongskull-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/kongskull-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/legobatman-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/legobatman-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/legobatman-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/legobatman-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/logan-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/logan-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/logan-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/logan-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/madmax-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/madmax-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/madmax-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/madmax-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/rogueone-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/rogueone-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/rogueone-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/rogueone-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/suicidesquad-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/suicidesquad-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/suicidesquad-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/suicidesquad-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/sully-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/sully-small.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Files/sully-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Files/sully-wide.jpg -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Info.plist -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/Movie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/Movie.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/MovieTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/MovieTableViewCell.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/MovieViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/MovieViewController.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/MoviesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/MoviesTableViewController.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/SceneDelegate.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/ViewController.swift -------------------------------------------------------------------------------- /MoviesApp/MoviesApp/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MoviesApp/MoviesApp/jokes.json -------------------------------------------------------------------------------- /MyApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/.DS_Store -------------------------------------------------------------------------------- /MyApp/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MyApp/MyApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/AppDelegate.swift -------------------------------------------------------------------------------- /MyApp/MyApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MyApp/MyApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MyApp/MyApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MyApp/MyApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/Info.plist -------------------------------------------------------------------------------- /MyApp/MyApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/SceneDelegate.swift -------------------------------------------------------------------------------- /MyApp/MyApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/ViewController.swift -------------------------------------------------------------------------------- /MyApp/MyApp/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyApp/MyApp/contact.jpg -------------------------------------------------------------------------------- /MyCol/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/.DS_Store -------------------------------------------------------------------------------- /MyCol/MyCol.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MyCol/MyCol/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/AppDelegate.swift -------------------------------------------------------------------------------- /MyCol/MyCol/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MyCol/MyCol/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MyCol/MyCol/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MyCol/MyCol/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/CollectionViewCell.swift -------------------------------------------------------------------------------- /MyCol/MyCol/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/Info.plist -------------------------------------------------------------------------------- /MyCol/MyCol/MyCol.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/MyCol.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /MyCol/MyCol/MyCol.xcdatamodeld/MyCol.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/MyCol.xcdatamodeld/MyCol.xcdatamodel/contents -------------------------------------------------------------------------------- /MyCol/MyCol/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/SceneDelegate.swift -------------------------------------------------------------------------------- /MyCol/MyCol/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MyCol/MyCol/ViewController.swift -------------------------------------------------------------------------------- /MySpecialGallery/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/.DS_Store -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/.DS_Store -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/1.jpg -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/AppDelegate.swift -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/DataBaseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/DataBaseHelper.swift -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/Info.plist -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/SceneDelegate.swift -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/TableViewCell.swift -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/ViewController.swift -------------------------------------------------------------------------------- /MySpecialGallery/MySpecialGallery/default-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/MySpecialGallery/MySpecialGallery/default-image.jpg -------------------------------------------------------------------------------- /NOCODE/NOCODE.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NOCODE/NOCODE/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/AppDelegate.swift -------------------------------------------------------------------------------- /NOCODE/NOCODE/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NOCODE/NOCODE/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NOCODE/NOCODE/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NOCODE/NOCODE/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/Info.plist -------------------------------------------------------------------------------- /NOCODE/NOCODE/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/SceneDelegate.swift -------------------------------------------------------------------------------- /NOCODE/NOCODE/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/ViewController.swift -------------------------------------------------------------------------------- /NOCODE/NOCODE/autumn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/autumn.jpg -------------------------------------------------------------------------------- /NOCODE/NOCODE/spring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/spring.jpg -------------------------------------------------------------------------------- /NOCODE/NOCODE/summer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/summer.jpg -------------------------------------------------------------------------------- /NOCODE/NOCODE/winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NOCODE/NOCODE/winter.jpg -------------------------------------------------------------------------------- /NavigationBar/NavigationBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NavigationBar/NavigationBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar/AppDelegate.swift -------------------------------------------------------------------------------- /NavigationBar/NavigationBar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NavigationBar/NavigationBar/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NavigationBar/NavigationBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar/Info.plist -------------------------------------------------------------------------------- /NavigationBar/NavigationBar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NavigationBar/NavigationBar/ViewController.swift -------------------------------------------------------------------------------- /NotesApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/.DS_Store -------------------------------------------------------------------------------- /NotesApp/NotesApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NotesApp/NotesApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/AppDelegate.swift -------------------------------------------------------------------------------- /NotesApp/NotesApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NotesApp/NotesApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NotesApp/NotesApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NotesApp/NotesApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/Info.plist -------------------------------------------------------------------------------- /NotesApp/NotesApp/NewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/NewViewController.swift -------------------------------------------------------------------------------- /NotesApp/NotesApp/NoteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/NoteViewController.swift -------------------------------------------------------------------------------- /NotesApp/NotesApp/NotesApp.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/NotesApp.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /NotesApp/NotesApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/SceneDelegate.swift -------------------------------------------------------------------------------- /NotesApp/NotesApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NotesApp/NotesApp/ViewController.swift -------------------------------------------------------------------------------- /NumberApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/.DS_Store -------------------------------------------------------------------------------- /NumberApp/NumberApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NumberApp/NumberApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/AppDelegate.swift -------------------------------------------------------------------------------- /NumberApp/NumberApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NumberApp/NumberApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NumberApp/NumberApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NumberApp/NumberApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/Info.plist -------------------------------------------------------------------------------- /NumberApp/NumberApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/SceneDelegate.swift -------------------------------------------------------------------------------- /NumberApp/NumberApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/ViewController.swift -------------------------------------------------------------------------------- /NumberApp/NumberApp/number-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/NumberApp/NumberApp/number-background.jpg -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/.DS_Store -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Alert.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/AppDelegate.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/CollectionViewCell.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/HomeViewController.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Info.plist -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/Puzzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/Puzzle.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/SceneDelegate.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/ViewController.swift -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/puzzle-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/puzzle-button.png -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/puzzle-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/puzzle-play.png -------------------------------------------------------------------------------- /PuzzleApp/PuzzleApp/puzzle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/PuzzleApp/PuzzleApp/puzzle.jpg -------------------------------------------------------------------------------- /QuizApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/.DS_Store -------------------------------------------------------------------------------- /QuizApp/QuizApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QuizApp/QuizApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/AppDelegate.swift -------------------------------------------------------------------------------- /QuizApp/QuizApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /QuizApp/QuizApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /QuizApp/QuizApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /QuizApp/QuizApp/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/HomeViewController.swift -------------------------------------------------------------------------------- /QuizApp/QuizApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/Info.plist -------------------------------------------------------------------------------- /QuizApp/QuizApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/SceneDelegate.swift -------------------------------------------------------------------------------- /QuizApp/QuizApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/ViewController.swift -------------------------------------------------------------------------------- /QuizApp/QuizApp/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/play.png -------------------------------------------------------------------------------- /QuizApp/QuizApp/q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/QuizApp/QuizApp/q.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/README.md -------------------------------------------------------------------------------- /RemindersApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/.DS_Store -------------------------------------------------------------------------------- /RemindersApp/RemindersApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/AddViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/AddViewController.swift -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/AppDelegate.swift -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/Info.plist -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/SceneDelegate.swift -------------------------------------------------------------------------------- /RemindersApp/RemindersApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RemindersApp/RemindersApp/ViewController.swift -------------------------------------------------------------------------------- /RestoranApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/.DS_Store -------------------------------------------------------------------------------- /RestoranApp/RestoranApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/AppDelegate.swift -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/Info.plist -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/SceneDelegate.swift -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/ViewController.swift -------------------------------------------------------------------------------- /RestoranApp/RestoranApp/location.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/RestoranApp/RestoranApp/location.jpeg -------------------------------------------------------------------------------- /SansOyunlariApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/.DS_Store -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/AppDelegate.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/CollectionViewCell.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/DateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/DateViewController.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/Info.plist -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/ResultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/ResultViewController.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/SceneDelegate.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/Util.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/ViewController.swift -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/back.png -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/logo.jpg -------------------------------------------------------------------------------- /SansOyunlariApp/SansOyunlariApp/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SansOyunlariApp/SansOyunlariApp/top.png -------------------------------------------------------------------------------- /Shadow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/.DS_Store -------------------------------------------------------------------------------- /Shadow/Shadow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Shadow/Shadow/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/1.jpg -------------------------------------------------------------------------------- /Shadow/Shadow/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/AppDelegate.swift -------------------------------------------------------------------------------- /Shadow/Shadow/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shadow/Shadow/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Shadow/Shadow/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Shadow/Shadow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/Info.plist -------------------------------------------------------------------------------- /Shadow/Shadow/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/SceneDelegate.swift -------------------------------------------------------------------------------- /Shadow/Shadow/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/Shadow/Shadow/ViewController.swift -------------------------------------------------------------------------------- /StatusBar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/.DS_Store -------------------------------------------------------------------------------- /StatusBar/StatusBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StatusBar/StatusBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/AppDelegate.swift -------------------------------------------------------------------------------- /StatusBar/StatusBar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StatusBar/StatusBar/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StatusBar/StatusBar/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StatusBar/StatusBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/Info.plist -------------------------------------------------------------------------------- /StatusBar/StatusBar/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/SceneDelegate.swift -------------------------------------------------------------------------------- /StatusBar/StatusBar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/StatusBar/StatusBar/ViewController.swift -------------------------------------------------------------------------------- /SwiftUIExamples/SwiftUIExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIExamples/SwiftUIExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIExamples/SwiftUIExamples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIExamples/SwiftUIExamples/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftUIExamples/SwiftUIExamples/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIExamples/SwiftUIExamples/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIExamples/SwiftUIExamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIExamples/SwiftUIExamples/Info.plist -------------------------------------------------------------------------------- /SwiftUIExamples/SwiftUIExamples/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIExamples/SwiftUIExamples/SceneDelegate.swift -------------------------------------------------------------------------------- /SwiftUIForm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/.DS_Store -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/Info.plist -------------------------------------------------------------------------------- /SwiftUIForm/SwiftUIForm/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/SwiftUIForm/SwiftUIForm/SceneDelegate.swift -------------------------------------------------------------------------------- /TemplateApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/.DS_Store -------------------------------------------------------------------------------- /TemplateApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Podfile -------------------------------------------------------------------------------- /TemplateApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Podfile.lock -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /TemplateApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /TemplateApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TemplateApp/Pods/SCLAlertView/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/SCLAlertView/LICENCE -------------------------------------------------------------------------------- /TemplateApp/Pods/SCLAlertView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/SCLAlertView/README.md -------------------------------------------------------------------------------- /TemplateApp/Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /TemplateApp/Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /TemplateApp/TemplateApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/.DS_Store -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/AppDelegate.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Business/CoreData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Business/CoreData.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Business/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Business/Extension.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Business/Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Business/Service.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/ContactViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/ContactViewController.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Controller/CategoryVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Controller/CategoryVC.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Controller/SubCategoryVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Controller/SubCategoryVC.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Controller/TopCategoryVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Controller/TopCategoryVC.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/DetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/DetailTableViewCell.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/DetailViewController.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/FavoriteTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/FavoriteTableViewCell.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/FavoriteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/FavoriteViewController.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Info.plist -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Model.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/Models/Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/Models/Root.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/SceneDelegate.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/TableViewCell.swift -------------------------------------------------------------------------------- /TemplateApp/TemplateApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TemplateApp/TemplateApp/ViewController.swift -------------------------------------------------------------------------------- /TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/.DS_Store -------------------------------------------------------------------------------- /TodoApp/TodoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TodoApp/TodoApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/.DS_Store -------------------------------------------------------------------------------- /TodoApp/TodoApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/AppDelegate.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TodoApp/TodoApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TodoApp/TodoApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TodoApp/TodoApp/DatabaseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/DatabaseHelper.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/Info.plist -------------------------------------------------------------------------------- /TodoApp/TodoApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/SceneDelegate.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/Task.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/TaskStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/TaskStore.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/TodoApp.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/TodoApp.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /TodoApp/TodoApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/ViewController.swift -------------------------------------------------------------------------------- /TodoApp/TodoApp/checkmark-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/checkmark-24.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/checkmark-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/checkmark-48.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/checkmark-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/checkmark-72.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/logo.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/trash-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/trash-24.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/trash-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/trash-48.png -------------------------------------------------------------------------------- /TodoApp/TodoApp/trash-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/TodoApp/TodoApp/trash-72.png -------------------------------------------------------------------------------- /WeatherApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/.DS_Store -------------------------------------------------------------------------------- /WeatherApp/WeatherApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/AppDelegate.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/DetailViewController.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/Info.plist -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/SceneDelegate.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/ViewController.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WeatherApp/WeatherApp/weather.jpg -------------------------------------------------------------------------------- /WebViewApp/WebViewApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/AppDelegate.swift -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/Info.plist -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/SceneDelegate.swift -------------------------------------------------------------------------------- /WebViewApp/WebViewApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/WebViewApp/WebViewApp/ViewController.swift -------------------------------------------------------------------------------- /YoutubeApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/.DS_Store -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/.DS_Store -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/AppDelegate.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/DetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/DetailTableViewCell.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/DetailViewController.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/Info.plist -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/Model/Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/Model/Video.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/SceneDelegate.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/VideoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/VideoTableViewCell.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/ViewController.swift -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/channel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/channel-logo.png -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/logo.jpg -------------------------------------------------------------------------------- /YoutubeApp/YoutubeApp/videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cagdaseksi/letslearnswift/HEAD/YoutubeApp/YoutubeApp/videos.json --------------------------------------------------------------------------------