├── .DS_Store ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFCompatibilityMacros.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── ALAlertBanner │ ├── ALAlertBanner │ │ ├── ALAlertBanner+Private.h │ │ ├── ALAlertBanner.h │ │ ├── ALAlertBanner.m │ │ ├── ALAlertBannerManager.h │ │ ├── ALAlertBannerManager.m │ │ └── Images │ │ │ ├── bannerAlert.png │ │ │ ├── bannerAlert@2x.png │ │ │ ├── bannerFailure.png │ │ │ ├── bannerFailure@2x.png │ │ │ ├── bannerNotify.png │ │ │ ├── bannerNotify@2x.png │ │ │ ├── bannerSuccess.png │ │ │ └── bannerSuccess@2x.png │ ├── LICENSE │ └── README.md ├── Firebase │ ├── CoreOnly │ │ └── Sources │ │ │ ├── Firebase.h │ │ │ └── module.modulemap │ └── README.md ├── FirebaseAnalytics │ └── Frameworks │ │ ├── FirebaseAnalytics.framework │ │ ├── FirebaseAnalytics │ │ ├── Headers │ │ │ ├── FIRAnalytics+AppDelegate.h │ │ │ ├── FIRAnalytics.h │ │ │ ├── FIRAnalyticsSwiftNameSupport.h │ │ │ ├── FIREventNames.h │ │ │ ├── FIRParameterNames.h │ │ │ ├── FIRUserPropertyNames.h │ │ │ └── FirebaseAnalytics.h │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── FirebaseCoreDiagnostics.framework │ │ ├── FirebaseCoreDiagnostics │ │ └── Modules │ │ │ └── module.modulemap │ │ └── FirebaseNanoPB.framework │ │ └── FirebaseNanoPB ├── FirebaseCore │ ├── Firebase │ │ └── Core │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ ├── FIRApp.m │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ ├── FIRBundleUtil.m │ │ │ ├── FIRConfiguration.m │ │ │ ├── FIRErrors.m │ │ │ ├── FIRLogger.m │ │ │ ├── FIRMutableDictionary.m │ │ │ ├── FIRNetwork.m │ │ │ ├── FIRNetworkConstants.m │ │ │ ├── FIRNetworkURLSession.m │ │ │ ├── FIROptions.m │ │ │ ├── FIRReachabilityChecker.m │ │ │ ├── FIRVersion.m │ │ │ ├── Private │ │ │ ├── FIRAnalyticsConfiguration+Internal.h │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ ├── FIRAppInternal.h │ │ │ ├── FIRBundleUtil.h │ │ │ ├── FIRErrorCode.h │ │ │ ├── FIRErrors.h │ │ │ ├── FIRLogger.h │ │ │ ├── FIRMutableDictionary.h │ │ │ ├── FIRNetwork.h │ │ │ ├── FIRNetworkConstants.h │ │ │ ├── FIRNetworkLoggerProtocol.h │ │ │ ├── FIRNetworkMessageCode.h │ │ │ ├── FIRNetworkURLSession.h │ │ │ ├── FIROptionsInternal.h │ │ │ ├── FIRReachabilityChecker+Internal.h │ │ │ ├── FIRReachabilityChecker.h │ │ │ └── FIRVersion.h │ │ │ ├── Public │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ ├── FIROptions.h │ │ │ └── FirebaseCore.h │ │ │ └── third_party │ │ │ ├── FIRAppEnvironmentUtil.h │ │ │ └── FIRAppEnvironmentUtil.m │ ├── LICENSE │ └── README.md ├── FirebaseInstanceID │ ├── CHANGELOG.md │ ├── Frameworks │ │ └── FirebaseInstanceID.framework │ │ │ ├── FirebaseInstanceID │ │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ │ └── Modules │ │ │ └── module.modulemap │ └── README.md ├── FirebaseMessaging │ ├── Firebase │ │ └── Messaging │ │ │ ├── FIRMMessageCode.h │ │ │ ├── FIRMessaging+FIRApp.h │ │ │ ├── FIRMessaging+FIRApp.m │ │ │ ├── FIRMessaging.m │ │ │ ├── FIRMessagingCheckinService.h │ │ │ ├── FIRMessagingCheckinService.m │ │ │ ├── FIRMessagingClient.h │ │ │ ├── FIRMessagingClient.m │ │ │ ├── FIRMessagingCodedInputStream.h │ │ │ ├── FIRMessagingCodedInputStream.m │ │ │ ├── FIRMessagingConnection.h │ │ │ ├── FIRMessagingConnection.m │ │ │ ├── FIRMessagingConstants.h │ │ │ ├── FIRMessagingConstants.m │ │ │ ├── FIRMessagingContextManagerService.h │ │ │ ├── FIRMessagingContextManagerService.m │ │ │ ├── FIRMessagingDataMessageManager.h │ │ │ ├── FIRMessagingDataMessageManager.m │ │ │ ├── FIRMessagingDefines.h │ │ │ ├── FIRMessagingDelayedMessageQueue.h │ │ │ ├── FIRMessagingDelayedMessageQueue.m │ │ │ ├── FIRMessagingLogger.h │ │ │ ├── FIRMessagingLogger.m │ │ │ ├── FIRMessagingPacketQueue.h │ │ │ ├── FIRMessagingPacketQueue.m │ │ │ ├── FIRMessagingPendingTopicsList.h │ │ │ ├── FIRMessagingPendingTopicsList.m │ │ │ ├── FIRMessagingPersistentSyncMessage.h │ │ │ ├── FIRMessagingPersistentSyncMessage.m │ │ │ ├── FIRMessagingPubSub.h │ │ │ ├── FIRMessagingPubSub.m │ │ │ ├── FIRMessagingPubSubRegistrar.h │ │ │ ├── FIRMessagingPubSubRegistrar.m │ │ │ ├── FIRMessagingReceiver.h │ │ │ ├── FIRMessagingReceiver.m │ │ │ ├── FIRMessagingRegistrar.h │ │ │ ├── FIRMessagingRegistrar.m │ │ │ ├── FIRMessagingRemoteNotificationsProxy.h │ │ │ ├── FIRMessagingRemoteNotificationsProxy.m │ │ │ ├── FIRMessagingRmq2PersistentStore.h │ │ │ ├── FIRMessagingRmq2PersistentStore.m │ │ │ ├── FIRMessagingRmqManager.h │ │ │ ├── FIRMessagingRmqManager.m │ │ │ ├── FIRMessagingSecureSocket.h │ │ │ ├── FIRMessagingSecureSocket.m │ │ │ ├── FIRMessagingSyncMessageManager.h │ │ │ ├── FIRMessagingSyncMessageManager.m │ │ │ ├── FIRMessagingTopicOperation.h │ │ │ ├── FIRMessagingTopicOperation.m │ │ │ ├── FIRMessagingTopicsCommon.h │ │ │ ├── FIRMessagingUtilities.h │ │ │ ├── FIRMessagingUtilities.m │ │ │ ├── FIRMessagingVersionUtilities.h │ │ │ ├── FIRMessagingVersionUtilities.m │ │ │ ├── FIRMessaging_Private.h │ │ │ ├── FirebaseMessaging.h │ │ │ ├── InternalHeaders │ │ │ └── FIRMessagingInternalUtilities.h │ │ │ ├── NSDictionary+FIRMessaging.h │ │ │ ├── NSDictionary+FIRMessaging.m │ │ │ ├── NSError+FIRMessaging.h │ │ │ ├── NSError+FIRMessaging.m │ │ │ ├── Protos │ │ │ ├── GtalkCore.pbobjc.h │ │ │ ├── GtalkCore.pbobjc.m │ │ │ ├── GtalkExtensions.pbobjc.h │ │ │ └── GtalkExtensions.pbobjc.m │ │ │ └── Public │ │ │ ├── FIRMessaging.h │ │ │ └── FirebaseMessaging.h │ ├── LICENSE │ └── README.md ├── GoogleToolboxForMac │ ├── Foundation │ │ ├── GTMLogger.h │ │ ├── GTMLogger.m │ │ ├── GTMNSData+zlib.h │ │ └── GTMNSData+zlib.m │ ├── GTMDefines.h │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── KSCrash │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── KSCrash │ │ ├── Installations │ │ ├── KSCrashInstallation+Alert.h │ │ ├── KSCrashInstallation+Alert.m │ │ ├── KSCrashInstallation+Private.h │ │ ├── KSCrashInstallation.h │ │ ├── KSCrashInstallation.m │ │ ├── KSCrashInstallationConsole.h │ │ ├── KSCrashInstallationConsole.m │ │ ├── KSCrashInstallationEmail.h │ │ ├── KSCrashInstallationEmail.m │ │ ├── KSCrashInstallationQuincyHockey.h │ │ ├── KSCrashInstallationQuincyHockey.m │ │ ├── KSCrashInstallationStandard.h │ │ ├── KSCrashInstallationStandard.m │ │ ├── KSCrashInstallationVictory.h │ │ └── KSCrashInstallationVictory.m │ │ ├── Recording │ │ ├── KSCrash.h │ │ ├── KSCrash.m │ │ ├── KSCrashC.c │ │ ├── KSCrashC.h │ │ ├── KSCrashCachedData.c │ │ ├── KSCrashCachedData.h │ │ ├── KSCrashDoctor.h │ │ ├── KSCrashDoctor.m │ │ ├── KSCrashReport.c │ │ ├── KSCrashReport.h │ │ ├── KSCrashReportFields.h │ │ ├── KSCrashReportFixer.c │ │ ├── KSCrashReportFixer.h │ │ ├── KSCrashReportStore.c │ │ ├── KSCrashReportStore.h │ │ ├── KSCrashReportVersion.h │ │ ├── KSCrashReportWriter.h │ │ ├── KSSystemCapabilities.h │ │ ├── Monitors │ │ │ ├── KSCrashMonitor.c │ │ │ ├── KSCrashMonitor.h │ │ │ ├── KSCrashMonitorContext.h │ │ │ ├── KSCrashMonitorType.c │ │ │ ├── KSCrashMonitorType.h │ │ │ ├── KSCrashMonitor_AppState.c │ │ │ ├── KSCrashMonitor_AppState.h │ │ │ ├── KSCrashMonitor_CPPException.cpp │ │ │ ├── KSCrashMonitor_CPPException.h │ │ │ ├── KSCrashMonitor_Deadlock.h │ │ │ ├── KSCrashMonitor_Deadlock.m │ │ │ ├── KSCrashMonitor_MachException.c │ │ │ ├── KSCrashMonitor_MachException.h │ │ │ ├── KSCrashMonitor_NSException.h │ │ │ ├── KSCrashMonitor_NSException.m │ │ │ ├── KSCrashMonitor_Signal.c │ │ │ ├── KSCrashMonitor_Signal.h │ │ │ ├── KSCrashMonitor_System.h │ │ │ ├── KSCrashMonitor_System.m │ │ │ ├── KSCrashMonitor_User.c │ │ │ ├── KSCrashMonitor_User.h │ │ │ ├── KSCrashMonitor_Zombie.c │ │ │ └── KSCrashMonitor_Zombie.h │ │ └── Tools │ │ │ ├── KSCPU.c │ │ │ ├── KSCPU.h │ │ │ ├── KSCPU_Apple.h │ │ │ ├── KSCPU_arm.c │ │ │ ├── KSCPU_arm64.c │ │ │ ├── KSCPU_x86_32.c │ │ │ ├── KSCPU_x86_64.c │ │ │ ├── KSDate.c │ │ │ ├── KSDate.h │ │ │ ├── KSDebug.c │ │ │ ├── KSDebug.h │ │ │ ├── KSDemangle_CPP.cpp │ │ │ ├── KSDemangle_CPP.h │ │ │ ├── KSDemangle_Swift.cpp │ │ │ ├── KSDemangle_Swift.h │ │ │ ├── KSDynamicLinker.c │ │ │ ├── KSDynamicLinker.h │ │ │ ├── KSFileUtils.c │ │ │ ├── KSFileUtils.h │ │ │ ├── KSID.c │ │ │ ├── KSID.h │ │ │ ├── KSJSONCodec.c │ │ │ ├── KSJSONCodec.h │ │ │ ├── KSJSONCodecObjC.h │ │ │ ├── KSJSONCodecObjC.m │ │ │ ├── KSLogger.c │ │ │ ├── KSLogger.h │ │ │ ├── KSMach.c │ │ │ ├── KSMach.h │ │ │ ├── KSMachineContext.c │ │ │ ├── KSMachineContext.h │ │ │ ├── KSMachineContext_Apple.h │ │ │ ├── KSMemory.c │ │ │ ├── KSMemory.h │ │ │ ├── KSObjC.c │ │ │ ├── KSObjC.h │ │ │ ├── KSObjCApple.h │ │ │ ├── KSSignalInfo.c │ │ │ ├── KSSignalInfo.h │ │ │ ├── KSStackCursor.c │ │ │ ├── KSStackCursor.h │ │ │ ├── KSStackCursor_Backtrace.c │ │ │ ├── KSStackCursor_Backtrace.h │ │ │ ├── KSStackCursor_MachineContext.c │ │ │ ├── KSStackCursor_MachineContext.h │ │ │ ├── KSStackCursor_SelfThread.c │ │ │ ├── KSStackCursor_SelfThread.h │ │ │ ├── KSString.c │ │ │ ├── KSString.h │ │ │ ├── KSSymbolicator.c │ │ │ ├── KSSymbolicator.h │ │ │ ├── KSSysCtl.c │ │ │ ├── KSSysCtl.h │ │ │ ├── KSThread.c │ │ │ ├── KSThread.h │ │ │ ├── NSError+SimpleConstructor.h │ │ │ └── NSError+SimpleConstructor.m │ │ ├── Reporting │ │ ├── Filters │ │ │ ├── KSCrashReportFilter.h │ │ │ ├── KSCrashReportFilterAlert.h │ │ │ ├── KSCrashReportFilterAlert.m │ │ │ ├── KSCrashReportFilterAppleFmt.h │ │ │ ├── KSCrashReportFilterAppleFmt.m │ │ │ ├── KSCrashReportFilterBasic.h │ │ │ ├── KSCrashReportFilterBasic.m │ │ │ ├── KSCrashReportFilterGZip.h │ │ │ ├── KSCrashReportFilterGZip.m │ │ │ ├── KSCrashReportFilterJSON.h │ │ │ ├── KSCrashReportFilterJSON.m │ │ │ ├── KSCrashReportFilterSets.h │ │ │ ├── KSCrashReportFilterSets.m │ │ │ ├── KSCrashReportFilterStringify.h │ │ │ ├── KSCrashReportFilterStringify.m │ │ │ └── Tools │ │ │ │ ├── Container+DeepSearch.h │ │ │ │ ├── Container+DeepSearch.m │ │ │ │ ├── KSVarArgs.h │ │ │ │ ├── NSData+GZip.h │ │ │ │ └── NSData+GZip.m │ │ ├── Sinks │ │ │ ├── KSCrashReportSinkConsole.h │ │ │ ├── KSCrashReportSinkConsole.m │ │ │ ├── KSCrashReportSinkEMail.h │ │ │ ├── KSCrashReportSinkEMail.m │ │ │ ├── KSCrashReportSinkQuincyHockey.h │ │ │ ├── KSCrashReportSinkQuincyHockey.m │ │ │ ├── KSCrashReportSinkStandard.h │ │ │ ├── KSCrashReportSinkStandard.m │ │ │ ├── KSCrashReportSinkVictory.h │ │ │ └── KSCrashReportSinkVictory.m │ │ └── Tools │ │ │ ├── KSCString.h │ │ │ ├── KSCString.m │ │ │ ├── KSHTTPMultipartPostBody.h │ │ │ ├── KSHTTPMultipartPostBody.m │ │ │ ├── KSHTTPRequestSender.h │ │ │ ├── KSHTTPRequestSender.m │ │ │ ├── KSReachabilityKSCrash.h │ │ │ ├── KSReachabilityKSCrash.m │ │ │ ├── NSMutableData+AppendUTF8.h │ │ │ ├── NSMutableData+AppendUTF8.m │ │ │ ├── NSString+URLEncode.h │ │ │ └── NSString+URLEncode.m │ │ ├── llvm │ │ ├── ADT │ │ │ ├── None.h │ │ │ ├── Optional.h │ │ │ └── StringRef.h │ │ ├── Config │ │ │ └── llvm-config.h │ │ └── Support │ │ │ ├── AlignOf.h │ │ │ ├── Casting.h │ │ │ ├── Compiler.h │ │ │ └── type_traits.h │ │ └── swift │ │ ├── Basic │ │ ├── Demangle.cpp │ │ ├── Demangle.h │ │ ├── DemangleNodes.h │ │ ├── Fallthrough.h │ │ ├── LLVM.h │ │ ├── Malloc.h │ │ ├── Punycode.cpp │ │ └── Punycode.h │ │ └── SwiftStrings.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── macbook08.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── ALAlertBanner.xcscheme │ │ │ ├── FirebaseCore.xcscheme │ │ │ ├── FirebaseMessaging.xcscheme │ │ │ ├── GoogleToolboxForMac.xcscheme │ │ │ ├── KSCrash.xcscheme │ │ │ ├── Pods-Swift-Boilerplate.xcscheme │ │ │ ├── Protobuf.xcscheme │ │ │ ├── ReachabilitySwift.xcscheme │ │ │ ├── Realm.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ ├── SMobiLog.xcscheme │ │ │ ├── SVPullToRefresh.xcscheme │ │ │ ├── nanopb.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── macmini08.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── ALAlertBanner.xcscheme │ │ │ ├── Firebase.xcscheme │ │ │ ├── FirebaseAnalytics.xcscheme │ │ │ ├── FirebaseAnalyticsInterop.xcscheme │ │ │ ├── FirebaseCore.xcscheme │ │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ │ ├── FirebaseCoreDiagnosticsInterop.xcscheme │ │ │ ├── FirebaseInstanceID.xcscheme │ │ │ ├── FirebaseMessaging.xcscheme │ │ │ ├── GoogleAppMeasurement.xcscheme │ │ │ ├── GoogleDataTransport.xcscheme │ │ │ ├── GoogleDataTransportCCTSupport.xcscheme │ │ │ ├── GoogleUtilities.xcscheme │ │ │ ├── KSCrash.xcscheme │ │ │ ├── Pods-Swift-Boilerplate.xcscheme │ │ │ ├── Protobuf.xcscheme │ │ │ ├── ReachabilitySwift.xcscheme │ │ │ ├── Realm.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ ├── SMobiLog.xcscheme │ │ │ ├── SVPullToRefresh.xcscheme │ │ │ ├── nanopb.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── macmini14.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworking.xcscheme │ │ ├── ALAlertBanner.xcscheme │ │ ├── Firebase.xcscheme │ │ ├── FirebaseAnalytics.xcscheme │ │ ├── FirebaseCore.xcscheme │ │ ├── FirebaseInstanceID.xcscheme │ │ ├── FirebaseMessaging.xcscheme │ │ ├── GoogleToolboxForMac.xcscheme │ │ ├── KSCrash.xcscheme │ │ ├── Pods-Swift-Boilerplate.xcscheme │ │ ├── Protobuf.xcscheme │ │ ├── ReachabilitySwift.xcscheme │ │ ├── Realm.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── SMobiLog.xcscheme │ │ ├── SVPullToRefresh.xcscheme │ │ ├── nanopb.xcscheme │ │ └── xcschememanagement.plist ├── Protobuf │ ├── LICENSE │ ├── README.md │ └── objectivec │ │ ├── GPBArray.h │ │ ├── GPBArray.m │ │ ├── GPBArray_PackagePrivate.h │ │ ├── GPBBootstrap.h │ │ ├── GPBCodedInputStream.h │ │ ├── GPBCodedInputStream.m │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ ├── GPBCodedOutputStream.h │ │ ├── GPBCodedOutputStream.m │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ ├── GPBDescriptor.h │ │ ├── GPBDescriptor.m │ │ ├── GPBDescriptor_PackagePrivate.h │ │ ├── GPBDictionary.h │ │ ├── GPBDictionary.m │ │ ├── GPBDictionary_PackagePrivate.h │ │ ├── GPBExtensionInternals.h │ │ ├── GPBExtensionInternals.m │ │ ├── GPBExtensionRegistry.h │ │ ├── GPBExtensionRegistry.m │ │ ├── GPBMessage.h │ │ ├── GPBMessage.m │ │ ├── GPBMessage_PackagePrivate.h │ │ ├── GPBProtocolBuffers.h │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ ├── GPBRootObject.h │ │ ├── GPBRootObject.m │ │ ├── GPBRootObject_PackagePrivate.h │ │ ├── GPBRuntimeTypes.h │ │ ├── GPBUnknownField.h │ │ ├── GPBUnknownField.m │ │ ├── GPBUnknownFieldSet.h │ │ ├── GPBUnknownFieldSet.m │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ ├── GPBUnknownField_PackagePrivate.h │ │ ├── GPBUtilities.h │ │ ├── GPBUtilities.m │ │ ├── GPBUtilities_PackagePrivate.h │ │ ├── GPBWellKnownTypes.h │ │ ├── GPBWellKnownTypes.m │ │ ├── GPBWireFormat.h │ │ ├── GPBWireFormat.m │ │ └── google │ │ └── protobuf │ │ ├── Any.pbobjc.h │ │ ├── Any.pbobjc.m │ │ ├── Api.pbobjc.h │ │ ├── Api.pbobjc.m │ │ ├── Duration.pbobjc.h │ │ ├── Duration.pbobjc.m │ │ ├── Empty.pbobjc.h │ │ ├── Empty.pbobjc.m │ │ ├── FieldMask.pbobjc.h │ │ ├── FieldMask.pbobjc.m │ │ ├── SourceContext.pbobjc.h │ │ ├── SourceContext.pbobjc.m │ │ ├── Struct.pbobjc.h │ │ ├── Struct.pbobjc.m │ │ ├── Timestamp.pbobjc.h │ │ ├── Timestamp.pbobjc.m │ │ ├── Type.pbobjc.h │ │ ├── Type.pbobjc.m │ │ ├── Wrappers.pbobjc.h │ │ └── Wrappers.pbobjc.m ├── ReachabilitySwift │ ├── LICENSE │ ├── README.md │ └── Reachability │ │ └── Reachability.swift ├── Realm │ ├── LICENSE │ ├── README.md │ ├── Realm │ │ ├── NSError+RLMSync.m │ │ ├── ObjectStore │ │ │ └── src │ │ │ │ ├── binding_callback_thread_observer.cpp │ │ │ │ ├── collection_notifications.cpp │ │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── external_commit_helper.cpp │ │ │ │ │ └── keychain_helper.cpp │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ ├── collection_notifier.cpp │ │ │ │ ├── list_notifier.cpp │ │ │ │ ├── object_notifier.cpp │ │ │ │ ├── primitive_list_notifier.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ ├── results_notifier.cpp │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object_schema.cpp │ │ │ │ ├── object_store.cpp │ │ │ │ ├── placeholder.cpp │ │ │ │ ├── results.cpp │ │ │ │ ├── schema.cpp │ │ │ │ ├── shared_realm.cpp │ │ │ │ ├── sync │ │ │ │ ├── impl │ │ │ │ │ ├── apple │ │ │ │ │ │ ├── network_reachability_observer.cpp │ │ │ │ │ │ └── system_configuration.cpp │ │ │ │ │ ├── sync_file.cpp │ │ │ │ │ ├── sync_metadata.cpp │ │ │ │ │ └── work_queue.cpp │ │ │ │ ├── partial_sync.cpp │ │ │ │ ├── sync_config.cpp │ │ │ │ ├── sync_manager.cpp │ │ │ │ ├── sync_permission.cpp │ │ │ │ ├── sync_session.cpp │ │ │ │ └── sync_user.cpp │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ └── util │ │ │ │ └── uuid.cpp │ │ ├── RLMAccessor.mm │ │ ├── RLMAnalytics.mm │ │ ├── RLMArray.mm │ │ ├── RLMClassInfo.mm │ │ ├── RLMCollection.mm │ │ ├── RLMConstants.m │ │ ├── RLMJSONModels.m │ │ ├── RLMListBase.mm │ │ ├── RLMManagedArray.mm │ │ ├── RLMMigration.mm │ │ ├── RLMNetworkClient.mm │ │ ├── RLMObject.mm │ │ ├── RLMObjectBase.mm │ │ ├── RLMObjectSchema.mm │ │ ├── RLMObjectStore.mm │ │ ├── RLMObservation.mm │ │ ├── RLMOptionalBase.mm │ │ ├── RLMPredicateUtil.mm │ │ ├── RLMProperty.mm │ │ ├── RLMQueryUtil.mm │ │ ├── RLMRealm+Sync.mm │ │ ├── RLMRealm.mm │ │ ├── RLMRealmConfiguration+Sync.mm │ │ ├── RLMRealmConfiguration.mm │ │ ├── RLMRealmUtil.mm │ │ ├── RLMResults.mm │ │ ├── RLMSchema.mm │ │ ├── RLMSwiftSupport.m │ │ ├── RLMSyncConfiguration.mm │ │ ├── RLMSyncCredentials.m │ │ ├── RLMSyncManager.mm │ │ ├── RLMSyncPermission.mm │ │ ├── RLMSyncPermissionResults.mm │ │ ├── RLMSyncSession.mm │ │ ├── RLMSyncSessionRefreshHandle.mm │ │ ├── RLMSyncSubscription.mm │ │ ├── RLMSyncUser.mm │ │ ├── RLMSyncUtil.mm │ │ ├── RLMThreadSafeReference.mm │ │ ├── RLMUpdateChecker.mm │ │ ├── RLMUtil.mm │ │ └── Realm.modulemap │ ├── build.sh │ ├── core │ │ └── librealmcore-ios.a │ └── include │ │ ├── NSError+RLMSync.h │ │ ├── RLMAccessor.h │ │ ├── RLMAccessor.hpp │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMArray_Private.hpp │ │ ├── RLMClassInfo.hpp │ │ ├── RLMCollection.h │ │ ├── RLMCollection_Private.h │ │ ├── RLMCollection_Private.hpp │ │ ├── RLMConstants.h │ │ ├── RLMJSONModels.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMNetworkClient.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectBase_Private.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMProperty_Private.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealm+Sync.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration+Sync.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealmConfiguration_Private.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMResults_Private.hpp │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ ├── RLMSyncConfiguration.h │ │ ├── RLMSyncConfiguration_Private.h │ │ ├── RLMSyncConfiguration_Private.hpp │ │ ├── RLMSyncCredentials.h │ │ ├── RLMSyncManager.h │ │ ├── RLMSyncManager_Private.h │ │ ├── RLMSyncPermission.h │ │ ├── RLMSyncPermissionResults.h │ │ ├── RLMSyncPermission_Private.hpp │ │ ├── RLMSyncSession.h │ │ ├── RLMSyncSessionRefreshHandle.h │ │ ├── RLMSyncSessionRefreshHandle.hpp │ │ ├── RLMSyncSession_Private.hpp │ │ ├── RLMSyncSubscription.h │ │ ├── RLMSyncUser.h │ │ ├── RLMSyncUser_Private.hpp │ │ ├── RLMSyncUtil.h │ │ ├── RLMSyncUtil_Private.h │ │ ├── RLMSyncUtil_Private.hpp │ │ ├── RLMThreadSafeReference.h │ │ ├── RLMThreadSafeReference_Private.hpp │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm.h │ │ ├── binding_callback_thread_observer.hpp │ │ ├── binding_context.hpp │ │ ├── collection_notifications.hpp │ │ ├── core │ │ ├── realm.hpp │ │ └── realm │ │ │ ├── alloc.hpp │ │ │ ├── alloc_slab.hpp │ │ │ ├── array.hpp │ │ │ ├── array_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_direct.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_long.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bptree.hpp │ │ │ ├── chunked_binary.hpp │ │ │ ├── column.hpp │ │ │ ├── column_backlink.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_link.hpp │ │ │ ├── column_linkbase.hpp │ │ │ ├── column_linklist.hpp │ │ │ ├── column_mixed.hpp │ │ │ ├── column_mixed_tpl.hpp │ │ │ ├── column_string.hpp │ │ │ ├── column_string_enum.hpp │ │ │ ├── column_table.hpp │ │ │ ├── column_timestamp.hpp │ │ │ ├── column_tpl.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── data_type.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_fwd.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── group.hpp │ │ │ ├── group_shared.hpp │ │ │ ├── group_shared_options.hpp │ │ │ ├── group_writer.hpp │ │ │ ├── handover_defs.hpp │ │ │ ├── history.hpp │ │ │ ├── impl │ │ │ ├── array_writer.hpp │ │ │ ├── clamped_hex_dump.hpp │ │ │ ├── clock.hpp │ │ │ ├── cont_transact_hist.hpp │ │ │ ├── destroy_guard.hpp │ │ │ ├── input_stream.hpp │ │ │ ├── output_stream.hpp │ │ │ ├── sequential_getter.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── index_string.hpp │ │ │ ├── lang_bind_helper.hpp │ │ │ ├── link_view.hpp │ │ │ ├── link_view_fwd.hpp │ │ │ ├── metrics │ │ │ ├── metric_timer.hpp │ │ │ ├── metrics.hpp │ │ │ ├── query_info.hpp │ │ │ └── transaction_info.hpp │ │ │ ├── mixed.hpp │ │ │ ├── null.hpp │ │ │ ├── olddatetime.hpp │ │ │ ├── owned_data.hpp │ │ │ ├── parser │ │ │ ├── collection_operator_expression.hpp │ │ │ ├── expression_container.hpp │ │ │ ├── keypath_mapping.hpp │ │ │ ├── parser.hpp │ │ │ ├── parser_utils.hpp │ │ │ ├── property_expression.hpp │ │ │ ├── query_builder.hpp │ │ │ ├── subquery_expression.hpp │ │ │ └── value_expression.hpp │ │ │ ├── query.hpp │ │ │ ├── query_conditions.hpp │ │ │ ├── query_engine.hpp │ │ │ ├── query_expression.hpp │ │ │ ├── query_operators.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── row.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── sync │ │ │ ├── changeset.hpp │ │ │ ├── changeset_cooker.hpp │ │ │ ├── changeset_encoder.hpp │ │ │ ├── changeset_parser.hpp │ │ │ ├── client.hpp │ │ │ ├── crypto.hpp │ │ │ ├── crypto_server.hpp │ │ │ ├── feature_token.hpp │ │ │ ├── history.hpp │ │ │ ├── instruction_applier.hpp │ │ │ ├── instruction_replication.hpp │ │ │ ├── instructions.hpp │ │ │ ├── object.hpp │ │ │ ├── object_id.hpp │ │ │ ├── permissions.hpp │ │ │ ├── protocol.hpp │ │ │ ├── transform.hpp │ │ │ └── version.hpp │ │ │ ├── table.hpp │ │ │ ├── table_ref.hpp │ │ │ ├── table_view.hpp │ │ │ ├── timestamp.hpp │ │ │ ├── unicode.hpp │ │ │ ├── util │ │ │ ├── aes_cryptor.hpp │ │ │ ├── any.hpp │ │ │ ├── assert.hpp │ │ │ ├── base64.hpp │ │ │ ├── basic_system_errors.hpp │ │ │ ├── bind_ptr.hpp │ │ │ ├── buffer.hpp │ │ │ ├── buffer_stream.hpp │ │ │ ├── call_with_tuple.hpp │ │ │ ├── cf_ptr.hpp │ │ │ ├── compression.hpp │ │ │ ├── config.h │ │ │ ├── demangle.hpp │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── enum.hpp │ │ │ ├── errno.hpp │ │ │ ├── features.h │ │ │ ├── file.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── hex_dump.hpp │ │ │ ├── http.hpp │ │ │ ├── inspect.hpp │ │ │ ├── interprocess_condvar.hpp │ │ │ ├── interprocess_mutex.hpp │ │ │ ├── json_parser.hpp │ │ │ ├── load_file.hpp │ │ │ ├── logger.hpp │ │ │ ├── memory_stream.hpp │ │ │ ├── misc_errors.hpp │ │ │ ├── miscellaneous.hpp │ │ │ ├── network.hpp │ │ │ ├── network_ssl.hpp │ │ │ ├── optional.hpp │ │ │ ├── overload.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── random.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── safe_int_ops.hpp │ │ │ ├── scope_exit.hpp │ │ │ ├── serializer.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── terminate.hpp │ │ │ ├── thread.hpp │ │ │ ├── time.hpp │ │ │ ├── to_string.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8.hpp │ │ │ └── websocket.hpp │ │ │ ├── utilities.hpp │ │ │ ├── version.hpp │ │ │ ├── version_id.hpp │ │ │ └── views.hpp │ │ ├── execution_context_id.hpp │ │ ├── feature_checks.hpp │ │ ├── impl │ │ ├── apple │ │ │ ├── external_commit_helper.hpp │ │ │ └── keychain_helper.hpp │ │ ├── collection_change_builder.hpp │ │ ├── collection_notifier.hpp │ │ ├── external_commit_helper.hpp │ │ ├── list_notifier.hpp │ │ ├── notification_wrapper.hpp │ │ ├── object_accessor_impl.hpp │ │ ├── object_notifier.hpp │ │ ├── primitive_list_notifier.hpp │ │ ├── realm_coordinator.hpp │ │ ├── results_notifier.hpp │ │ ├── transact_log_handler.hpp │ │ └── weak_realm_notifier.hpp │ │ ├── index_set.hpp │ │ ├── list.hpp │ │ ├── object.hpp │ │ ├── object_accessor.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ ├── shared_realm.hpp │ │ ├── sync │ │ ├── impl │ │ │ ├── apple │ │ │ │ ├── network_reachability_observer.hpp │ │ │ │ └── system_configuration.hpp │ │ │ ├── network_reachability.hpp │ │ │ ├── sync_client.hpp │ │ │ ├── sync_file.hpp │ │ │ ├── sync_metadata.hpp │ │ │ └── work_queue.hpp │ │ ├── partial_sync.hpp │ │ ├── subscription_state.hpp │ │ ├── sync_config.hpp │ │ ├── sync_manager.hpp │ │ ├── sync_permission.hpp │ │ ├── sync_session.hpp │ │ └── sync_user.hpp │ │ ├── thread_safe_reference.hpp │ │ └── util │ │ ├── aligned_union.hpp │ │ ├── apple │ │ └── event_loop_signal.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── event_loop_signal.hpp │ │ ├── tagged_bool.hpp │ │ ├── time.hpp │ │ └── uuid.hpp ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSButton+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageRep.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoder.m │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCoderHelper.m │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCodersManager.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageFrame.m │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageGIFCoder.m │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageImageIOCoder.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageTransition.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+ForceDecode.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SMobiLog │ ├── LICENSE │ ├── README.md │ └── SMobiLog │ │ └── SMobiLog │ │ ├── Classes │ │ ├── LoggerConstants.h │ │ ├── SLog.h │ │ ├── SLog.m │ │ ├── SLogCollectionRealm.h │ │ ├── SLogCollectionRealm.m │ │ ├── SLogRealm.h │ │ ├── SLogRealm.m │ │ ├── SMobiLogger.h │ │ ├── SMobiLogger.m │ │ ├── SUtil.h │ │ └── SUtil.m │ │ └── Resources │ │ └── Lib.plist ├── SVPullToRefresh │ ├── Demo │ │ ├── Default-568h@2x.png │ │ ├── SVPullToRefreshDemo.xcodeproj │ │ │ └── project.pbxproj │ │ └── SVPullToRefreshDemo │ │ │ ├── SVAppDelegate.h │ │ │ ├── SVAppDelegate.m │ │ │ ├── SVPullToRefreshDemo-Info.plist │ │ │ ├── SVPullToRefreshDemo-Prefix.pch │ │ │ ├── SVRootViewController.h │ │ │ ├── SVRootViewController.m │ │ │ ├── SVRootViewController.xib │ │ │ ├── SVViewController.h │ │ │ ├── SVViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── SVViewController.xib │ │ │ └── main.m │ ├── LICENSE.txt │ ├── README.textile │ └── SVPullToRefresh │ │ ├── SVPullToRefresh.h │ │ ├── UIScrollView+SVInfiniteScrolling.h │ │ ├── UIScrollView+SVInfiniteScrolling.m │ │ ├── UIScrollView+SVPullToRefresh.h │ │ └── UIScrollView+SVPullToRefresh.m ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-Info.plist │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ ├── AFNetworking-umbrella.h │ │ ├── AFNetworking.modulemap │ │ ├── AFNetworking.xcconfig │ │ └── Info.plist │ ├── ALAlertBanner │ │ ├── ALAlertBanner-Info.plist │ │ ├── ALAlertBanner-dummy.m │ │ ├── ALAlertBanner-prefix.pch │ │ ├── ALAlertBanner-umbrella.h │ │ ├── ALAlertBanner.modulemap │ │ ├── ALAlertBanner.xcconfig │ │ └── Info.plist │ ├── Firebase │ │ └── Firebase.xcconfig │ ├── FirebaseAnalytics │ │ └── FirebaseAnalytics.xcconfig │ ├── FirebaseCore │ │ ├── FirebaseCore-Info.plist │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ ├── FirebaseCore.modulemap │ │ └── FirebaseCore.xcconfig │ ├── FirebaseInstanceID │ │ ├── FirebaseInstanceID-Info.plist │ │ ├── FirebaseInstanceID-dummy.m │ │ ├── FirebaseInstanceID-umbrella.h │ │ ├── FirebaseInstanceID.modulemap │ │ └── FirebaseInstanceID.xcconfig │ ├── FirebaseMessaging │ │ ├── FirebaseMessaging-Info.plist │ │ ├── FirebaseMessaging-dummy.m │ │ ├── FirebaseMessaging-umbrella.h │ │ ├── FirebaseMessaging.modulemap │ │ └── FirebaseMessaging.xcconfig │ ├── GoogleToolboxForMac │ │ ├── GoogleToolboxForMac-Info.plist │ │ ├── GoogleToolboxForMac-dummy.m │ │ ├── GoogleToolboxForMac-prefix.pch │ │ ├── GoogleToolboxForMac-umbrella.h │ │ ├── GoogleToolboxForMac.modulemap │ │ └── GoogleToolboxForMac.xcconfig │ ├── KSCrash │ │ ├── Info.plist │ │ ├── KSCrash-Info.plist │ │ ├── KSCrash-dummy.m │ │ ├── KSCrash-prefix.pch │ │ ├── KSCrash-umbrella.h │ │ ├── KSCrash.modulemap │ │ └── KSCrash.xcconfig │ ├── Pods-Swift-Boilerplate │ │ ├── Info.plist │ │ ├── Pods-Swift-Boilerplate-Info.plist │ │ ├── Pods-Swift-Boilerplate-acknowledgements.markdown │ │ ├── Pods-Swift-Boilerplate-acknowledgements.plist │ │ ├── Pods-Swift-Boilerplate-dummy.m │ │ ├── Pods-Swift-Boilerplate-frameworks.sh │ │ ├── Pods-Swift-Boilerplate-resources.sh │ │ ├── Pods-Swift-Boilerplate-umbrella.h │ │ ├── Pods-Swift-Boilerplate.debug.xcconfig │ │ ├── Pods-Swift-Boilerplate.modulemap │ │ └── Pods-Swift-Boilerplate.release.xcconfig │ ├── Protobuf │ │ ├── Info.plist │ │ ├── Protobuf-Info.plist │ │ ├── Protobuf-dummy.m │ │ ├── Protobuf-prefix.pch │ │ ├── Protobuf-umbrella.h │ │ ├── Protobuf.modulemap │ │ └── Protobuf.xcconfig │ ├── ReachabilitySwift │ │ ├── Info.plist │ │ ├── ReachabilitySwift-Info.plist │ │ ├── ReachabilitySwift-dummy.m │ │ ├── ReachabilitySwift-prefix.pch │ │ ├── ReachabilitySwift-umbrella.h │ │ ├── ReachabilitySwift.modulemap │ │ └── ReachabilitySwift.xcconfig │ ├── Realm │ │ ├── Info.plist │ │ ├── Realm-Info.plist │ │ ├── Realm-dummy.m │ │ ├── Realm-prefix.pch │ │ ├── Realm.modulemap │ │ └── Realm.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.xcconfig │ ├── SMobiLog │ │ ├── Info.plist │ │ ├── SMobiLog-Info.plist │ │ ├── SMobiLog-dummy.m │ │ ├── SMobiLog-prefix.pch │ │ ├── SMobiLog-umbrella.h │ │ ├── SMobiLog.modulemap │ │ └── SMobiLog.xcconfig │ ├── SVPullToRefresh │ │ ├── Info.plist │ │ ├── SVPullToRefresh-Info.plist │ │ ├── SVPullToRefresh-dummy.m │ │ ├── SVPullToRefresh-prefix.pch │ │ ├── SVPullToRefresh-umbrella.h │ │ ├── SVPullToRefresh.modulemap │ │ └── SVPullToRefresh.xcconfig │ └── nanopb │ │ ├── Info.plist │ │ ├── nanopb-Info.plist │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.modulemap │ │ └── nanopb.xcconfig └── 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 ├── README.md ├── Swift-Boilerplate.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── macbook08.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── macmini.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── Swift-Boilerplate.xcscheme └── xcuserdata │ ├── macbook08.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── macmini.xcuserdatad │ └── xcschemes │ │ ├── Skeleton.xcscheme │ │ └── xcschememanagement.plist │ ├── macmini08.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── macmini14.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── stplmacmini5.xcuserdatad │ └── xcschemes │ │ ├── Skeleton.xcscheme │ │ └── xcschememanagement.plist │ └── systagno.xcuserdatad │ └── xcschemes │ ├── Skeleton.xcscheme │ └── xcschememanagement.plist ├── Swift-Boilerplate.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── macbook08.xcuserdatad │ └── UserInterfaceState.xcuserstate │ ├── macmini08.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── WorkspaceSettings.xcsettings │ └── macmini14.xcuserdatad │ └── UserInterfaceState.xcuserstate └── Swift-Boilerplate ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── FCM └── GoogleService-Info.plist ├── Helpers ├── Constants.swift ├── Extensions │ ├── ArrayExtensions.swift │ ├── BoolExtensions.swift │ ├── CharacterExtensions.swift │ ├── Cocoa │ │ ├── CGColorExtensions.swift │ │ ├── CGFloatExtensions.swift │ │ ├── CGPointExtensions.swift │ │ ├── CGSizeExtensions.swift │ │ ├── CLLocationExtensions.swift │ │ ├── NSAttributedStringExtensions.swift │ │ ├── NSColorExtensions.swift │ │ └── NSViewExtensions.swift │ ├── CollectionExtensions.swift │ ├── DataExtensions.swift │ ├── DateExtensions.swift │ ├── DictionaryExtensions.swift │ ├── DoubleExtensions.swift │ ├── FloatExtensions.swift │ ├── IntExtensions.swift │ ├── LocaleExtensions.swift │ ├── OptionalExtensions.swift │ ├── StringExtensions.swift │ ├── SwifterSwift.swift │ ├── UIKit │ │ ├── UIAlertControllerExtensions.swift │ │ ├── UIBarButtonItemExtensions.swift │ │ ├── UIButtonExtensions.swift │ │ ├── UICollectionViewExtensions.swift │ │ ├── UIColorExtensions.swift │ │ ├── UIImageExtensions.swift │ │ ├── UIImageViewExtensions.swift │ │ ├── UILabelExtensions.swift │ │ ├── UINavigationBarExtensions.swift │ │ ├── UINavigationControllerExtensions.swift │ │ ├── UINavigationItemExtensions.swift │ │ ├── UISearchBarExtensions.swift │ │ ├── UISegmentedControlExtensions.swift │ │ ├── UISliderExtensions.swift │ │ ├── UIStoryboardExtensions.swift │ │ ├── UISwitchExtensions.swift │ │ ├── UITabBarExtensions.swift │ │ ├── UITableViewExtensions.swift │ │ ├── UITextFieldExtensions.swift │ │ ├── UITextViewExtensions.swift │ │ ├── UIViewControllerExtensions.swift │ │ └── UIViewExtensions.swift │ └── URLExtensions.swift └── Util.swift ├── Info.plist ├── Lib └── AHKNavigationController │ ├── AHKNavigationController.h │ └── AHKNavigationController.m ├── Manager ├── AppSettingsManager.swift └── RemoteNotificationManager.swift ├── NetworkManager ├── APIHelpers │ ├── APIInteractor.swift │ ├── APIInteractorProvider.swift │ ├── NetworkHttpClient.swift │ ├── RealAPI.swift │ └── TestAPI.swift ├── APIManagers │ └── RequestManager.swift ├── Requests │ └── Request.swift └── Services │ └── CategoryInterface.swift ├── Resources ├── AppSettings.plist └── Localizable.strings ├── Skeleton.xcdatamodeld ├── .xccurrentversion └── Skeleton.xcdatamodel │ └── contents ├── Supporting Files └── Skeleton-Bridging-Header.h ├── ViewControllers └── ViewController.swift ├── ViewModels └── AppSettings.swift └── attachment.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/.DS_Store -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner+Private.h -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner.h -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/ALAlertBanner.m -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/ALAlertBannerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/ALAlertBannerManager.h -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/ALAlertBannerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/ALAlertBannerManager.m -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerAlert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerAlert.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerAlert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerAlert@2x.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerFailure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerFailure.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerNotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerNotify.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerNotify@2x.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/ALAlertBanner/Images/bannerSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/ALAlertBanner/Images/bannerSuccess.png -------------------------------------------------------------------------------- /Pods/ALAlertBanner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/LICENSE -------------------------------------------------------------------------------- /Pods/ALAlertBanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ALAlertBanner/README.md -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Firebase/README.md -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRAnalyticsConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRAnalyticsConfiguration.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRApp.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRBundleUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRBundleUtil.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRConfiguration.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRErrors.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRLogger.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRMutableDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRMutableDictionary.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRNetwork.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRNetworkConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRNetworkConstants.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRNetworkURLSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRNetworkURLSession.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIROptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIROptions.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRReachabilityChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRReachabilityChecker.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/FIRVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/FIRVersion.m -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRAppInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRAppInternal.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRBundleUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRBundleUtil.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRErrorCode.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRErrors.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRLogger.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRNetwork.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Private/FIRVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Private/FIRVersion.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Public/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Public/FIRApp.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Public/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Public/FIRConfiguration.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Public/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Public/FIRLoggerLevel.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Public/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Public/FIROptions.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/Firebase/Core/Public/FirebaseCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/Firebase/Core/Public/FirebaseCore.h -------------------------------------------------------------------------------- /Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseInstanceID/CHANGELOG.md -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /Pods/FirebaseInstanceID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseInstanceID/README.md -------------------------------------------------------------------------------- /Pods/FirebaseMessaging/Firebase/Messaging/FIRMMessageCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseMessaging/Firebase/Messaging/FIRMMessageCode.h -------------------------------------------------------------------------------- /Pods/FirebaseMessaging/Firebase/Messaging/FIRMessaging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseMessaging/Firebase/Messaging/FIRMessaging.m -------------------------------------------------------------------------------- /Pods/FirebaseMessaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseMessaging/LICENSE -------------------------------------------------------------------------------- /Pods/FirebaseMessaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/FirebaseMessaging/README.md -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/Foundation/GTMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/Foundation/GTMLogger.h -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/Foundation/GTMLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/Foundation/GTMLogger.m -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/Foundation/GTMNSData+zlib.m -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/GTMDefines.h -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleToolboxForMac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/GoogleToolboxForMac/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/KSCrash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/LICENSE -------------------------------------------------------------------------------- /Pods/KSCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/README.md -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrash.m -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashC.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashCachedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashCachedData.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashCachedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashCachedData.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashDoctor.m -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReport.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFields.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFixer.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportFixer.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportStore.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/KSCrashReportWriter.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_Apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_Apple.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_arm.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_arm64.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_x86_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_x86_32.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSCPU_x86_64.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDate.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDate.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDebug.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSDebug.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSFileUtils.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSID.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSID.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSJSONCodec.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSLogger.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMach.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMemory.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSMemory.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjC.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjCApple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSObjCApple.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSignalInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSignalInfo.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSignalInfo.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSStackCursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSStackCursor.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSStackCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSStackCursor.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSString.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSSysCtl.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSThread.c -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Recording/Tools/KSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Recording/Tools/KSThread.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/Reporting/Tools/KSCString.m -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/ADT/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/ADT/None.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/ADT/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/ADT/Optional.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/ADT/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/Config/llvm-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/Config/llvm-config.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/Support/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/Support/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/Support/Casting.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/llvm/Support/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/llvm/Support/type_traits.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.cpp -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Demangle.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/DemangleNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/DemangleNodes.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Fallthrough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Fallthrough.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/LLVM.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Malloc.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.cpp -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/Basic/Punycode.h -------------------------------------------------------------------------------- /Pods/KSCrash/Source/KSCrash/swift/SwiftStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/KSCrash/Source/KSCrash/swift/SwiftStrings.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/LICENSE -------------------------------------------------------------------------------- /Pods/Protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/README.md -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBArray.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBArray.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBArray_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBBootstrap.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBCodedInputStream.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBCodedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBCodedInputStream.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBCodedOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBCodedOutputStream.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDescriptor.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDescriptor.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDescriptor_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDictionary.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDictionary.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBDictionary_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBExtensionInternals.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBExtensionInternals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBExtensionInternals.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBExtensionRegistry.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBMessage.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBMessage.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBMessage_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBRootObject.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBRootObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBRootObject.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBRootObject_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUnknownField.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUnknownField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUnknownField.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUnknownFieldSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUnknownFieldSet.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUnknownField_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUtilities.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUtilities.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBUtilities_PackagePrivate.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBWellKnownTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBWellKnownTypes.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBWireFormat.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/GPBWireFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/GPBWireFormat.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Any.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Api.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Duration.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Empty.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Struct.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Type.pbobjc.m -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h -------------------------------------------------------------------------------- /Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ReachabilitySwift/LICENSE -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ReachabilitySwift/README.md -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/Reachability/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/ReachabilitySwift/Reachability/Reachability.swift -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/realm_coordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/realm_coordinator.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/index_set.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/object_schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/object_store.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/results.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/impl/work_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/impl/work_queue.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermissionResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncPermissionResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealmConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncConfiguration_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermissionResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncPermissionResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncPermission_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMThreadSafeReference_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/binding_callback_thread_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/binding_callback_thread_observer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/collection_notifications.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_direct.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array_string_long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/array_string_long.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/chunked_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/chunked_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_backlink.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_link.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linkbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_linkbase.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_linklist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_linklist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_mixed_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_mixed_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_string_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_string_enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_tpl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/column_type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/descriptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/descriptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/descriptor_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/disable_sync_to_disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/group_shared.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_shared_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/group_shared_options.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/array_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/array_writer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/clock.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/destroy_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/destroy_guard.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/input_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/input_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/output_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/output_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/sequential_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/sequential_getter.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/simulated_failure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/simulated_failure.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/impl/transact_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/impl/transact_log.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/lang_bind_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/lang_bind_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/link_view_fwd.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metric_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/metrics/metric_timer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/metrics/metrics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/query_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/metrics/query_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/metrics/transaction_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/metrics/transaction_info.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/olddatetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/olddatetime.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/keypath_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/parser/keypath_mapping.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/parser/parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/parser_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/parser/parser_utils.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/query_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/parser/query_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/parser/value_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/parser/value_expression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/query_conditions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/query_expression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/query_operators.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/changeset.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset_cooker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/changeset_cooker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/changeset_encoder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/changeset_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/changeset_parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/crypto.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/crypto_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/crypto_server.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/feature_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/feature_token.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/instruction_applier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/instruction_applier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/instructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/instructions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/object_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/permissions.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/protocol.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/transform.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/sync/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/sync/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/aes_cryptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/aes_cryptor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/base64.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/basic_system_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/basic_system_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/buffer_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/buffer_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/call_with_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/call_with_tuple.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/cf_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/cf_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/compression.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/demangle.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/errno.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/file_mapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/hex_dump.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/interprocess_condvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/interprocess_condvar.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/interprocess_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/interprocess_mutex.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/json_parser.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/load_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/load_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/memory_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/memory_stream.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/misc_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/misc_errors.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/miscellaneous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/miscellaneous.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/network_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/network_ssl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/overload.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/priority_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/random.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/resource_limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/resource_limits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/safe_int_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/safe_int_ops.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/scope_exit.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/serializer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/string_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/string_buffer.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/type_traits.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/util/websocket.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/version_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/execution_context_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/execution_context_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/apple/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_change_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/collection_change_builder.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/primitive_list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/primitive_list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/results_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/apple/system_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/apple/system_configuration.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/network_reachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/network_reachability.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/work_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/impl/work_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/subscription_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/subscription_state.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_permission.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/sync_permission.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/thread_safe_reference.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/apple/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/apple/event_loop_signal.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/event_loop_signal.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SMobiLog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/LICENSE -------------------------------------------------------------------------------- /Pods/SMobiLog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/README.md -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/LoggerConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/LoggerConstants.h -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLog.h -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLog.m -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLogRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLogRealm.h -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLogRealm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SLogRealm.m -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SMobiLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SMobiLogger.h -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SMobiLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SMobiLogger.m -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SUtil.h -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Classes/SUtil.m -------------------------------------------------------------------------------- /Pods/SMobiLog/SMobiLog/SMobiLog/Resources/Lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SMobiLog/SMobiLog/SMobiLog/Resources/Lib.plist -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SVPullToRefresh/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SVPullToRefresh/Demo/SVPullToRefreshDemo/main.m -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SVPullToRefresh/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SVPullToRefresh/README.textile -------------------------------------------------------------------------------- /Pods/SVPullToRefresh/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/SVPullToRefresh/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/AFNetworking/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ALAlertBanner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/ALAlertBanner/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Firebase/Firebase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Firebase/Firebase.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/KSCrash/KSCrash.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/KSCrash/KSCrash.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Swift-Boilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Pods-Swift-Boilerplate/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Protobuf/Protobuf.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Protobuf/Protobuf.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/ReachabilitySwift/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Realm-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Realm-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Realm-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Realm/Realm.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/Realm/Realm.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SMobiLog/SMobiLog.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SMobiLog/SMobiLog.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SVPullToRefresh/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/SVPullToRefresh/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/Target Support Files/nanopb/nanopb.xcconfig -------------------------------------------------------------------------------- /Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/README.md -------------------------------------------------------------------------------- /Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /Swift-Boilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift-Boilerplate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-Boilerplate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/AppDelegate.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Swift-Boilerplate/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Swift-Boilerplate/FCM/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/FCM/GoogleService-Info.plist -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Constants.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/ArrayExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/ArrayExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/BoolExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/BoolExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/DataExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/DataExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/DateExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/DateExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/DoubleExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/DoubleExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/FloatExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/FloatExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/IntExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/IntExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/LocaleExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/LocaleExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/SwifterSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/SwifterSwift.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Extensions/URLExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Extensions/URLExtensions.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Helpers/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Helpers/Util.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Info.plist -------------------------------------------------------------------------------- /Swift-Boilerplate/Manager/AppSettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Manager/AppSettingsManager.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Manager/RemoteNotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Manager/RemoteNotificationManager.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/NetworkManager/APIHelpers/RealAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/NetworkManager/APIHelpers/RealAPI.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/NetworkManager/APIHelpers/TestAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/NetworkManager/APIHelpers/TestAPI.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/NetworkManager/Requests/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/NetworkManager/Requests/Request.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/Resources/AppSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Resources/AppSettings.plist -------------------------------------------------------------------------------- /Swift-Boilerplate/Resources/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Resources/Localizable.strings -------------------------------------------------------------------------------- /Swift-Boilerplate/Skeleton.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/Skeleton.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Swift-Boilerplate/ViewControllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/ViewControllers/ViewController.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/ViewModels/AppSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/ViewModels/AppSettings.swift -------------------------------------------------------------------------------- /Swift-Boilerplate/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/Swift-Boilerplate/HEAD/Swift-Boilerplate/attachment.png --------------------------------------------------------------------------------