├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci-integration-tests.yml │ ├── ci-unit-tests.yml │ └── nightly.yml ├── .gitignore ├── AUTHORS.rst ├── CHANGES.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MatrixSDK.podspec ├── MatrixSDK.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── MatrixSDK-iOS.xcscheme │ └── MatrixSDK-macOS.xcscheme ├── MatrixSDK ├── Aggregations │ ├── Data │ │ ├── MXAggregatedReactions.h │ │ ├── MXAggregatedReactions.m │ │ ├── MXEventEditsListener.h │ │ ├── MXEventEditsListener.m │ │ ├── MXReactionCount.h │ │ ├── MXReactionCount.m │ │ ├── MXReactionCountChange.h │ │ ├── MXReactionCountChange.m │ │ ├── MXReactionCountChangeListener.h │ │ ├── MXReactionCountChangeListener.m │ │ ├── MXReactionOperation.h │ │ ├── MXReactionOperation.m │ │ ├── MXReactionRelation.h │ │ ├── MXReactionRelation.m │ │ └── Store │ │ │ ├── MXAggregationsStore.h │ │ │ └── Realm │ │ │ ├── MXRealmAggregationsMapper.h │ │ │ ├── MXRealmAggregationsMapper.m │ │ │ ├── MXRealmAggregationsStore.h │ │ │ ├── MXRealmAggregationsStore.m │ │ │ ├── MXRealmReactionCount.h │ │ │ ├── MXRealmReactionCount.m │ │ │ ├── MXRealmReactionRelation.h │ │ │ └── MXRealmReactionRelation.m │ ├── LocationSharing │ │ ├── MXBeaconAggregations.swift │ │ ├── MXBeaconInfoSummaryAllRoomListener.swift │ │ ├── MXBeaconInfoSummaryDeletionAllRoomListener.swift │ │ ├── MXBeaconInfoSummaryDeletionPerRoomListener.swift │ │ ├── MXBeaconInfoSummaryPerRoomListener.swift │ │ └── Store │ │ │ ├── MXBeaconInfoSummaryMemoryStore.swift │ │ │ ├── MXBeaconInfoSummaryStoreProtocol.swift │ │ │ └── Realm │ │ │ ├── MXBeaconInfoSummaryRealmStore.swift │ │ │ ├── MXRealmBeacon.swift │ │ │ ├── MXRealmBeaconInfo.swift │ │ │ ├── MXRealmBeaconInfoSummary.swift │ │ │ └── MXRealmBeaconMapper.swift │ ├── MXAggregatedEditsUpdater.h │ ├── MXAggregatedEditsUpdater.m │ ├── MXAggregatedPollsUpdater.swift │ ├── MXAggregatedReactionsUpdater.h │ ├── MXAggregatedReactionsUpdater.m │ ├── MXAggregatedReferencesUpdater.h │ ├── MXAggregatedReferencesUpdater.m │ ├── MXAggregations.h │ ├── MXAggregations.m │ └── MXAggregations_Private.h ├── Background │ ├── Crypto │ │ ├── MXBackgroundCrypto.swift │ │ └── MXBackgroundCryptoV2.swift │ ├── MXBackgroundPushRulesManager.swift │ ├── MXBackgroundStore.swift │ ├── MXBackgroundSyncService.swift │ ├── MXStopwatch.swift │ └── Store │ │ ├── MXSyncResponseStore.swift │ │ ├── MXSyncResponseStoreManager.swift │ │ ├── Model │ │ ├── MXCachedSyncResponse.h │ │ ├── MXCachedSyncResponse.m │ │ └── MXSyncResponseStoreMetaDataModel.swift │ │ └── SyncResponseFileStore │ │ └── MXSyncResponseFileStore.swift ├── Categories │ ├── MXEvent+Extensions.swift │ ├── MXKeysQueryResponse+Extensions.swift │ ├── MXRestClient+Extensions.swift │ ├── NSDictionary+MutableDeepCopy.h │ └── NSDictionary+MutableDeepCopy.m ├── ClientInformation │ └── MXClientInformationService.swift ├── ContentScan │ ├── Data │ │ ├── MXAntivirusScanStatus.h │ │ ├── MXAntivirusScanStatusFormatter.h │ │ ├── MXAntivirusScanStatusFormatter.m │ │ ├── MXContentScanEncryptedBody.h │ │ ├── MXContentScanEncryptedBody.m │ │ ├── MXEventScan.h │ │ ├── MXEventScan.m │ │ ├── MXMediaScan.h │ │ ├── MXMediaScan.m │ │ └── Store │ │ │ ├── MXEventScanStore.h │ │ │ ├── MXEventScanStoreDelegate.h │ │ │ ├── MXMediaScanStore.h │ │ │ ├── MXMediaScanStoreDelegate.h │ │ │ └── Realm │ │ │ ├── Event │ │ │ ├── MXRealmEventScan.h │ │ │ ├── MXRealmEventScan.m │ │ │ ├── MXRealmEventScanMapper.h │ │ │ ├── MXRealmEventScanMapper.m │ │ │ ├── MXRealmEventScanStore.h │ │ │ └── MXRealmEventScanStore.m │ │ │ ├── Media │ │ │ ├── MXRealmMediaScan.h │ │ │ ├── MXRealmMediaScan.m │ │ │ ├── MXRealmMediaScanMapper.h │ │ │ ├── MXRealmMediaScanMapper.m │ │ │ ├── MXRealmMediaScanStore.h │ │ │ └── MXRealmMediaScanStore.m │ │ │ └── RealmProvider │ │ │ ├── MXScanRealmFileProvider.h │ │ │ ├── MXScanRealmFileProvider.m │ │ │ ├── MXScanRealmInMemoryProvider.h │ │ │ ├── MXScanRealmInMemoryProvider.m │ │ │ └── MXScanRealmProvider.h │ ├── JSONModels │ │ ├── MXContentScanResult.h │ │ └── MXContentScanResult.m │ ├── MXScanManager.h │ ├── MXScanManager.m │ └── PKMessageWrapper.swift ├── Contrib │ └── Swift │ │ ├── Data │ │ ├── MX3PID.swift │ │ ├── MXEventTimeline.swift │ │ ├── MXRoom.swift │ │ ├── MXRoomState.swift │ │ └── MXSessionEventListener.swift │ │ ├── JSONModels │ │ ├── MXEvent.swift │ │ ├── MXJSONModels.swift │ │ └── MXRoomPowerLevels.swift │ │ ├── MXEnumConstants.swift │ │ ├── MXIdentityServerRestClient.swift │ │ ├── MXIdentityService.swift │ │ ├── MXImage.swift │ │ ├── MXResponse.swift │ │ ├── MXRestClient.swift │ │ ├── MXSession.swift │ │ └── ThreePidAdd │ │ └── MX3PidAddManager.swift ├── Crypto │ ├── Algorithms │ │ ├── MXDecryptionResult.h │ │ ├── MXDecryptionResult.m │ │ ├── MXEncrypting.h │ │ ├── MXEventDecryptionDecoration.swift │ │ ├── MXEventDecryptionResult.h │ │ ├── MXEventDecryptionResult.m │ │ └── RoomEvent │ │ │ ├── MXRoomEventDecryption.swift │ │ │ └── MXRoomEventEncryption.swift │ ├── CrossSigning │ │ ├── Data │ │ │ ├── MXCrossSigningInfo.h │ │ │ ├── MXCrossSigningInfo.m │ │ │ ├── MXCrossSigningInfo_Private.h │ │ │ └── MXCryptoUserIdentityWrapper.swift │ │ ├── JSONModels │ │ │ ├── MXCrossSigningKey.h │ │ │ └── MXCrossSigningKey.m │ │ ├── MXCrossSigning.h │ │ ├── MXCrossSigning.m │ │ ├── MXCrossSigningInfoSource.swift │ │ ├── MXCrossSigningTools.h │ │ ├── MXCrossSigningTools.m │ │ └── MXCrossSigningV2.swift │ ├── CryptoMachine │ │ ├── Extensions │ │ │ ├── EventEncryptionAlgorithm+String.swift │ │ │ ├── MXDeviceVerification+LocalTrust.swift │ │ │ ├── MXEventDecryptionResult+DecryptedEvent.swift │ │ │ └── MXRoomHistoryVisibility+HistoryVisibility.swift │ │ ├── MXCryptoMachine.swift │ │ ├── MXCryptoMachineStore.swift │ │ ├── MXCryptoProtocols.swift │ │ ├── MXCryptoRequests.swift │ │ ├── MXCryptoSDKLogger.swift │ │ └── MXKeysQueryScheduler.swift │ ├── Data │ │ ├── MXCryptoConstants.h │ │ ├── MXCryptoConstants.m │ │ ├── MXEncryptedAttachments.h │ │ ├── MXEncryptedAttachments.m │ │ ├── MXEncryptedContentFile.h │ │ ├── MXEncryptedContentFile.m │ │ ├── MXEncryptedContentKey.h │ │ ├── MXEncryptedContentKey.m │ │ ├── MXExportedOlmDevice.h │ │ ├── MXExportedOlmDevice.m │ │ ├── MXKey.h │ │ ├── MXKey.m │ │ ├── MXMegolmSessionData.h │ │ ├── MXMegolmSessionData.m │ │ ├── MXOlmSession.h │ │ ├── MXOlmSession.m │ │ ├── MXOlmSessionResult.h │ │ ├── MXOlmSessionResult.m │ │ ├── MXQueuedEncryption.h │ │ ├── MXQueuedEncryption.m │ │ ├── MXRoomSettings.swift │ │ ├── MXUsersDevicesMap.h │ │ ├── MXUsersDevicesMap.m │ │ └── Store │ │ │ ├── MXCryptoSecretStore.h │ │ │ └── MXCryptoVersion.h │ ├── Dehydration │ │ └── DehydrationService.swift │ ├── Devices │ │ ├── Data │ │ │ ├── MXCryptoDeviceWrapper.swift │ │ │ ├── MXDeviceInfo.h │ │ │ ├── MXDeviceInfo.m │ │ │ └── MXDeviceInfo_Private.h │ │ └── MXDeviceInfoSource.swift │ ├── KeyBackup │ │ ├── Data │ │ │ ├── Aes256 │ │ │ │ ├── MXAes256BackupAuthData.h │ │ │ │ └── MXAes256BackupAuthData.m │ │ │ ├── Curve25519 │ │ │ │ ├── MXCurve25519BackupAuthData.h │ │ │ │ └── MXCurve25519BackupAuthData.m │ │ │ ├── MXBaseKeyBackupAuthData.h │ │ │ ├── MXKeyBackupData.h │ │ │ ├── MXKeyBackupData.m │ │ │ ├── MXKeyBackupPreparationInfo.h │ │ │ ├── MXKeyBackupPreparationInfo.m │ │ │ ├── MXKeyBackupVersion.h │ │ │ ├── MXKeyBackupVersion.m │ │ │ ├── MXKeyBackupVersionTrust.h │ │ │ ├── MXKeyBackupVersionTrust.m │ │ │ ├── MXMegolmBackupCreationInfo.h │ │ │ └── MXMegolmBackupCreationInfo.m │ │ ├── Engine │ │ │ ├── MXCryptoKeyBackupEngine.swift │ │ │ ├── MXEncryptedKeyBackup.swift │ │ │ └── MXKeyBackupEngine.h │ │ ├── MXKeyBackup.h │ │ ├── MXKeyBackup.m │ │ ├── MXKeyBackupPassword.h │ │ ├── MXKeyBackupPassword.m │ │ ├── MXKeyBackup_Private.h │ │ ├── MXRecoveryKey.h │ │ └── MXRecoveryKey.m │ ├── KeyProvider │ │ ├── MXAesKeyData.h │ │ ├── MXAesKeyData.m │ │ ├── MXKeyData.h │ │ ├── MXKeyData.m │ │ ├── MXKeyProvider.h │ │ ├── MXKeyProvider.m │ │ ├── MXRawDataKey.h │ │ └── MXRawDataKey.m │ ├── KeySharing │ │ ├── Data │ │ │ ├── MXForwardedRoomKeyEventContent.h │ │ │ ├── MXForwardedRoomKeyEventContent.m │ │ │ ├── MXIncomingRoomKeyRequest.h │ │ │ ├── MXIncomingRoomKeyRequest.m │ │ │ ├── MXIncomingRoomKeyRequestCancellation.h │ │ │ ├── MXIncomingRoomKeyRequestCancellation.m │ │ │ ├── MXOutgoingRoomKeyRequest.h │ │ │ ├── MXOutgoingRoomKeyRequest.m │ │ │ ├── MXRoomKeyEventContent.h │ │ │ ├── MXRoomKeyEventContent.m │ │ │ └── MXSharedHistoryKeyRequest.swift │ │ ├── MXSharedHistoryKeyManager.swift │ │ ├── MXSharedHistoryKeyService.h │ │ ├── MXSharedHistoryKeyService.m │ │ ├── MXUnrequestedForwardedRoomKeyManager.swift │ │ └── Secret │ │ │ ├── Data │ │ │ ├── MXPendingSecretShareRequest.h │ │ │ └── MXPendingSecretShareRequest.m │ │ │ ├── JSONModels │ │ │ ├── MXSecretShareRequest.h │ │ │ ├── MXSecretShareRequest.m │ │ │ ├── MXSecretShareSend.h │ │ │ └── MXSecretShareSend.m │ │ │ ├── MXSecretShareManager.h │ │ │ └── MXSecretShareManager.m │ ├── MXCrypto.h │ ├── MXCrypto.m │ ├── MXCryptoV2.swift │ ├── MXCryptoV2Factory.swift │ ├── Recovery │ │ ├── Data │ │ │ ├── MXSecretRecoveryResult.h │ │ │ └── MXSecretRecoveryResult.m │ │ ├── MXRecoveryService.h │ │ ├── MXRecoveryService.m │ │ ├── MXRecoveryServiceDependencies.swift │ │ └── MXRecoveryService_Private.h │ ├── RoomKeys │ │ ├── MXRoomKeyInfo.swift │ │ └── MXRoomKeyResult.swift │ ├── SecretStorage │ │ ├── Data │ │ │ ├── MXSecretStorageKeyCreationInfo.h │ │ │ └── MXSecretStorageKeyCreationInfo.m │ │ ├── JSONModels │ │ │ ├── MXEncryptedSecretContent.h │ │ │ ├── MXEncryptedSecretContent.m │ │ │ ├── MXSecretStorageKeyContent.h │ │ │ ├── MXSecretStorageKeyContent.m │ │ │ ├── MXSecretStoragePassphrase.h │ │ │ └── MXSecretStoragePassphrase.m │ │ ├── MXCryptoSecretStoreV2.swift │ │ ├── MXSecretStorage.h │ │ ├── MXSecretStorage.m │ │ └── MXSecretStorage_Private.h │ ├── Trust │ │ ├── MXDeviceTrustLevel.h │ │ ├── MXDeviceTrustLevel.m │ │ ├── MXTrustLevelSource.swift │ │ ├── MXUserTrustLevel.h │ │ ├── MXUserTrustLevel.m │ │ ├── MXUsersTrustLevelSummary.h │ │ └── MXUsersTrustLevelSummary.m │ ├── Utils │ │ ├── MXAes.h │ │ ├── MXAes.m │ │ ├── MXAesHmacSha2.h │ │ ├── MXAesHmacSha2.m │ │ ├── MXCryptoTools.h │ │ ├── MXCryptoTools.m │ │ ├── MXHkdfSha256.h │ │ ├── MXHkdfSha256.m │ │ ├── MXMegolmExportEncryption.h │ │ └── MXMegolmExportEncryption.m │ └── Verification │ │ ├── Data │ │ ├── MXEmojiRepresentation.h │ │ ├── MXEmojiRepresentation.m │ │ ├── MXQRCodeData.h │ │ ├── MXQRCodeData.m │ │ ├── MXQRCodeDataBuilder.h │ │ ├── MXQRCodeDataBuilder.m │ │ ├── MXQRCodeDataCodable.h │ │ ├── MXQRCodeDataCoder.h │ │ ├── MXQRCodeDataCoder.m │ │ ├── MXSelfVerifyingMasterKeyNotTrustedQRCodeData.h │ │ ├── MXSelfVerifyingMasterKeyNotTrustedQRCodeData.m │ │ ├── MXSelfVerifyingMasterKeyTrustedQRCodeData.h │ │ ├── MXSelfVerifyingMasterKeyTrustedQRCodeData.m │ │ ├── MXTransactionCancelCode.h │ │ ├── MXTransactionCancelCode.m │ │ ├── MXVerifyingAnotherUserQRCodeData.h │ │ └── MXVerifyingAnotherUserQRCodeData.m │ │ ├── JSONModels │ │ ├── MXKeyVerificationAccept.h │ │ ├── MXKeyVerificationAccept.m │ │ ├── MXKeyVerificationCancel.h │ │ ├── MXKeyVerificationCancel.m │ │ ├── MXKeyVerificationDone.h │ │ ├── MXKeyVerificationDone.m │ │ ├── MXKeyVerificationJSONModel.h │ │ ├── MXKeyVerificationJSONModel.m │ │ ├── MXKeyVerificationKey.h │ │ ├── MXKeyVerificationKey.m │ │ ├── MXKeyVerificationMac.h │ │ ├── MXKeyVerificationMac.m │ │ ├── MXKeyVerificationReady.h │ │ ├── MXKeyVerificationReady.m │ │ ├── MXKeyVerificationRequestByDMJSONModel.h │ │ ├── MXKeyVerificationRequestByDMJSONModel.m │ │ ├── MXKeyVerificationRequestByToDeviceJSONModel.h │ │ ├── MXKeyVerificationRequestByToDeviceJSONModel.m │ │ ├── MXKeyVerificationStart.h │ │ ├── MXKeyVerificationStart.m │ │ ├── MXQRCodeKeyVerificationStart.h │ │ ├── MXQRCodeKeyVerificationStart.m │ │ ├── MXSASKeyVerificationStart.h │ │ └── MXSASKeyVerificationStart.m │ │ ├── MXKeyVerificationManager.h │ │ ├── MXKeyVerificationManager.m │ │ ├── MXKeyVerificationManagerV2.swift │ │ ├── Requests │ │ ├── MXKeyVerificationRequest.h │ │ ├── MXKeyVerificationRequest.m │ │ └── MXKeyVerificationRequestV2.swift │ │ ├── Status │ │ ├── MXKeyVerification.h │ │ ├── MXKeyVerification.m │ │ └── MXKeyVerificationStateResolver.swift │ │ └── Transactions │ │ ├── MXKeyVerificationTransaction.h │ │ ├── MXKeyVerificationTransaction.m │ │ ├── QRCode │ │ ├── MXQRCodeTransaction.h │ │ ├── MXQRCodeTransaction.m │ │ └── MXQRCodeTransactionV2.swift │ │ └── SAS │ │ ├── MXSASTransaction.h │ │ ├── MXSASTransaction.m │ │ └── MXSASTransactionV2.swift ├── Data │ ├── AutoDiscovery │ │ ├── MXAutoDiscovery.h │ │ ├── MXAutoDiscovery.m │ │ ├── MXDiscoveredClientConfig.h │ │ └── MXDiscoveredClientConfig.m │ ├── EventTimeline │ │ ├── MXEventTimeline.h │ │ ├── Room │ │ │ ├── MXRoomEventTimeline.h │ │ │ └── MXRoomEventTimeline.m │ │ └── Thread │ │ │ └── MXThreadEventTimeline.swift │ ├── EventsEnumerator │ │ ├── MXEventsByTypesEnumeratorOnArray.h │ │ ├── MXEventsByTypesEnumeratorOnArray.m │ │ ├── MXEventsEnumerator.h │ │ ├── MXEventsEnumeratorOnArray.h │ │ └── MXEventsEnumeratorOnArray.m │ ├── Filters │ │ ├── MXFilter.h │ │ ├── MXFilter.m │ │ ├── MXFilterJSONModel.h │ │ ├── MXFilterJSONModel.m │ │ ├── MXFilterObject.h │ │ ├── MXFilterObject.m │ │ ├── MXRoomEventFilter.h │ │ ├── MXRoomEventFilter.m │ │ ├── MXRoomFilter.h │ │ └── MXRoomFilter.m │ ├── MXAccountData.h │ ├── MXAccountData.m │ ├── MXCredentials.h │ ├── MXCredentials.m │ ├── MXEventListener.h │ ├── MXEventListener.m │ ├── MXGroup.h │ ├── MXGroup.m │ ├── MXInvite3PID.h │ ├── MXInvite3PID.m │ ├── MXMyUser.h │ ├── MXMyUser.m │ ├── MXPeekingRoom.h │ ├── MXPeekingRoom.m │ ├── MXPeekingRoomSummary.h │ ├── MXPeekingRoomSummary.m │ ├── MXRefreshTokenData.h │ ├── MXRefreshTokenData.m │ ├── MXRoom.h │ ├── MXRoom.m │ ├── MXRoomAccountData.h │ ├── MXRoomAccountData.m │ ├── MXRoomAccountDataUpdater.h │ ├── MXRoomAccountDataUpdater.m │ ├── MXRoomAccountDataUpdating.h │ ├── MXRoomLastMessage.h │ ├── MXRoomLastMessage.m │ ├── MXRoomMember.h │ ├── MXRoomMember.m │ ├── MXRoomMembers.h │ ├── MXRoomMembers.m │ ├── MXRoomMembersCount.h │ ├── MXRoomMembersCount.m │ ├── MXRoomNameDefaultStringLocalizer.h │ ├── MXRoomNameDefaultStringLocalizer.m │ ├── MXRoomNameStringLocalizerProtocol.h │ ├── MXRoomOperation.h │ ├── MXRoomOperation.m │ ├── MXRoomState.h │ ├── MXRoomState.m │ ├── MXRoomSummary.h │ ├── MXRoomSummary.m │ ├── MXRoomSummaryDataTypes.h │ ├── MXRoomSummaryProtocol.h │ ├── MXRoomSummarySentStatus.h │ ├── MXRoomSummaryUpdater.h │ ├── MXRoomSummaryUpdater.m │ ├── MXRoomThirdPartyInvite.h │ ├── MXRoomThirdPartyInvite.m │ ├── MXRoomType.h │ ├── MXRoomTypeMapper.swift │ ├── MXSendReplyEventDefaultStringLocalizer.h │ ├── MXSendReplyEventDefaultStringLocalizer.m │ ├── MXSendReplyEventStringLocalizerProtocol.h │ ├── MXSessionEventListener.h │ ├── MXSessionEventListener.m │ ├── MXUser.h │ ├── MXUser.m │ ├── ReplyEvent │ │ └── Parser │ │ │ ├── MXReplyEventBodyParts.h │ │ │ ├── MXReplyEventBodyParts.m │ │ │ ├── MXReplyEventFormattedBodyParts.h │ │ │ ├── MXReplyEventFormattedBodyParts.m │ │ │ ├── MXReplyEventParser.h │ │ │ ├── MXReplyEventParser.m │ │ │ ├── MXReplyEventParts.h │ │ │ └── MXReplyEventParts.m │ ├── RoomList │ │ ├── Common │ │ │ ├── MXBreadcrumbsRoomListDataFetcher.swift │ │ │ ├── MXRoomListDataFilterable.swift │ │ │ ├── MXRoomListDataSortable.swift │ │ │ ├── MXSuggestedRoomListDataCache.swift │ │ │ └── MXSuggestedRoomListDataFetcher.swift │ │ ├── CoreData │ │ │ ├── CoreDataContextable.swift │ │ │ ├── MXCoreDataRoomListDataFetcher.swift │ │ │ └── MXCoreDataRoomListDataManager.swift │ │ ├── MXRoomListData.swift │ │ ├── MXRoomListDataCounts.swift │ │ ├── MXRoomListDataFetchOptions.swift │ │ ├── MXRoomListDataFetcher.swift │ │ ├── MXRoomListDataFetcherDelegate.swift │ │ ├── MXRoomListDataFilterOptions.swift │ │ ├── MXRoomListDataManager.swift │ │ ├── MXRoomListDataPaginationOptions.swift │ │ ├── MXRoomListDataSortOptions.swift │ │ └── MXStore │ │ │ ├── MXStoreRoomListDataCounts.swift │ │ │ ├── MXStoreRoomListDataFetcher.swift │ │ │ └── MXStoreRoomListDataManager.swift │ ├── RoomSummaryStore │ │ ├── CoreData │ │ │ ├── MXCoreDataRoomSummaryStore.swift │ │ │ ├── MXCoreDataRoomSummaryStore.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ ├── MXRoomSummaryCoreDataStore.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ └── MXRoomSummaryCoreDataStore2.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── Models │ │ │ │ ├── MXRoomLastMessageMO.swift │ │ │ │ ├── MXRoomMembersCountMO.swift │ │ │ │ ├── MXRoomSummaryMO.swift │ │ │ │ └── MXUsersTrustLevelSummaryMO.swift │ │ │ └── NSManagedObject+MatrixSDK.swift │ │ ├── File │ │ │ ├── MXFileRoomSummaryStore.h │ │ │ └── MXFileRoomSummaryStore.m │ │ ├── MXRoomSummaryStore.h │ │ ├── Memory │ │ │ ├── MXMemoryRoomSummaryStore.h │ │ │ └── MXMemoryRoomSummaryStore.m │ │ └── Void │ │ │ ├── MXVoidRoomSummaryStore.h │ │ │ └── MXVoidRoomSummaryStore.m │ └── Store │ │ ├── MXCoreDataStore │ │ └── MXCoreDataStore.xcdatamodeld │ │ │ └── MXCoreDataStore.xcdatamodel │ │ │ └── contents │ │ ├── MXFileStore │ │ ├── MXFileRoomOutgoingMessagesStore.h │ │ ├── MXFileRoomOutgoingMessagesStore.m │ │ ├── MXFileRoomStore.h │ │ ├── MXFileRoomStore.m │ │ ├── MXFileStore.h │ │ ├── MXFileStore.m │ │ ├── MXFileStoreMetaData.h │ │ └── MXFileStoreMetaData.m │ │ ├── MXMemoryStore │ │ ├── MXMemoryRoomOutgoingMessagesStore.h │ │ ├── MXMemoryRoomOutgoingMessagesStore.m │ │ ├── MXMemoryRoomStore.h │ │ ├── MXMemoryRoomStore.m │ │ ├── MXMemoryStore.h │ │ ├── MXMemoryStore.m │ │ ├── MXReceiptData.h │ │ └── MXReceiptData.m │ │ ├── MXNoStore │ │ ├── MXNoStore.h │ │ └── MXNoStore.m │ │ ├── MXStore.h │ │ └── MXStoreService.swift ├── EventStream │ ├── MXEventStreamService.swift │ └── MXLiveEventListener.swift ├── HomeServer │ ├── MXHomeServerCapabilitiesService.swift │ └── MXRoomCapabilityType.swift ├── IdentityServer │ ├── MXIdentityServerRestClient.h │ ├── MXIdentityServerRestClient.m │ ├── MXIdentityService.h │ └── MXIdentityService.m ├── Info.plist ├── JSONModels │ ├── Aggregations │ │ ├── MXAggregationPaginatedResponse.h │ │ └── MXAggregationPaginatedResponse.m │ ├── Authentication │ │ ├── MXLoginPolicy.h │ │ ├── MXLoginPolicy.m │ │ ├── MXLoginPolicyData.h │ │ ├── MXLoginPolicyData.m │ │ ├── MXLoginTerms.h │ │ └── MXLoginTerms.m │ ├── AutoDiscovery │ │ ├── MXWellKnown.h │ │ ├── MXWellKnown.m │ │ ├── MXWellKnownAuthentication.h │ │ ├── MXWellKnownAuthentication.m │ │ ├── MXWellKnownBaseConfig.h │ │ ├── MXWellKnownBaseConfig.m │ │ ├── MXWellKnownTileServerConfig.h │ │ ├── MXWellKnownTileServerConfig.m │ │ ├── MXWellknownIntegrations.h │ │ └── MXWellknownIntegrations.m │ ├── Call │ │ ├── Events │ │ │ ├── MXAssertedIdentityModel.h │ │ │ ├── MXAssertedIdentityModel.m │ │ │ ├── MXCallAnswerEventContent.h │ │ │ ├── MXCallAnswerEventContent.m │ │ │ ├── MXCallAssertedIdentityEventContent.h │ │ │ ├── MXCallAssertedIdentityEventContent.m │ │ │ ├── MXCallCandidatesEventContent.h │ │ │ ├── MXCallCandidatesEventContent.m │ │ │ ├── MXCallCapabilitiesModel.h │ │ │ ├── MXCallCapabilitiesModel.m │ │ │ ├── MXCallEventContent.h │ │ │ ├── MXCallEventContent.m │ │ │ ├── MXCallHangupEventContent.h │ │ │ ├── MXCallHangupEventContent.m │ │ │ ├── MXCallInviteEventContent.h │ │ │ ├── MXCallInviteEventContent.m │ │ │ ├── MXCallNegotiateEventContent.h │ │ │ ├── MXCallNegotiateEventContent.m │ │ │ ├── MXCallRejectEventContent.h │ │ │ ├── MXCallRejectEventContent.m │ │ │ ├── MXCallRejectReplacementEventContent.h │ │ │ ├── MXCallRejectReplacementEventContent.m │ │ │ ├── MXCallReplacesEventContent.h │ │ │ ├── MXCallReplacesEventContent.m │ │ │ ├── MXCallSelectAnswerEventContent.h │ │ │ ├── MXCallSelectAnswerEventContent.m │ │ │ ├── MXUserModel.h │ │ │ └── MXUserModel.m │ │ ├── MXCallCandidate.h │ │ ├── MXCallCandidate.m │ │ ├── MXCallSessionDescription.h │ │ ├── MXCallSessionDescription.m │ │ ├── MXTurnServerResponse.h │ │ ├── MXTurnServerResponse.m │ │ └── MatrixRTC │ │ │ ├── MXCallNotify.h │ │ │ └── MXCallNotify.m │ ├── Capabilities │ │ ├── MXBooleanCapability.h │ │ ├── MXBooleanCapability.m │ │ ├── MXCapabilities.h │ │ ├── MXCapabilities.m │ │ ├── MXRoomVersionsCapability.h │ │ └── MXRoomVersionsCapability.m │ ├── Event │ │ ├── Content │ │ │ ├── MXEventContentLocation.h │ │ │ ├── MXEventContentLocation.m │ │ │ ├── MXEventContentPollStart.h │ │ │ ├── MXEventContentPollStart.m │ │ │ ├── MXEventContentRelatesTo.h │ │ │ └── MXEventContentRelatesTo.m │ │ ├── MXEventAnnotation.h │ │ ├── MXEventAnnotation.m │ │ ├── MXEventAnnotationChunk.h │ │ ├── MXEventAnnotationChunk.m │ │ ├── MXEventReference.h │ │ ├── MXEventReference.m │ │ ├── MXEventReferenceChunk.h │ │ ├── MXEventReferenceChunk.m │ │ ├── MXEventRelationThread.h │ │ ├── MXEventRelationThread.m │ │ ├── MXEventRelations.h │ │ ├── MXEventRelations.m │ │ ├── MXEventReplace.h │ │ ├── MXEventReplace.m │ │ ├── MXEventUnsignedData.h │ │ ├── MXEventUnsignedData.m │ │ ├── MXInReplyTo.h │ │ ├── MXInReplyTo.m │ │ ├── MXMentions.h │ │ └── MXMentions.m │ ├── IdentityServer │ │ ├── MXIdentityServerHashDetails.h │ │ └── MXIdentityServerHashDetails.m │ ├── Location │ │ ├── MXBeacon.h │ │ ├── MXBeacon.m │ │ ├── MXBeaconInfo.h │ │ ├── MXBeaconInfo.m │ │ ├── MXGeoURIComponents.swift │ │ ├── MXLocation.h │ │ └── MXLocation.m │ ├── Login │ │ ├── MXLoginSSOFlow.h │ │ ├── MXLoginSSOFlow.m │ │ ├── MXLoginSSOIdentityProvider.h │ │ ├── MXLoginSSOIdentityProvider.m │ │ └── MXLoginSSOIdentityProviderBrand.h │ ├── MXDevice.h │ ├── MXDevice.m │ ├── MXEvent.h │ ├── MXEvent.m │ ├── MXEventAssetType.h │ ├── MXJSONModel.h │ ├── MXJSONModel.m │ ├── MXJSONModels.h │ ├── MXJSONModels.m │ ├── MXMatrixVersions.h │ ├── MXMatrixVersions.m │ ├── MXRefreshResponse.h │ ├── MXRefreshResponse.m │ ├── MXRoomAliasResolution.h │ ├── MXRoomAliasResolution.m │ ├── MXRoomCreateContent.h │ ├── MXRoomCreateContent.m │ ├── MXRoomCreationParameters.h │ ├── MXRoomCreationParameters.m │ ├── MXRoomPowerLevels.h │ ├── MXRoomPowerLevels.m │ ├── MXRoomPredecessorInfo.h │ ├── MXRoomPredecessorInfo.m │ ├── MXRoomTombStoneContent.h │ ├── MXRoomTombStoneContent.m │ ├── MXServerNoticeContent.h │ ├── MXServerNoticeContent.m │ ├── MXTaggedEventInfo.h │ ├── MXTaggedEventInfo.m │ ├── MXTaggedEvents.h │ ├── MXTaggedEvents.m │ ├── MXVirtualRoomInfo.h │ ├── MXVirtualRoomInfo.m │ ├── Media │ │ ├── MXURLPreview.h │ │ └── MXURLPreview.m │ ├── Push │ │ ├── MXPusher.h │ │ ├── MXPusher.m │ │ ├── MXPusherData.h │ │ └── MXPusherData.m │ ├── Sync │ │ ├── Group │ │ │ ├── MXGroupSyncProfile.h │ │ │ ├── MXGroupSyncProfile.m │ │ │ ├── MXGroupsSyncResponse.h │ │ │ ├── MXGroupsSyncResponse.m │ │ │ ├── MXInvitedGroupSync.h │ │ │ └── MXInvitedGroupSync.m │ │ ├── MXDeviceListResponse.h │ │ ├── MXDeviceListResponse.m │ │ ├── MXInvitedRoomSync.h │ │ ├── MXInvitedRoomSync.m │ │ ├── MXPresenceSyncResponse.h │ │ ├── MXPresenceSyncResponse.m │ │ ├── MXRoomInviteState.h │ │ ├── MXRoomInviteState.m │ │ ├── MXRoomsSyncResponse.h │ │ ├── MXRoomsSyncResponse.m │ │ ├── MXSyncResponse.h │ │ ├── MXSyncResponse.m │ │ ├── MXToDeviceSyncResponse.h │ │ ├── MXToDeviceSyncResponse.m │ │ └── Room │ │ │ ├── MXRoomSync.h │ │ │ ├── MXRoomSync.m │ │ │ ├── MXRoomSyncAccountData.h │ │ │ ├── MXRoomSyncAccountData.m │ │ │ ├── MXRoomSyncEphemeral.h │ │ │ ├── MXRoomSyncEphemeral.m │ │ │ ├── MXRoomSyncState.h │ │ │ ├── MXRoomSyncState.m │ │ │ ├── MXRoomSyncSummary.h │ │ │ ├── MXRoomSyncSummary.m │ │ │ ├── MXRoomSyncTimeline.h │ │ │ ├── MXRoomSyncTimeline.m │ │ │ ├── MXRoomSyncUnreadNotifications.h │ │ │ └── MXRoomSyncUnreadNotifications.m │ └── ThirdParty │ │ ├── MXThirdPartyProtocol.h │ │ ├── MXThirdPartyProtocol.m │ │ ├── MXThirdPartyProtocolInstance.h │ │ ├── MXThirdPartyProtocolInstance.m │ │ ├── MXThirdPartyUserInstance.h │ │ ├── MXThirdPartyUserInstance.m │ │ ├── MXThirdPartyUsersResponse.h │ │ ├── MXThirdPartyUsersResponse.m │ │ ├── MXThirdpartyProtocolsResponse.h │ │ └── MXThirdpartyProtocolsResponse.m ├── Lib │ ├── NSObject+sortedKeys.h │ └── NSObject+sortedKeys.m ├── LocationSharing │ ├── MXBeaconInfoSummary.swift │ ├── MXBeaconInfoSummaryProtocol.swift │ ├── MXLocationService.swift │ └── MXLocationServiceError.swift ├── MXEnumConstants.h ├── MXEnumConstants.m ├── MXError.h ├── MXError.m ├── MXRestClient.h ├── MXRestClient.m ├── MXSDKOptions.h ├── MXSDKOptions.m ├── MXSession.h ├── MXSession.m ├── MXSessionStartupProgress.swift ├── MatrixSDK.h ├── MatrixSDKSwiftHeader.h ├── MatrixSDKVersion.m ├── NotificationCenter │ ├── Checker │ │ ├── MXPushRuleConditionChecker.h │ │ ├── MXPushRuleDisplayNameCondtionChecker.h │ │ ├── MXPushRuleDisplayNameCondtionChecker.m │ │ ├── MXPushRuleEventMatchConditionChecker.h │ │ ├── MXPushRuleEventMatchConditionChecker.m │ │ ├── MXPushRuleRoomMemberCountConditionChecker.h │ │ ├── MXPushRuleRoomMemberCountConditionChecker.m │ │ ├── MXPushRuleSenderNotificationPermissionConditionChecker.h │ │ └── MXPushRuleSenderNotificationPermissionConditionChecker.m │ ├── MXNotificationCenter.h │ ├── MXNotificationCenter.m │ └── ServiceTerms │ │ ├── MXServiceTerms.h │ │ ├── MXServiceTerms.m │ │ ├── MXServiceTermsRestClient.h │ │ └── MXServiceTermsRestClient.m ├── PushGateway │ ├── MXPushGatewayRestClient.h │ └── MXPushGatewayRestClient.m ├── Room │ ├── Membership │ │ └── MXMembershipTransitionState.h │ ├── Polls │ │ ├── PollAggregator.swift │ │ ├── PollBuilder.swift │ │ └── PollModels.swift │ └── State │ │ └── MXRoomInitialStateEventBuilder.swift ├── Space │ ├── MXRoomAliasAvailabilityChecker.swift │ ├── MXSpace.swift │ ├── MXSpaceChildContent.h │ ├── MXSpaceChildContent.m │ ├── MXSpaceChildInfo.swift │ ├── MXSpaceChildSummaryResponse.h │ ├── MXSpaceChildSummaryResponse.m │ ├── MXSpaceChildrenRequestParameters.swift │ ├── MXSpaceChildrenResponse.h │ ├── MXSpaceChildrenResponse.m │ ├── MXSpaceChildrenSummary.swift │ ├── MXSpaceCreationParameters.swift │ ├── MXSpaceFileStore.swift │ ├── MXSpaceGraphData.swift │ ├── MXSpaceNotificationCounter.swift │ ├── MXSpaceNotificationState.swift │ ├── MXSpaceService.swift │ └── MXSpaceStore.swift ├── Threads │ ├── MXThread.swift │ ├── MXThreadModel.swift │ ├── MXThreadNotificationsCount.swift │ ├── MXThreadProtocol.swift │ └── MXThreadingService.swift ├── ThreePidAdd │ ├── MX3PidAddManager.h │ ├── MX3PidAddManager.m │ ├── MX3PidAddSession.h │ └── MX3PidAddSession.m ├── Utils │ ├── Categories │ │ ├── Array.swift │ │ ├── Dictionary.swift │ │ ├── FileManager+AppGroupContainer.swift │ │ ├── FileManager+Backup.swift │ │ ├── NSArray+MatrixSDK.h │ │ ├── NSArray+MatrixSDK.m │ │ ├── NSArray.swift │ │ ├── NSData+MatrixSDK.h │ │ ├── NSData+MatrixSDK.m │ │ └── NSDictionary.swift │ ├── Logs │ │ ├── MXAnalyticsDestination.swift │ │ ├── MXLog.h │ │ ├── MXLog.swift │ │ ├── MXLogObjcWrapper.h │ │ ├── MXLogObjcWrapper.m │ │ ├── MXLogger.h │ │ └── MXLogger.m │ ├── MXAllowedCertificates.h │ ├── MXAllowedCertificates.m │ ├── MXAnalyticsDelegate.h │ ├── MXApplicationProtocol.h │ ├── MXAsyncTaskQueue.swift │ ├── MXBackgroundModeHandler.h │ ├── MXBackgroundTask.h │ ├── MXBase64Tools.h │ ├── MXBase64Tools.m │ ├── MXBugReportRestClient.h │ ├── MXBugReportRestClient.m │ ├── MXDateProvider.swift │ ├── MXEventAssetTypeMapper.swift │ ├── MXHTTPClient.h │ ├── MXHTTPClient.m │ ├── MXHTTPClient_Private.h │ ├── MXHTTPOperation.h │ ├── MXHTTPOperation.m │ ├── MXLRUCache.h │ ├── MXLRUCache.m │ ├── MXMemory.swift │ ├── MXMulticastDelegate.swift │ ├── MXServerNotices.h │ ├── MXServerNotices.m │ ├── MXTaskQueue.swift │ ├── MXThrottler.h │ ├── MXThrottler.m │ ├── MXToDevicePayload.swift │ ├── MXTools.h │ ├── MXTools.m │ ├── MXTools.swift │ ├── MXUIKitApplicationStateService.swift │ ├── MXUIKitBackgroundModeHandler.h │ ├── MXUIKitBackgroundModeHandler.m │ ├── MXUIKitBackgroundTask.h │ ├── MXUIKitBackgroundTask.m │ ├── MXWarnings.h │ ├── Media │ │ ├── MXMediaLoader.h │ │ ├── MXMediaLoader.m │ │ ├── MXMediaManager.h │ │ └── MXMediaManager.m │ ├── Profiling │ │ ├── MXBaseProfiler.h │ │ ├── MXBaseProfiler.m │ │ ├── MXProfiler.h │ │ ├── MXTaskProfile.h │ │ ├── MXTaskProfile.m │ │ ├── MXTaskProfileName.h │ │ └── MXTaskProfile_Private.h │ ├── Protocols │ │ └── MXSummable.swift │ └── Realm │ │ ├── MXRealmHelper.h │ │ ├── MXRealmHelper.m │ │ ├── RLMRealm+MatrixSDK.h │ │ ├── RLMRealm+MatrixSDK.m │ │ ├── RLMSupport.swift │ │ └── Realm+MatrixSDK.swift └── VoIP │ ├── CallKit │ ├── MXCallKitAdapter.h │ ├── MXCallKitAdapter.m │ ├── MXCallKitConfiguration.h │ └── MXCallKitConfiguration.m │ ├── CallStack │ ├── MXCallAudioSessionConfigurator.h │ ├── MXCallStack.h │ └── MXCallStackCall.h │ ├── MXCall.h │ ├── MXCall.m │ ├── MXCallManager.h │ ├── MXCallManager.m │ ├── MXiOSAudioOutputRoute.swift │ ├── MXiOSAudioOutputRouteType.swift │ ├── MXiOSAudioOutputRouter.swift │ └── MXiOSAudioOutputRouterDelegate.swift ├── MatrixSDKExtensions ├── MXAnalyticsDelegate │ └── GoogleAnalytics │ │ ├── MXGoogleAnalytics.h │ │ └── MXGoogleAnalytics.m └── VoIP │ └── Jingle │ ├── MXJingleCallAudioSessionConfigurator.h │ ├── MXJingleCallAudioSessionConfigurator.m │ ├── MXJingleCallStack.h │ ├── MXJingleCallStack.m │ ├── MXJingleCallStackCall.h │ ├── MXJingleCallStackCall.m │ ├── MXJingleCameraCaptureController.h │ ├── MXJingleCameraCaptureController.m │ ├── MXJingleVideoView.h │ └── MXJingleVideoView.m ├── MatrixSDKTests ├── Crypto │ ├── Algorithms │ │ └── RoomEvents │ │ │ ├── MXRoomEventDecryptionUnitTests.swift │ │ │ └── MXRoomEventEncryptionUnitTests.swift │ ├── CrossSigning │ │ ├── Data │ │ │ ├── MXCrossSigningInfoUnitTests.swift │ │ │ ├── MXCrossSigningInfo_v0 │ │ │ └── MXCrossSigningInfo_v1 │ │ ├── MXCrossSigningInfoSourceUnitTests.swift │ │ └── MXCrossSigningV2UnitTests.swift │ ├── CryptoMachine │ │ ├── DecryptedEvent+Stub.swift │ │ ├── Device+Stub.swift │ │ ├── Extensions │ │ │ └── EventEncryptionAlgorithmUnitTests.swift │ │ ├── MXCryptoMachineUnitTests.swift │ │ ├── MXCryptoProtocolStubs.swift │ │ ├── MXCryptoRequestsUnitTests.swift │ │ ├── MXKeyProviderStub.swift │ │ └── MXKeysQuerySchedulerUnitTests.swift │ ├── Data │ │ └── MXMegolmSessionDataUnitTests.swift │ ├── Devices │ │ ├── Data │ │ │ └── MXDeviceInfoUnitTests.swift │ │ └── MXDeviceInfoSourceUnitTests.swift │ ├── KeyBackup │ │ ├── Data │ │ │ └── MXKeyBackupVersion+Stub.swift │ │ └── Engine │ │ │ └── MXCryptoKeyBackupEngineUnitTests.swift │ ├── KeySharing │ │ ├── Data │ │ │ ├── MXForwardedRoomKeyEventContentUnitTests.swift │ │ │ └── MXRoomKeyEventContentUnitTests.swift │ │ └── MXUnrequestedForwardedRoomKeyManagerUnitTests.swift │ ├── Migration │ │ └── LegacyRealmStore │ │ │ ├── archived_encrypted_event │ │ │ ├── legacy_deprecated1_account.realm │ │ │ ├── legacy_deprecated3_account.realm │ │ │ ├── legacy_unverified_account.realm │ │ │ ├── legacy_verified_account.realm │ │ │ └── legacy_version2_account.realm │ ├── Trust │ │ └── MXTrustLevelSourceUnitTests.swift │ └── Verification │ │ ├── MXKeyVerificationManagerV2UnitTests.swift │ │ ├── Requests │ │ ├── MXKeyVerificationRequestV2UnitTests.swift │ │ └── VerificationRequestStub.swift │ │ ├── Status │ │ └── MXKeyVerificationStateResolverUnitTests.swift │ │ └── Transactions │ │ ├── QRCode │ │ ├── MXQRCodeTransactionV2UnitTests.swift │ │ └── QrCodeStub.swift │ │ └── SAS │ │ ├── MXSASTransactionV2UnitTests.swift │ │ └── SasStub.swift ├── Data │ ├── EventsEnumerator │ │ ├── EventsEnumeratorDataSourceStub.swift │ │ ├── MXEventsByTypesEnumeratorOnArrayTests.swift │ │ └── MXEventsEnumeratorOnArrayTests.swift │ └── Store │ │ └── MXMemoryStore │ │ └── MXMemoryRoomStoreUnitTests.swift ├── DirectRoomTests.m ├── Dummy.swift ├── Info.plist ├── JSONModels │ ├── MXEventFixtures.swift │ ├── MXEventTests.m │ └── MXKeysQueryResponseUnitTests.swift ├── MXAccountDataTests.m ├── MXAes256KeyBackupTests.m ├── MXAesUnitTests.m ├── MXAggregatedEditsTests.m ├── MXAggregatedEditsUnitTests.m ├── MXAggregatedPollsUpdaterTests.swift ├── MXAggregatedReactionTests.m ├── MXAggregatedReferenceTests.m ├── MXAggregatedReferenceUnitTests.m ├── MXAsyncTaskQueueUnitTests.swift ├── MXAuthenticationSessionUnitTests.swift ├── MXAutoDiscoveryTests.m ├── MXBackgroundSyncServiceTests.swift ├── MXBackgroundTaskUnitTests.swift ├── MXBaseKeyBackupTests.h ├── MXBaseKeyBackupTests.m ├── MXBeaconAggregationsTests.swift ├── MXBeaconInfoUnitTests.swift ├── MXClientInformationServiceUnitTests.swift ├── MXCoreDataRoomListDataManagerUnitTests.swift ├── MXCredentialsUnitTests.swift ├── MXCrossSigningTests.m ├── MXCryptoKeyVerificationTests.m ├── MXCryptoRecoveryServiceTests.m ├── MXCryptoSecretStorageTests.m ├── MXCryptoShareTests.m ├── MXCryptoTests.m ├── MXDeviceListOperationsPoolTests.swift ├── MXErrorUnitTests.m ├── MXEventAnnotationUnitTests.swift ├── MXEventReferenceUnitTests.swift ├── MXEventScanStoreUnitTests.m ├── MXFilterTests.m ├── MXFilterUnitTests.m ├── MXGeoURIComponentsUnitTests.swift ├── MXHTTPAdditionalHeadersUnitTests.m ├── MXHTTPClientTests.m ├── MXHomeserverCapabilitiesTests.swift ├── MXJSONModelTests.m ├── MXJSONModelUnitTests.m ├── MXKeyBackupUnitTests.swift ├── MXKeyProviderUnitTests.m ├── MXLazyLoadingTests.m ├── MXLocationServiceTests.swift ├── MXLoggerUnitTests.m ├── MXMatrixVersionsUnitTests.swift ├── MXMediaScanStoreUnitTests.m ├── MXMegolmExportEncryptionUnitTests.m ├── MXMyUserTests.m ├── MXNotificationCenterTests.m ├── MXPeekingRoomTests.m ├── MXPollAggregatorTests.swift ├── MXPollBuilderTests.swift ├── MXPollRelationTests.m ├── MXPushRuleUnitTests.m ├── MXQRCodeDataUnitTests.m ├── MXReceiptDataIntegrationTests.swift ├── MXReplyEventParserUnitTests.m ├── MXResponseUnitTests.swift ├── MXRestClientExtensionsTests.m ├── MXRestClientNoAuthAPITests.m ├── MXRestClientTests.m ├── MXRoomAliasAvailabilityCheckerResultTests.swift ├── MXRoomEventFilterUnitTests.swift ├── MXRoomEventTimelineTests.m ├── MXRoomListDataManagerTests.swift ├── MXRoomMemberTests.m ├── MXRoomStateDynamicTests.m ├── MXRoomStateTests.m ├── MXRoomStateUnitTests.swift ├── MXRoomSummaryTests.m ├── MXRoomSummaryTrustTests.m ├── MXRoomTests.m ├── MXSelfSignedHomeserverTests.m ├── MXSessionStartupProgressUnitTests.swift ├── MXSessionTests.m ├── MXSpaceChildContentTests.swift ├── MXSpaceServiceTest.swift ├── MXStoreFileStoreTests.m ├── MXStoreMemoryStoreTests.m ├── MXStoreNoStoreTests.m ├── MXStoreRoomListDataManagerUnitTests.swift ├── MXStoreTests.h ├── MXStoreTests.m ├── MXSyncResponseUnitTests.swift ├── MXThreadEventTimelineUnitTests.swift ├── MXThreadingServiceTests.swift ├── MXThreadingServiceUnitTests.swift ├── MXThreadsNotificationCountTests.swift ├── MXToDevicePayloadUnitTests.swift ├── MXToolsUnitTests.m ├── MXUserTests.m ├── MXVoIPTests.m ├── MatrixSDKTests-Bridging-Header.h ├── MatrixSDKTestsData.h ├── MatrixSDKTestsData.m ├── MatrixSDKTestsData.swift ├── MatrixSDKTestsE2EData.h ├── MatrixSDKTestsE2EData.m ├── MatrixSDKTestsE2EData.swift ├── MatrixSDKTestsSwiftHeader.h ├── Mocks │ ├── MXMockCallStack.h │ ├── MXMockCallStack.m │ ├── MXMockCallStackCall.h │ ├── MXMockCallStackCall.m │ ├── MXRestClientStub.h │ ├── MXRestClientStub.m │ └── MockRoomSummary.swift ├── TestPlans │ ├── AllTests.xctestplan │ ├── AllTestsWithSanitizers.xctestplan │ ├── AllWorkingTests.xctestplan │ ├── UnitTests.xctestplan │ └── UnitTestsWithSanitizers.xctestplan └── Utils │ ├── Logs │ └── MXAnalyticsDestinationUnitTests.swift │ ├── MXSession.swift │ ├── MXSessionTracker.swift │ ├── MXTaskQueueUnitTests.swift │ └── TestObserver.swift ├── Podfile ├── Podfile.lock ├── README.rst ├── changelog.d ├── .gitignore └── _template.md.jinja ├── codecov.yml ├── fastlane └── Fastfile ├── lint.sh ├── scripts └── symbolicate │ ├── .gitignore │ ├── credentials.py │ └── symbolicate.py ├── test.sh └── towncrier.toml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/.github/workflows/ci-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/ci-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/.github/workflows/ci-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /MatrixSDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK.podspec -------------------------------------------------------------------------------- /MatrixSDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MatrixSDK.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXAggregatedReactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXAggregatedReactions.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXAggregatedReactions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXAggregatedReactions.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXEventEditsListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXEventEditsListener.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXEventEditsListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXEventEditsListener.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCount.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCount.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCountChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCountChange.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCountChange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCountChange.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCountChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCountChangeListener.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionCountChangeListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionCountChangeListener.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionOperation.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionOperation.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionRelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionRelation.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/MXReactionRelation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/MXReactionRelation.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/Data/Store/MXAggregationsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/Data/Store/MXAggregationsStore.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedEditsUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedEditsUpdater.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedEditsUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedEditsUpdater.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedPollsUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedPollsUpdater.swift -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedReactionsUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedReactionsUpdater.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedReactionsUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedReactionsUpdater.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedReferencesUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedReferencesUpdater.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregatedReferencesUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregatedReferencesUpdater.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregations.h -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregations.m -------------------------------------------------------------------------------- /MatrixSDK/Aggregations/MXAggregations_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Aggregations/MXAggregations_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Background/Crypto/MXBackgroundCrypto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Crypto/MXBackgroundCrypto.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/Crypto/MXBackgroundCryptoV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Crypto/MXBackgroundCryptoV2.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/MXBackgroundPushRulesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/MXBackgroundPushRulesManager.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/MXBackgroundStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/MXBackgroundStore.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/MXBackgroundSyncService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/MXBackgroundSyncService.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/MXStopwatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/MXStopwatch.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/Store/MXSyncResponseStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Store/MXSyncResponseStore.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/Store/MXSyncResponseStoreManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Store/MXSyncResponseStoreManager.swift -------------------------------------------------------------------------------- /MatrixSDK/Background/Store/Model/MXCachedSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Store/Model/MXCachedSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/Background/Store/Model/MXCachedSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Background/Store/Model/MXCachedSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/Categories/MXEvent+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Categories/MXEvent+Extensions.swift -------------------------------------------------------------------------------- /MatrixSDK/Categories/MXKeysQueryResponse+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Categories/MXKeysQueryResponse+Extensions.swift -------------------------------------------------------------------------------- /MatrixSDK/Categories/MXRestClient+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Categories/MXRestClient+Extensions.swift -------------------------------------------------------------------------------- /MatrixSDK/Categories/NSDictionary+MutableDeepCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Categories/NSDictionary+MutableDeepCopy.h -------------------------------------------------------------------------------- /MatrixSDK/Categories/NSDictionary+MutableDeepCopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Categories/NSDictionary+MutableDeepCopy.m -------------------------------------------------------------------------------- /MatrixSDK/ClientInformation/MXClientInformationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ClientInformation/MXClientInformationService.swift -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXAntivirusScanStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXAntivirusScanStatus.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXAntivirusScanStatusFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXAntivirusScanStatusFormatter.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXAntivirusScanStatusFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXAntivirusScanStatusFormatter.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXContentScanEncryptedBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXContentScanEncryptedBody.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXContentScanEncryptedBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXContentScanEncryptedBody.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXEventScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXEventScan.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXEventScan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXEventScan.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXMediaScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXMediaScan.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/MXMediaScan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/MXMediaScan.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/Store/MXEventScanStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/Store/MXEventScanStore.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/Store/MXEventScanStoreDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/Store/MXEventScanStoreDelegate.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/Store/MXMediaScanStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/Store/MXMediaScanStore.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/Data/Store/MXMediaScanStoreDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/Data/Store/MXMediaScanStoreDelegate.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/JSONModels/MXContentScanResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/JSONModels/MXContentScanResult.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/JSONModels/MXContentScanResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/JSONModels/MXContentScanResult.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/MXScanManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/MXScanManager.h -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/MXScanManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/MXScanManager.m -------------------------------------------------------------------------------- /MatrixSDK/ContentScan/PKMessageWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ContentScan/PKMessageWrapper.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/Data/MX3PID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/Data/MX3PID.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/Data/MXEventTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/Data/MXEventTimeline.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/Data/MXRoom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/Data/MXRoom.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/Data/MXRoomState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/Data/MXRoomState.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/Data/MXSessionEventListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/Data/MXSessionEventListener.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/JSONModels/MXEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/JSONModels/MXEvent.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/JSONModels/MXJSONModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/JSONModels/MXJSONModels.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/JSONModels/MXRoomPowerLevels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/JSONModels/MXRoomPowerLevels.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXEnumConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXEnumConstants.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXIdentityServerRestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXIdentityServerRestClient.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXIdentityService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXIdentityService.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXImage.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXResponse.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXRestClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXRestClient.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/MXSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/MXSession.swift -------------------------------------------------------------------------------- /MatrixSDK/Contrib/Swift/ThreePidAdd/MX3PidAddManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Contrib/Swift/ThreePidAdd/MX3PidAddManager.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXDecryptionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXDecryptionResult.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXDecryptionResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXDecryptionResult.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXEncrypting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXEncrypting.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXEventDecryptionDecoration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXEventDecryptionDecoration.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXEventDecryptionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXEventDecryptionResult.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Algorithms/MXEventDecryptionResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Algorithms/MXEventDecryptionResult.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/Data/MXCrossSigningInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/Data/MXCrossSigningInfo.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/Data/MXCrossSigningInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/Data/MXCrossSigningInfo.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/JSONModels/MXCrossSigningKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/JSONModels/MXCrossSigningKey.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/JSONModels/MXCrossSigningKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/JSONModels/MXCrossSigningKey.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigning.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigning.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigningInfoSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigningInfoSource.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigningTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigningTools.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigningTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigningTools.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CrossSigning/MXCrossSigningV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CrossSigning/MXCrossSigningV2.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXCryptoMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXCryptoMachine.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXCryptoMachineStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXCryptoMachineStore.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXCryptoProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXCryptoProtocols.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXCryptoRequests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXCryptoRequests.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXCryptoSDKLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXCryptoSDKLogger.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/CryptoMachine/MXKeysQueryScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/CryptoMachine/MXKeysQueryScheduler.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXCryptoConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXCryptoConstants.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXCryptoConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXCryptoConstants.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedAttachments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedAttachments.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedAttachments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedAttachments.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedContentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedContentFile.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedContentFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedContentFile.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedContentKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedContentKey.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXEncryptedContentKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXEncryptedContentKey.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXExportedOlmDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXExportedOlmDevice.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXExportedOlmDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXExportedOlmDevice.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXKey.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXKey.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXMegolmSessionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXMegolmSessionData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXMegolmSessionData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXMegolmSessionData.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXOlmSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXOlmSession.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXOlmSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXOlmSession.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXOlmSessionResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXOlmSessionResult.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXOlmSessionResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXOlmSessionResult.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXQueuedEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXQueuedEncryption.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXQueuedEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXQueuedEncryption.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXRoomSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXRoomSettings.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXUsersDevicesMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXUsersDevicesMap.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/MXUsersDevicesMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/MXUsersDevicesMap.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/Store/MXCryptoSecretStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/Store/MXCryptoSecretStore.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Data/Store/MXCryptoVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Data/Store/MXCryptoVersion.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Dehydration/DehydrationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Dehydration/DehydrationService.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Devices/Data/MXCryptoDeviceWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Devices/Data/MXCryptoDeviceWrapper.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Devices/Data/MXDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Devices/Data/MXDeviceInfo.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Devices/Data/MXDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Devices/Data/MXDeviceInfo.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Devices/Data/MXDeviceInfo_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Devices/Data/MXDeviceInfo_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Devices/MXDeviceInfoSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Devices/MXDeviceInfoSource.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXBaseKeyBackupAuthData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXBaseKeyBackupAuthData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupData.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupPreparationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupPreparationInfo.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupPreparationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupPreparationInfo.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersion.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersion.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersionTrust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersionTrust.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersionTrust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXKeyBackupVersionTrust.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXMegolmBackupCreationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXMegolmBackupCreationInfo.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Data/MXMegolmBackupCreationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Data/MXMegolmBackupCreationInfo.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Engine/MXEncryptedKeyBackup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Engine/MXEncryptedKeyBackup.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/Engine/MXKeyBackupEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/Engine/MXKeyBackupEngine.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXKeyBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXKeyBackup.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXKeyBackup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXKeyBackup.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXKeyBackupPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXKeyBackupPassword.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXKeyBackupPassword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXKeyBackupPassword.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXKeyBackup_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXKeyBackup_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXRecoveryKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXRecoveryKey.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyBackup/MXRecoveryKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyBackup/MXRecoveryKey.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXAesKeyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXAesKeyData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXAesKeyData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXAesKeyData.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXKeyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXKeyData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXKeyData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXKeyData.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXKeyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXKeyProvider.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXKeyProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXKeyProvider.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXRawDataKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXRawDataKey.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeyProvider/MXRawDataKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeyProvider/MXRawDataKey.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXIncomingRoomKeyRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXIncomingRoomKeyRequest.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXIncomingRoomKeyRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXIncomingRoomKeyRequest.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXOutgoingRoomKeyRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXOutgoingRoomKeyRequest.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXOutgoingRoomKeyRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXOutgoingRoomKeyRequest.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXRoomKeyEventContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXRoomKeyEventContent.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Data/MXRoomKeyEventContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Data/MXRoomKeyEventContent.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyManager.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyService.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/MXSharedHistoryKeyService.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Secret/MXSecretShareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Secret/MXSecretShareManager.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/KeySharing/Secret/MXSecretShareManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/KeySharing/Secret/MXSecretShareManager.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/MXCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/MXCrypto.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/MXCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/MXCrypto.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/MXCryptoV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/MXCryptoV2.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/MXCryptoV2Factory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/MXCryptoV2Factory.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/Data/MXSecretRecoveryResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/Data/MXSecretRecoveryResult.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/Data/MXSecretRecoveryResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/Data/MXSecretRecoveryResult.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/MXRecoveryService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/MXRecoveryService.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/MXRecoveryService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/MXRecoveryService.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/MXRecoveryServiceDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/MXRecoveryServiceDependencies.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Recovery/MXRecoveryService_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Recovery/MXRecoveryService_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/RoomKeys/MXRoomKeyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/RoomKeys/MXRoomKeyInfo.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/RoomKeys/MXRoomKeyResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/RoomKeys/MXRoomKeyResult.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/SecretStorage/MXCryptoSecretStoreV2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/SecretStorage/MXCryptoSecretStoreV2.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/SecretStorage/MXSecretStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/SecretStorage/MXSecretStorage.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/SecretStorage/MXSecretStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/SecretStorage/MXSecretStorage.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/SecretStorage/MXSecretStorage_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/SecretStorage/MXSecretStorage_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXDeviceTrustLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXDeviceTrustLevel.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXDeviceTrustLevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXDeviceTrustLevel.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXTrustLevelSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXTrustLevelSource.swift -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXUserTrustLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXUserTrustLevel.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXUserTrustLevel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXUserTrustLevel.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXUsersTrustLevelSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXUsersTrustLevelSummary.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Trust/MXUsersTrustLevelSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Trust/MXUsersTrustLevelSummary.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXAes.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXAes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXAes.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXAesHmacSha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXAesHmacSha2.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXAesHmacSha2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXAesHmacSha2.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXCryptoTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXCryptoTools.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXCryptoTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXCryptoTools.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXHkdfSha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXHkdfSha256.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXHkdfSha256.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXHkdfSha256.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXMegolmExportEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXMegolmExportEncryption.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Utils/MXMegolmExportEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Utils/MXMegolmExportEncryption.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXEmojiRepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXEmojiRepresentation.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXEmojiRepresentation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXEmojiRepresentation.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeData.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeData.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeDataBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeDataBuilder.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeDataBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeDataBuilder.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCodable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCodable.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCoder.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXQRCodeDataCoder.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXTransactionCancelCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXTransactionCancelCode.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Data/MXTransactionCancelCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Data/MXTransactionCancelCode.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/MXKeyVerificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/MXKeyVerificationManager.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/MXKeyVerificationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/MXKeyVerificationManager.m -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Status/MXKeyVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Status/MXKeyVerification.h -------------------------------------------------------------------------------- /MatrixSDK/Crypto/Verification/Status/MXKeyVerification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Crypto/Verification/Status/MXKeyVerification.m -------------------------------------------------------------------------------- /MatrixSDK/Data/AutoDiscovery/MXAutoDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/AutoDiscovery/MXAutoDiscovery.h -------------------------------------------------------------------------------- /MatrixSDK/Data/AutoDiscovery/MXAutoDiscovery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/AutoDiscovery/MXAutoDiscovery.m -------------------------------------------------------------------------------- /MatrixSDK/Data/AutoDiscovery/MXDiscoveredClientConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/AutoDiscovery/MXDiscoveredClientConfig.h -------------------------------------------------------------------------------- /MatrixSDK/Data/AutoDiscovery/MXDiscoveredClientConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/AutoDiscovery/MXDiscoveredClientConfig.m -------------------------------------------------------------------------------- /MatrixSDK/Data/EventTimeline/MXEventTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventTimeline/MXEventTimeline.h -------------------------------------------------------------------------------- /MatrixSDK/Data/EventTimeline/Room/MXRoomEventTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventTimeline/Room/MXRoomEventTimeline.h -------------------------------------------------------------------------------- /MatrixSDK/Data/EventTimeline/Room/MXRoomEventTimeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventTimeline/Room/MXRoomEventTimeline.m -------------------------------------------------------------------------------- /MatrixSDK/Data/EventsEnumerator/MXEventsEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventsEnumerator/MXEventsEnumerator.h -------------------------------------------------------------------------------- /MatrixSDK/Data/EventsEnumerator/MXEventsEnumeratorOnArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventsEnumerator/MXEventsEnumeratorOnArray.h -------------------------------------------------------------------------------- /MatrixSDK/Data/EventsEnumerator/MXEventsEnumeratorOnArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/EventsEnumerator/MXEventsEnumeratorOnArray.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilter.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilter.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilterJSONModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilterJSONModel.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilterJSONModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilterJSONModel.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilterObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilterObject.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXFilterObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXFilterObject.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXRoomEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXRoomEventFilter.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXRoomEventFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXRoomEventFilter.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXRoomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXRoomFilter.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Filters/MXRoomFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Filters/MXRoomFilter.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXAccountData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXAccountData.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXAccountData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXAccountData.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXCredentials.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXCredentials.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXEventListener.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXEventListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXEventListener.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXGroup.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXGroup.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXInvite3PID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXInvite3PID.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXInvite3PID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXInvite3PID.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXMyUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXMyUser.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXMyUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXMyUser.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXPeekingRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXPeekingRoom.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXPeekingRoom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXPeekingRoom.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXPeekingRoomSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXPeekingRoomSummary.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXPeekingRoomSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXPeekingRoomSummary.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRefreshTokenData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRefreshTokenData.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRefreshTokenData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRefreshTokenData.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoom.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoom.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomAccountData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomAccountData.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomAccountData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomAccountData.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomAccountDataUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomAccountDataUpdater.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomAccountDataUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomAccountDataUpdater.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomAccountDataUpdating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomAccountDataUpdating.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomLastMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomLastMessage.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomLastMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomLastMessage.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMember.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMember.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMember.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMembers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMembers.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMembers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMembers.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMembersCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMembersCount.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomMembersCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomMembersCount.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomNameDefaultStringLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomNameDefaultStringLocalizer.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomNameDefaultStringLocalizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomNameDefaultStringLocalizer.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomNameStringLocalizerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomNameStringLocalizerProtocol.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomOperation.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomOperation.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomState.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomState.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummary.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummary.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummaryDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummaryDataTypes.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummaryProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummaryProtocol.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummarySentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummarySentStatus.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummaryUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummaryUpdater.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomSummaryUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomSummaryUpdater.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomThirdPartyInvite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomThirdPartyInvite.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomThirdPartyInvite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomThirdPartyInvite.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomType.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXRoomTypeMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXRoomTypeMapper.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/MXSendReplyEventDefaultStringLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXSendReplyEventDefaultStringLocalizer.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXSendReplyEventDefaultStringLocalizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXSendReplyEventDefaultStringLocalizer.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXSendReplyEventStringLocalizerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXSendReplyEventStringLocalizerProtocol.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXSessionEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXSessionEventListener.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXSessionEventListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXSessionEventListener.m -------------------------------------------------------------------------------- /MatrixSDK/Data/MXUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXUser.h -------------------------------------------------------------------------------- /MatrixSDK/Data/MXUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/MXUser.m -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventBodyParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventBodyParts.h -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventBodyParts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventBodyParts.m -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParser.h -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParser.m -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParts.h -------------------------------------------------------------------------------- /MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/ReplyEvent/Parser/MXReplyEventParts.m -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/Common/MXRoomListDataFilterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/Common/MXRoomListDataFilterable.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/Common/MXRoomListDataSortable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/Common/MXRoomListDataSortable.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/CoreData/CoreDataContextable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/CoreData/CoreDataContextable.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListData.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataCounts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataCounts.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataFetchOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataFetchOptions.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataFetcher.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataFetcherDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataFetcherDelegate.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataFilterOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataFilterOptions.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataManager.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataPaginationOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataPaginationOptions.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomList/MXRoomListDataSortOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomList/MXRoomListDataSortOptions.swift -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomSummaryStore/File/MXFileRoomSummaryStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomSummaryStore/File/MXFileRoomSummaryStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomSummaryStore/File/MXFileRoomSummaryStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomSummaryStore/File/MXFileRoomSummaryStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomSummaryStore/MXRoomSummaryStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomSummaryStore/MXRoomSummaryStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomSummaryStore/Void/MXVoidRoomSummaryStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomSummaryStore/Void/MXVoidRoomSummaryStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/RoomSummaryStore/Void/MXVoidRoomSummaryStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/RoomSummaryStore/Void/MXVoidRoomSummaryStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileRoomStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileRoomStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileRoomStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileRoomStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileStoreMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileStoreMetaData.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXFileStore/MXFileStoreMetaData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXFileStore/MXFileStoreMetaData.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXMemoryRoomStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXMemoryRoomStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXMemoryRoomStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXMemoryRoomStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXMemoryStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXMemoryStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXMemoryStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXMemoryStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXReceiptData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXReceiptData.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXMemoryStore/MXReceiptData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXMemoryStore/MXReceiptData.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXNoStore/MXNoStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXNoStore/MXNoStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXNoStore/MXNoStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXNoStore/MXNoStore.m -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXStore.h -------------------------------------------------------------------------------- /MatrixSDK/Data/Store/MXStoreService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Data/Store/MXStoreService.swift -------------------------------------------------------------------------------- /MatrixSDK/EventStream/MXEventStreamService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/EventStream/MXEventStreamService.swift -------------------------------------------------------------------------------- /MatrixSDK/EventStream/MXLiveEventListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/EventStream/MXLiveEventListener.swift -------------------------------------------------------------------------------- /MatrixSDK/HomeServer/MXHomeServerCapabilitiesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/HomeServer/MXHomeServerCapabilitiesService.swift -------------------------------------------------------------------------------- /MatrixSDK/HomeServer/MXRoomCapabilityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/HomeServer/MXRoomCapabilityType.swift -------------------------------------------------------------------------------- /MatrixSDK/IdentityServer/MXIdentityServerRestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/IdentityServer/MXIdentityServerRestClient.h -------------------------------------------------------------------------------- /MatrixSDK/IdentityServer/MXIdentityServerRestClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/IdentityServer/MXIdentityServerRestClient.m -------------------------------------------------------------------------------- /MatrixSDK/IdentityServer/MXIdentityService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/IdentityServer/MXIdentityService.h -------------------------------------------------------------------------------- /MatrixSDK/IdentityServer/MXIdentityService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/IdentityServer/MXIdentityService.m -------------------------------------------------------------------------------- /MatrixSDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Info.plist -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginPolicy.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginPolicy.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginPolicyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginPolicyData.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginPolicyData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginPolicyData.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginTerms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginTerms.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Authentication/MXLoginTerms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Authentication/MXLoginTerms.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellKnown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellKnown.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellKnown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellKnown.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellKnownBaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellKnownBaseConfig.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellKnownBaseConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellKnownBaseConfig.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellknownIntegrations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellknownIntegrations.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/AutoDiscovery/MXWellknownIntegrations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/AutoDiscovery/MXWellknownIntegrations.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXAssertedIdentityModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXAssertedIdentityModel.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXAssertedIdentityModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXAssertedIdentityModel.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallAnswerEventContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallAnswerEventContent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallAnswerEventContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallAnswerEventContent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallCapabilitiesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallCapabilitiesModel.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallCapabilitiesModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallCapabilitiesModel.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallEventContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallEventContent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXCallEventContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXCallEventContent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXUserModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXUserModel.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/Events/MXUserModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/Events/MXUserModel.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXCallCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXCallCandidate.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXCallCandidate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXCallCandidate.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXCallSessionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXCallSessionDescription.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXCallSessionDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXCallSessionDescription.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXTurnServerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXTurnServerResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MXTurnServerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MXTurnServerResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MatrixRTC/MXCallNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MatrixRTC/MXCallNotify.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Call/MatrixRTC/MXCallNotify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Call/MatrixRTC/MXCallNotify.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Capabilities/MXBooleanCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Capabilities/MXBooleanCapability.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Capabilities/MXBooleanCapability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Capabilities/MXBooleanCapability.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Capabilities/MXCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Capabilities/MXCapabilities.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Capabilities/MXCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Capabilities/MXCapabilities.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventAnnotation.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventAnnotation.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventAnnotationChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventAnnotationChunk.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventAnnotationChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventAnnotationChunk.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReference.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReference.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReferenceChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReferenceChunk.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReferenceChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReferenceChunk.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventRelationThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventRelationThread.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventRelationThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventRelationThread.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventRelations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventRelations.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventRelations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventRelations.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReplace.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventReplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventReplace.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventUnsignedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventUnsignedData.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXEventUnsignedData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXEventUnsignedData.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXInReplyTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXInReplyTo.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXInReplyTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXInReplyTo.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXMentions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXMentions.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Event/MXMentions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Event/MXMentions.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXBeacon.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXBeacon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXBeacon.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXBeaconInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXBeaconInfo.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXBeaconInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXBeaconInfo.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXGeoURIComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXGeoURIComponents.swift -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXLocation.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Location/MXLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Location/MXLocation.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Login/MXLoginSSOFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Login/MXLoginSSOFlow.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Login/MXLoginSSOFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Login/MXLoginSSOFlow.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Login/MXLoginSSOIdentityProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Login/MXLoginSSOIdentityProvider.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Login/MXLoginSSOIdentityProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Login/MXLoginSSOIdentityProvider.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXDevice.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXDevice.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXEvent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXEvent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXEventAssetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXEventAssetType.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXJSONModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXJSONModel.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXJSONModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXJSONModel.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXJSONModels.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXJSONModels.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXMatrixVersions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXMatrixVersions.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXMatrixVersions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXMatrixVersions.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRefreshResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRefreshResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRefreshResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRefreshResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomAliasResolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomAliasResolution.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomAliasResolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomAliasResolution.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomCreateContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomCreateContent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomCreateContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomCreateContent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomCreationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomCreationParameters.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomCreationParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomCreationParameters.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomPowerLevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomPowerLevels.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomPowerLevels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomPowerLevels.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomPredecessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomPredecessorInfo.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomPredecessorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomPredecessorInfo.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomTombStoneContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomTombStoneContent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXRoomTombStoneContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXRoomTombStoneContent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXServerNoticeContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXServerNoticeContent.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXServerNoticeContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXServerNoticeContent.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXTaggedEventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXTaggedEventInfo.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXTaggedEventInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXTaggedEventInfo.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXTaggedEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXTaggedEvents.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXTaggedEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXTaggedEvents.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXVirtualRoomInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXVirtualRoomInfo.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/MXVirtualRoomInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/MXVirtualRoomInfo.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Media/MXURLPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Media/MXURLPreview.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Media/MXURLPreview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Media/MXURLPreview.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Push/MXPusher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Push/MXPusher.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Push/MXPusher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Push/MXPusher.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Push/MXPusherData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Push/MXPusherData.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Push/MXPusherData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Push/MXPusherData.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXGroupSyncProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXGroupSyncProfile.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXGroupSyncProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXGroupSyncProfile.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXGroupsSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXGroupsSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXGroupsSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXGroupsSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXInvitedGroupSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXInvitedGroupSync.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Group/MXInvitedGroupSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Group/MXInvitedGroupSync.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXDeviceListResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXDeviceListResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXDeviceListResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXDeviceListResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXInvitedRoomSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXInvitedRoomSync.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXInvitedRoomSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXInvitedRoomSync.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXPresenceSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXPresenceSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXPresenceSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXPresenceSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXRoomInviteState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXRoomInviteState.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXRoomInviteState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXRoomInviteState.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXRoomsSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXRoomsSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXRoomsSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXRoomsSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXToDeviceSyncResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXToDeviceSyncResponse.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/MXToDeviceSyncResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/MXToDeviceSyncResponse.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSync.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSync.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncAccountData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncAccountData.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncAccountData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncAccountData.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncEphemeral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncEphemeral.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncEphemeral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncEphemeral.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncState.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncState.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncSummary.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncSummary.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncTimeline.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/Sync/Room/MXRoomSyncTimeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/Sync/Room/MXRoomSyncTimeline.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/ThirdParty/MXThirdPartyProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/ThirdParty/MXThirdPartyProtocol.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/ThirdParty/MXThirdPartyProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/ThirdParty/MXThirdPartyProtocol.m -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/ThirdParty/MXThirdPartyUserInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/ThirdParty/MXThirdPartyUserInstance.h -------------------------------------------------------------------------------- /MatrixSDK/JSONModels/ThirdParty/MXThirdPartyUserInstance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/JSONModels/ThirdParty/MXThirdPartyUserInstance.m -------------------------------------------------------------------------------- /MatrixSDK/Lib/NSObject+sortedKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Lib/NSObject+sortedKeys.h -------------------------------------------------------------------------------- /MatrixSDK/Lib/NSObject+sortedKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Lib/NSObject+sortedKeys.m -------------------------------------------------------------------------------- /MatrixSDK/LocationSharing/MXBeaconInfoSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/LocationSharing/MXBeaconInfoSummary.swift -------------------------------------------------------------------------------- /MatrixSDK/LocationSharing/MXLocationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/LocationSharing/MXLocationService.swift -------------------------------------------------------------------------------- /MatrixSDK/LocationSharing/MXLocationServiceError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/LocationSharing/MXLocationServiceError.swift -------------------------------------------------------------------------------- /MatrixSDK/MXEnumConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXEnumConstants.h -------------------------------------------------------------------------------- /MatrixSDK/MXEnumConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXEnumConstants.m -------------------------------------------------------------------------------- /MatrixSDK/MXError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXError.h -------------------------------------------------------------------------------- /MatrixSDK/MXError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXError.m -------------------------------------------------------------------------------- /MatrixSDK/MXRestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXRestClient.h -------------------------------------------------------------------------------- /MatrixSDK/MXRestClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXRestClient.m -------------------------------------------------------------------------------- /MatrixSDK/MXSDKOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXSDKOptions.h -------------------------------------------------------------------------------- /MatrixSDK/MXSDKOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXSDKOptions.m -------------------------------------------------------------------------------- /MatrixSDK/MXSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXSession.h -------------------------------------------------------------------------------- /MatrixSDK/MXSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXSession.m -------------------------------------------------------------------------------- /MatrixSDK/MXSessionStartupProgress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MXSessionStartupProgress.swift -------------------------------------------------------------------------------- /MatrixSDK/MatrixSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MatrixSDK.h -------------------------------------------------------------------------------- /MatrixSDK/MatrixSDKSwiftHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MatrixSDKSwiftHeader.h -------------------------------------------------------------------------------- /MatrixSDK/MatrixSDKVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/MatrixSDKVersion.m -------------------------------------------------------------------------------- /MatrixSDK/NotificationCenter/MXNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/NotificationCenter/MXNotificationCenter.h -------------------------------------------------------------------------------- /MatrixSDK/NotificationCenter/MXNotificationCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/NotificationCenter/MXNotificationCenter.m -------------------------------------------------------------------------------- /MatrixSDK/NotificationCenter/ServiceTerms/MXServiceTerms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/NotificationCenter/ServiceTerms/MXServiceTerms.h -------------------------------------------------------------------------------- /MatrixSDK/NotificationCenter/ServiceTerms/MXServiceTerms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/NotificationCenter/ServiceTerms/MXServiceTerms.m -------------------------------------------------------------------------------- /MatrixSDK/PushGateway/MXPushGatewayRestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/PushGateway/MXPushGatewayRestClient.h -------------------------------------------------------------------------------- /MatrixSDK/PushGateway/MXPushGatewayRestClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/PushGateway/MXPushGatewayRestClient.m -------------------------------------------------------------------------------- /MatrixSDK/Room/Membership/MXMembershipTransitionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Room/Membership/MXMembershipTransitionState.h -------------------------------------------------------------------------------- /MatrixSDK/Room/Polls/PollAggregator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Room/Polls/PollAggregator.swift -------------------------------------------------------------------------------- /MatrixSDK/Room/Polls/PollBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Room/Polls/PollBuilder.swift -------------------------------------------------------------------------------- /MatrixSDK/Room/Polls/PollModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Room/Polls/PollModels.swift -------------------------------------------------------------------------------- /MatrixSDK/Room/State/MXRoomInitialStateEventBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Room/State/MXRoomInitialStateEventBuilder.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXRoomAliasAvailabilityChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXRoomAliasAvailabilityChecker.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpace.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildContent.h -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildContent.m -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildInfo.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildSummaryResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildSummaryResponse.h -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildSummaryResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildSummaryResponse.m -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildrenRequestParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildrenRequestParameters.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildrenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildrenResponse.h -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildrenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildrenResponse.m -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceChildrenSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceChildrenSummary.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceCreationParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceCreationParameters.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceFileStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceFileStore.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceGraphData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceGraphData.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceNotificationCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceNotificationCounter.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceNotificationState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceNotificationState.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceService.swift -------------------------------------------------------------------------------- /MatrixSDK/Space/MXSpaceStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Space/MXSpaceStore.swift -------------------------------------------------------------------------------- /MatrixSDK/Threads/MXThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Threads/MXThread.swift -------------------------------------------------------------------------------- /MatrixSDK/Threads/MXThreadModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Threads/MXThreadModel.swift -------------------------------------------------------------------------------- /MatrixSDK/Threads/MXThreadNotificationsCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Threads/MXThreadNotificationsCount.swift -------------------------------------------------------------------------------- /MatrixSDK/Threads/MXThreadProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Threads/MXThreadProtocol.swift -------------------------------------------------------------------------------- /MatrixSDK/Threads/MXThreadingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Threads/MXThreadingService.swift -------------------------------------------------------------------------------- /MatrixSDK/ThreePidAdd/MX3PidAddManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ThreePidAdd/MX3PidAddManager.h -------------------------------------------------------------------------------- /MatrixSDK/ThreePidAdd/MX3PidAddManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ThreePidAdd/MX3PidAddManager.m -------------------------------------------------------------------------------- /MatrixSDK/ThreePidAdd/MX3PidAddSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ThreePidAdd/MX3PidAddSession.h -------------------------------------------------------------------------------- /MatrixSDK/ThreePidAdd/MX3PidAddSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/ThreePidAdd/MX3PidAddSession.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/Array.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/Dictionary.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/FileManager+Backup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/FileManager+Backup.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSArray+MatrixSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSArray+MatrixSDK.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSArray+MatrixSDK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSArray+MatrixSDK.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSArray.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSData+MatrixSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSData+MatrixSDK.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSData+MatrixSDK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSData+MatrixSDK.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Categories/NSDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Categories/NSDictionary.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXAnalyticsDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXAnalyticsDestination.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLog.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLog.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLogObjcWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLogObjcWrapper.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLogObjcWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLogObjcWrapper.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLogger.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Logs/MXLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Logs/MXLogger.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXAllowedCertificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXAllowedCertificates.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXAllowedCertificates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXAllowedCertificates.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXAnalyticsDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXAnalyticsDelegate.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXApplicationProtocol.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXAsyncTaskQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXAsyncTaskQueue.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBackgroundModeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBackgroundModeHandler.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBackgroundTask.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBase64Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBase64Tools.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBase64Tools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBase64Tools.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBugReportRestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBugReportRestClient.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXBugReportRestClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXBugReportRestClient.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXDateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXDateProvider.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXEventAssetTypeMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXEventAssetTypeMapper.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXHTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXHTTPClient.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXHTTPClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXHTTPClient.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXHTTPClient_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXHTTPClient_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXHTTPOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXHTTPOperation.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXHTTPOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXHTTPOperation.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXLRUCache.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXLRUCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXLRUCache.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXMemory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXMemory.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXMulticastDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXMulticastDelegate.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXServerNotices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXServerNotices.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXServerNotices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXServerNotices.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXTaskQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXTaskQueue.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXThrottler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXThrottler.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXThrottler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXThrottler.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXToDevicePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXToDevicePayload.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXTools.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXTools.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXTools.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXUIKitApplicationStateService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXUIKitApplicationStateService.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXUIKitBackgroundModeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXUIKitBackgroundModeHandler.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXUIKitBackgroundModeHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXUIKitBackgroundModeHandler.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXUIKitBackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXUIKitBackgroundTask.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXUIKitBackgroundTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXUIKitBackgroundTask.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/MXWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/MXWarnings.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Media/MXMediaLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Media/MXMediaLoader.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Media/MXMediaLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Media/MXMediaLoader.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Media/MXMediaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Media/MXMediaManager.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Media/MXMediaManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Media/MXMediaManager.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXBaseProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXBaseProfiler.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXBaseProfiler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXBaseProfiler.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXProfiler.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXTaskProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXTaskProfile.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXTaskProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXTaskProfile.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXTaskProfileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXTaskProfileName.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Profiling/MXTaskProfile_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Profiling/MXTaskProfile_Private.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Protocols/MXSummable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Protocols/MXSummable.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/MXRealmHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/MXRealmHelper.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/MXRealmHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/MXRealmHelper.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/RLMRealm+MatrixSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/RLMRealm+MatrixSDK.h -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/RLMRealm+MatrixSDK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/RLMRealm+MatrixSDK.m -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/RLMSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/RLMSupport.swift -------------------------------------------------------------------------------- /MatrixSDK/Utils/Realm/Realm+MatrixSDK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/Utils/Realm/Realm+MatrixSDK.swift -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallKit/MXCallKitAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallKit/MXCallKitAdapter.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallKit/MXCallKitAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallKit/MXCallKitAdapter.m -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallKit/MXCallKitConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallKit/MXCallKitConfiguration.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallKit/MXCallKitConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallKit/MXCallKitConfiguration.m -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallStack/MXCallAudioSessionConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallStack/MXCallAudioSessionConfigurator.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallStack/MXCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallStack/MXCallStack.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/CallStack/MXCallStackCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/CallStack/MXCallStackCall.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXCall.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXCall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXCall.m -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXCallManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXCallManager.h -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXCallManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXCallManager.m -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXiOSAudioOutputRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXiOSAudioOutputRoute.swift -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXiOSAudioOutputRouteType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXiOSAudioOutputRouteType.swift -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXiOSAudioOutputRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXiOSAudioOutputRouter.swift -------------------------------------------------------------------------------- /MatrixSDK/VoIP/MXiOSAudioOutputRouterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDK/VoIP/MXiOSAudioOutputRouterDelegate.swift -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStack.h -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStack.m -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStackCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStackCall.h -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStackCall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleCallStackCall.m -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleVideoView.h -------------------------------------------------------------------------------- /MatrixSDKExtensions/VoIP/Jingle/MXJingleVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKExtensions/VoIP/Jingle/MXJingleVideoView.m -------------------------------------------------------------------------------- /MatrixSDKTests/Crypto/CryptoMachine/Device+Stub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Crypto/CryptoMachine/Device+Stub.swift -------------------------------------------------------------------------------- /MatrixSDKTests/DirectRoomTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/DirectRoomTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Dummy.swift -------------------------------------------------------------------------------- /MatrixSDKTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Info.plist -------------------------------------------------------------------------------- /MatrixSDKTests/JSONModels/MXEventFixtures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/JSONModels/MXEventFixtures.swift -------------------------------------------------------------------------------- /MatrixSDKTests/JSONModels/MXEventTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/JSONModels/MXEventTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAccountDataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAccountDataTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAes256KeyBackupTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAes256KeyBackupTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAesUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAesUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedEditsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedEditsTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedEditsUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedEditsUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedPollsUpdaterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedPollsUpdaterTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedReactionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedReactionTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedReferenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedReferenceTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAggregatedReferenceUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAggregatedReferenceUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXAsyncTaskQueueUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAsyncTaskQueueUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXAuthenticationSessionUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAuthenticationSessionUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXAutoDiscoveryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXAutoDiscoveryTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXBackgroundSyncServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBackgroundSyncServiceTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXBackgroundTaskUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBackgroundTaskUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXBaseKeyBackupTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBaseKeyBackupTests.h -------------------------------------------------------------------------------- /MatrixSDKTests/MXBaseKeyBackupTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBaseKeyBackupTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXBeaconAggregationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBeaconAggregationsTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXBeaconInfoUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXBeaconInfoUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXClientInformationServiceUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXClientInformationServiceUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXCredentialsUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCredentialsUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXCrossSigningTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCrossSigningTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXCryptoKeyVerificationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCryptoKeyVerificationTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXCryptoRecoveryServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCryptoRecoveryServiceTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXCryptoSecretStorageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCryptoSecretStorageTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXCryptoShareTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCryptoShareTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXCryptoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXCryptoTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXDeviceListOperationsPoolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXDeviceListOperationsPoolTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXErrorUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXErrorUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXEventAnnotationUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXEventAnnotationUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXEventReferenceUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXEventReferenceUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXEventScanStoreUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXEventScanStoreUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXFilterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXFilterTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXFilterUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXFilterUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXGeoURIComponentsUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXGeoURIComponentsUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXHTTPAdditionalHeadersUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXHTTPAdditionalHeadersUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXHTTPClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXHTTPClientTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXHomeserverCapabilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXHomeserverCapabilitiesTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXJSONModelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXJSONModelTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXJSONModelUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXJSONModelUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXKeyBackupUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXKeyBackupUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXKeyProviderUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXKeyProviderUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXLazyLoadingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXLazyLoadingTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXLocationServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXLocationServiceTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXLoggerUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXLoggerUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXMatrixVersionsUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXMatrixVersionsUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXMediaScanStoreUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXMediaScanStoreUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXMegolmExportEncryptionUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXMegolmExportEncryptionUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXMyUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXMyUserTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXNotificationCenterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXNotificationCenterTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXPeekingRoomTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXPeekingRoomTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXPollAggregatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXPollAggregatorTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXPollBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXPollBuilderTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXPollRelationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXPollRelationTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXPushRuleUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXPushRuleUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXQRCodeDataUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXQRCodeDataUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXReceiptDataIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXReceiptDataIntegrationTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXReplyEventParserUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXReplyEventParserUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXResponseUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXResponseUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXRestClientExtensionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRestClientExtensionsTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRestClientNoAuthAPITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRestClientNoAuthAPITests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRestClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRestClientTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomEventFilterUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomEventFilterUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomEventTimelineTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomEventTimelineTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomListDataManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomListDataManagerTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomMemberTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomMemberTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomStateDynamicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomStateDynamicTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomStateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomStateTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomStateUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomStateUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomSummaryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomSummaryTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomSummaryTrustTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomSummaryTrustTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXRoomTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXRoomTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXSelfSignedHomeserverTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSelfSignedHomeserverTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXSessionStartupProgressUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSessionStartupProgressUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXSessionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSessionTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXSpaceChildContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSpaceChildContentTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXSpaceServiceTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSpaceServiceTest.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreFileStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreFileStoreTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreMemoryStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreMemoryStoreTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreNoStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreNoStoreTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreRoomListDataManagerUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreRoomListDataManagerUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreTests.h -------------------------------------------------------------------------------- /MatrixSDKTests/MXStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXStoreTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXSyncResponseUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXSyncResponseUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXThreadEventTimelineUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXThreadEventTimelineUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXThreadingServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXThreadingServiceTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXThreadingServiceUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXThreadingServiceUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXThreadsNotificationCountTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXThreadsNotificationCountTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXToDevicePayloadUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXToDevicePayloadUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MXToolsUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXToolsUnitTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXUserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXUserTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MXVoIPTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MXVoIPTests.m -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTests-Bridging-Header.h -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsData.h -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsData.m -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsData.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsE2EData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsE2EData.h -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsE2EData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsE2EData.m -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsE2EData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsE2EData.swift -------------------------------------------------------------------------------- /MatrixSDKTests/MatrixSDKTestsSwiftHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/MatrixSDKTestsSwiftHeader.h -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXMockCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXMockCallStack.h -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXMockCallStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXMockCallStack.m -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXMockCallStackCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXMockCallStackCall.h -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXMockCallStackCall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXMockCallStackCall.m -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXRestClientStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXRestClientStub.h -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MXRestClientStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MXRestClientStub.m -------------------------------------------------------------------------------- /MatrixSDKTests/Mocks/MockRoomSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Mocks/MockRoomSummary.swift -------------------------------------------------------------------------------- /MatrixSDKTests/TestPlans/AllTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/TestPlans/AllTests.xctestplan -------------------------------------------------------------------------------- /MatrixSDKTests/TestPlans/AllTestsWithSanitizers.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/TestPlans/AllTestsWithSanitizers.xctestplan -------------------------------------------------------------------------------- /MatrixSDKTests/TestPlans/AllWorkingTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/TestPlans/AllWorkingTests.xctestplan -------------------------------------------------------------------------------- /MatrixSDKTests/TestPlans/UnitTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/TestPlans/UnitTests.xctestplan -------------------------------------------------------------------------------- /MatrixSDKTests/Utils/MXSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Utils/MXSession.swift -------------------------------------------------------------------------------- /MatrixSDKTests/Utils/MXSessionTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Utils/MXSessionTracker.swift -------------------------------------------------------------------------------- /MatrixSDKTests/Utils/MXTaskQueueUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Utils/MXTaskQueueUnitTests.swift -------------------------------------------------------------------------------- /MatrixSDKTests/Utils/TestObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/MatrixSDKTests/Utils/TestObserver.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /changelog.d/_template.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/changelog.d/_template.md.jinja -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/codecov.yml -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/lint.sh -------------------------------------------------------------------------------- /scripts/symbolicate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/scripts/symbolicate/.gitignore -------------------------------------------------------------------------------- /scripts/symbolicate/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/scripts/symbolicate/credentials.py -------------------------------------------------------------------------------- /scripts/symbolicate/symbolicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/scripts/symbolicate/symbolicate.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/test.sh -------------------------------------------------------------------------------- /towncrier.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-ios-sdk/HEAD/towncrier.toml --------------------------------------------------------------------------------