├── .buildkite └── pipeline.yml ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGES.rst ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build.gradle ├── build_fdroid_apk.sh ├── build_jisti_libs.sh ├── build_jitsi_libs.sh ├── build_matrix_sdk_lib.sh ├── build_olm_lib.sh ├── compile_with_sdk_lib.sh ├── compile_with_sdk_project.sh ├── docs └── notifications.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── set_debug_env.sh ├── settings.gradle ├── sign_apk.sh ├── tools ├── check │ ├── check_code_quality.sh │ ├── forbidden_strings_in_code.txt │ └── forbidden_strings_in_resources.txt ├── debug_alter_auth_token.sh ├── debug_alter_scalar_token.sh ├── debug_dump_filesystem.sh ├── debug_dump_prefs.sh ├── tests │ ├── app_standby_off.sh │ ├── app_standby_on.sh │ ├── doze_mode_disable.sh │ ├── doze_mode_enable.sh │ ├── test_boot_complete.sh │ ├── test_configuration_link.sh │ └── test_referrer.sh └── travis │ └── check_pr.sh ├── trigger_release.sh └── vector ├── .gitignore ├── build.gradle ├── lint.xml ├── proguard-rules.pro └── src ├── androidTest └── java │ ├── im │ └── vector │ │ └── util │ │ └── SecureSecretStoreTest.kt │ └── org │ └── matrix │ └── vector │ └── CustomLinkifyTest.kt ├── app ├── AndroidManifest.xml ├── google-services.json └── java │ └── im │ └── vector │ └── push │ └── fcm │ ├── FcmHelper.java │ ├── NotificationTroubleshootTestManagerFactory.kt │ ├── VectorFirebaseMessagingService.kt │ └── troubleshoot │ ├── TestFirebaseToken.kt │ ├── TestPlayServices.kt │ └── TestTokenRegistration.kt ├── appfdroid ├── AndroidManifest.xml └── java │ └── im │ └── vector │ ├── push │ └── fcm │ │ ├── FcmHelper.java │ │ ├── NotificationTroubleshootTestManagerFactory.kt │ │ └── troubleshoot │ │ ├── TestAutoStartBoot.kt │ │ ├── TestBackgroundRestrictions.kt │ │ ├── TestBatteryOptimization.kt │ │ ├── TestNotificationServiceRunning.kt │ │ └── TestServiceRestart.kt │ └── receiver │ └── OnApplicationUpgradeReceiver.kt ├── debug ├── AndroidManifest.xml ├── java │ ├── im.vector.activity │ │ ├── DebugMenuActivity.kt │ │ └── TestLinkifyActivity.kt │ └── im │ │ └── vector │ │ └── receiver │ │ └── DebugReceiver.kt └── res │ └── layout │ ├── activity_debug_menu.xml │ ├── activity_test_linkify.xml │ ├── demo_navigation.xml │ ├── demo_store_listing.xml │ ├── demo_theme_sample.xml │ ├── demo_themes.xml │ └── item_test_linkify.xml ├── main ├── AndroidManifest.xml ├── assets │ ├── html │ │ ├── js │ │ │ ├── highlight.pack.js │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ └── markdown.html │ ├── open_source_licenses.html │ └── postMessageAPI.js ├── java │ └── im │ │ └── vector │ │ ├── ErrorListener.java │ │ ├── EventEmitter.java │ │ ├── IncomingVerificationRequestHandler.kt │ │ ├── KeyRequestHandler.kt │ │ ├── LoginHandler.java │ │ ├── Matrix.java │ │ ├── MyPresenceManager.java │ │ ├── PhoneNumberHandler.java │ │ ├── PopupAlertManager.kt │ │ ├── PublicRoomsManager.java │ │ ├── RegistrationManager.java │ │ ├── UnrecognizedCertApiCallback.java │ │ ├── UnrecognizedCertHandler.java │ │ ├── VectorApp.java │ │ ├── VectorLifeCycleObserver.kt │ │ ├── activity │ │ ├── AbstractWidgetActivity.kt │ │ ├── AccountCreationCaptchaActivity.java │ │ ├── BugReportActivity.kt │ │ ├── CommonActivityUtils.java │ │ ├── CountryPickerActivity.java │ │ ├── DeactivateAccountActivity.kt │ │ ├── DialogUtils.kt │ │ ├── FallbackAuthenticationActivity.kt │ │ ├── HandleBackParticipant.kt │ │ ├── HistoricalRoomsActivity.kt │ │ ├── IntegrationManagerActivity.kt │ │ ├── JitsiCallActivity.java │ │ ├── JoinRoomActivity.kt │ │ ├── KeysBackupManageActivity.kt │ │ ├── KeysBackupRestoreActivity.kt │ │ ├── KeysBackupSetupActivity.kt │ │ ├── LanguagePickerActivity.java │ │ ├── LockScreenActivity.java │ │ ├── LoggingOutActivity.java │ │ ├── LoginActivity.java │ │ ├── MXCActionBarActivity.java │ │ ├── MediaPreviewerActivity.java │ │ ├── NotificationPrivacyActivity.java │ │ ├── PhoneNumberAdditionActivity.java │ │ ├── PhoneNumberVerificationActivity.kt │ │ ├── ReviewTermsActivity.kt │ │ ├── RoomDirectoryPickerActivity.java │ │ ├── SASVerificationActivity.kt │ │ ├── SimpleFragmentActivity.kt │ │ ├── SplashActivity.java │ │ ├── StickerPickerActivity.kt │ │ ├── VectorAppCompatActivity.kt │ │ ├── VectorAvatarViewerActivity.kt │ │ ├── VectorBaseSearchActivity.java │ │ ├── VectorCallViewActivity.java │ │ ├── VectorFakeRoomPreviewActivity.java │ │ ├── VectorGroupDetailsActivity.java │ │ ├── VectorHomeActivity.java │ │ ├── VectorLauncherActivity.kt │ │ ├── VectorMediaPickerActivity.java │ │ ├── VectorMediaViewerActivity.java │ │ ├── VectorMemberDetailsActivity.java │ │ ├── VectorPublicRoomsActivity.java │ │ ├── VectorRoomActivity.java │ │ ├── VectorRoomCreationActivity.java │ │ ├── VectorRoomDetailsActivity.java │ │ ├── VectorRoomInviteMembersActivity.java │ │ ├── VectorSettingsActivity.kt │ │ ├── VectorSharedFilesActivity.java │ │ ├── VectorUnifiedSearchActivity.java │ │ ├── VectorUniversalLinkActivity.java │ │ ├── VectorWebViewActivity.kt │ │ ├── WidgetActivity.kt │ │ ├── interfaces │ │ │ └── Restorable.kt │ │ ├── policies │ │ │ ├── AccountCreationTermsActivity.kt │ │ │ ├── AccountCreationTermsViewState.kt │ │ │ ├── LocalizedFlowDataLoginTermsChecked.kt │ │ │ ├── PolicyController.kt │ │ │ ├── PolicyHolder.kt │ │ │ └── PolicyModel.kt │ │ └── util │ │ │ ├── RequestCodes.kt │ │ │ └── WaitingViewData.kt │ │ ├── adapters │ │ ├── AbsAdapter.java │ │ ├── AbsFilterableAdapter.java │ │ ├── AdapterSection.java │ │ ├── AdapterUtils.java │ │ ├── AutoCompletedCommandLineAdapter.java │ │ ├── AutoCompletedUserAdapter.java │ │ ├── CountryAdapter.java │ │ ├── GroupAdapter.java │ │ ├── GroupAdapterSection.java │ │ ├── GroupDetailsFragmentPagerAdapter.java │ │ ├── GroupDetailsPeopleAdapter.java │ │ ├── GroupDetailsRoomsAdapter.java │ │ ├── GroupInvitationViewHolder.java │ │ ├── GroupRoomViewHolder.java │ │ ├── GroupUserViewHolder.java │ │ ├── GroupViewHolder.java │ │ ├── HomeRoomAdapter.java │ │ ├── ImageCompressionDescription.java │ │ ├── ImageSizesAdapter.java │ │ ├── KnownContactsAdapterSection.java │ │ ├── LanguagesAdapter.java │ │ ├── MediaPreviewAdapter.java │ │ ├── ParticipantAdapterItem.java │ │ ├── PeopleAdapter.java │ │ ├── PublicRoomsAdapterSection.java │ │ ├── RoomAdapter.java │ │ ├── RoomDirectoryAdapter.java │ │ ├── RoomInvitationViewHolder.java │ │ ├── RoomViewHolder.java │ │ ├── VectorGroupsListAdapter.java │ │ ├── VectorMediaViewerAdapter.java │ │ ├── VectorMemberDetailsAdapter.java │ │ ├── VectorMemberDetailsDevicesAdapter.java │ │ ├── VectorMessagesAdapter.java │ │ ├── VectorMessagesAdapterHelper.java │ │ ├── VectorMessagesAdapterMediasHelper.java │ │ ├── VectorParticipantsAdapter.java │ │ ├── VectorPublicRoomsAdapter.java │ │ ├── VectorReadReceiptsAdapter.kt │ │ ├── VectorRoomCreationAdapter.java │ │ ├── VectorRoomDetailsMembersAdapter.java │ │ ├── VectorRoomSummaryAdapter.java │ │ ├── VectorRoomsSelectionAdapter.java │ │ ├── VectorSearchFilesListAdapter.java │ │ ├── VectorSearchMessagesListAdapter.java │ │ ├── VectorUnifiedSearchFragmentPagerAdapter.java │ │ ├── VectorUnknownDevicesAdapter.java │ │ └── model │ │ │ └── NotificationCounter.kt │ │ ├── analytics │ │ ├── Analytics.kt │ │ ├── AppAnalytics.kt │ │ ├── Events.kt │ │ ├── MatomoAnalytics.kt │ │ ├── MetricsListenerProxy.kt │ │ └── e2e │ │ │ ├── DecryptionFailure.kt │ │ │ └── DecryptionFailureTracker.kt │ │ ├── contacts │ │ ├── Contact.java │ │ ├── ContactsManager.java │ │ └── PIDsRetriever.java │ │ ├── dialogs │ │ ├── BackgroundSyncModeChooserDialog.kt │ │ ├── ConsentNotGivenHelper.kt │ │ ├── DialogAdapter.kt │ │ ├── DialogCallAdapter.kt │ │ ├── DialogListItem.kt │ │ ├── DialogListItemHolder.kt │ │ ├── DialogLocker.kt │ │ ├── DialogSendItemAdapter.kt │ │ └── ExportKeysDialog.kt │ │ ├── extensions │ │ ├── BasicExtensions.kt │ │ ├── MatrixSdkExtensions.kt │ │ ├── UrlExtensions.kt │ │ └── ViewExtensions.kt │ │ ├── features │ │ ├── hhs │ │ │ ├── ResourceLimitDialogHelper.kt │ │ │ ├── ResourceLimitErrorFormatter.kt │ │ │ └── ResourceLimitEventListener.kt │ │ └── logout │ │ │ └── ProposeLogout.kt │ │ ├── fragments │ │ ├── AbsHomeFragment.java │ │ ├── FavouritesFragment.java │ │ ├── GroupDetailsBaseFragment.java │ │ ├── GroupDetailsHomeFragment.java │ │ ├── GroupDetailsPeopleFragment.java │ │ ├── GroupDetailsRoomsFragment.java │ │ ├── GroupsFragment.java │ │ ├── HomeFragment.java │ │ ├── ImageSizeSelectionDialogFragment.java │ │ ├── PeopleFragment.java │ │ ├── RoomsFragment.java │ │ ├── VectorBaseBottomSheetDialogFragment.kt │ │ ├── VectorBaseFragment.kt │ │ ├── VectorBaseMvRxFragment.kt │ │ ├── VectorMessageListFragment.java │ │ ├── VectorMessagesFragment.java │ │ ├── VectorPublicRoomsListFragment.java │ │ ├── VectorReadReceiptsDialogFragment.kt │ │ ├── VectorRecentsListFragment.java │ │ ├── VectorRoomDetailsMembersFragment.java │ │ ├── VectorRoomSettingsFragment.java │ │ ├── VectorSearchMessagesListFragment.java │ │ ├── VectorSearchPeopleListFragment.java │ │ ├── VectorSearchRoomFilesListFragment.java │ │ ├── VectorSearchRoomsFilesListFragment.java │ │ ├── VectorSearchRoomsListFragment.java │ │ ├── VectorSettingsAdvancedNotificationPreferenceFragment.kt │ │ ├── VectorSettingsFragmentInteractionListener.kt │ │ ├── VectorSettingsNotificationsTroubleshootFragment.kt │ │ ├── VectorSettingsPreferencesFragment.kt │ │ ├── VectorUnknownDevicesFragment.java │ │ ├── VectorUserGroupsDialogFragment.java │ │ ├── base │ │ │ └── VectorBaseDialogFragment.kt │ │ ├── discovery │ │ │ ├── DiscoverySettingsViewModel.kt │ │ │ ├── DiscoverySharedViewModel.kt │ │ │ ├── SetIdentityServerFragment.kt │ │ │ ├── SetIdentityServerViewModel.kt │ │ │ ├── SettingsButtonItem.kt │ │ │ ├── SettingsDiscoveryController.kt │ │ │ ├── SettingsImageItem.kt │ │ │ ├── SettingsInfoItem.kt │ │ │ ├── SettingsItem.kt │ │ │ ├── SettingsItemText.kt │ │ │ ├── SettingsLoadingItem.kt │ │ │ ├── SettingsSectionTitle.kt │ │ │ ├── SettingsTextButtonItem.kt │ │ │ └── VectorSettingsDiscoveryFragment.kt │ │ ├── keysbackup │ │ │ ├── restore │ │ │ │ ├── KeysBackupRestoreFromKeyFragment.kt │ │ │ │ ├── KeysBackupRestoreFromKeyViewModel.kt │ │ │ │ ├── KeysBackupRestoreFromPassphraseFragment.kt │ │ │ │ ├── KeysBackupRestoreFromPassphraseViewModel.kt │ │ │ │ ├── KeysBackupRestoreSharedViewModel.kt │ │ │ │ └── KeysBackupRestoreSuccessFragment.kt │ │ │ ├── settings │ │ │ │ ├── KeysBackupSettingsFragment.kt │ │ │ │ ├── KeysBackupSettingsRecyclerViewAdapter.kt │ │ │ │ └── KeysBackupSettingsViewModel.kt │ │ │ └── setup │ │ │ │ ├── KeysBackupSetupSharedViewModel.kt │ │ │ │ ├── KeysBackupSetupStep1Fragment.kt │ │ │ │ ├── KeysBackupSetupStep2Fragment.kt │ │ │ │ └── KeysBackupSetupStep3Fragment.kt │ │ ├── roomwidgets │ │ │ ├── RoomWidgetFragment.kt │ │ │ ├── RoomWidgetPermissionBottomSheet.kt │ │ │ ├── RoomWidgetPermissionViewModel.kt │ │ │ ├── RoomWidgetViewModel.kt │ │ │ └── WebviewPermissionUtils.kt │ │ ├── signout │ │ │ ├── SignOutBottomSheetDialogFragment.kt │ │ │ └── SignOutViewModel.kt │ │ ├── terms │ │ │ ├── AcceptTermsFragment.kt │ │ │ ├── AcceptTermsViewModel.kt │ │ │ ├── ServiceTermsArgs.kt │ │ │ ├── TermsController.kt │ │ │ └── TermsModel.kt │ │ ├── troubleshoot │ │ │ ├── NotificationTroubleshootRecyclerViewAdapter.kt │ │ │ ├── NotificationTroubleshootTestManager.kt │ │ │ ├── TestAccountSettings.kt │ │ │ ├── TestBingRulesSettings.kt │ │ │ ├── TestDeviceSettings.kt │ │ │ ├── TestSystemSettings.kt │ │ │ └── TroubleshootTest.kt │ │ └── verification │ │ │ ├── SASVerificationIncomingFragment.kt │ │ │ ├── SASVerificationShortCodeFragment.kt │ │ │ ├── SASVerificationStartFragment.kt │ │ │ ├── SASVerificationVerifiedFragment.kt │ │ │ └── SasVerificationViewModel.kt │ │ ├── listeners │ │ ├── IMessagesAdapterActionsListener.java │ │ ├── ImageViewOnTouchListener.java │ │ ├── ItemPositionChangedListener.java │ │ └── YesNoListener.kt │ │ ├── notifications │ │ ├── IconLoader.kt │ │ ├── InviteNotifiableEvent.kt │ │ ├── NotifiableEvent.kt │ │ ├── NotifiableEventResolver.kt │ │ ├── NotifiableMessageEvent.kt │ │ ├── NotificationDrawerManager.kt │ │ ├── NotificationUtils.kt │ │ ├── OutdatedEventDetector.kt │ │ ├── RoomEventGroupInfo.kt │ │ └── SimpleNotifiableEvent.kt │ │ ├── preference │ │ ├── AddressPreference.kt │ │ ├── BingRulePreference.kt │ │ ├── ProgressBarPreference.kt │ │ ├── RoomAvatarPreference.kt │ │ ├── UserAvatarPreference.kt │ │ ├── VectorEditTextPreference.kt │ │ ├── VectorGroupPreference.kt │ │ ├── VectorListPreference.kt │ │ ├── VectorPreference.kt │ │ ├── VectorPreferenceCategory.kt │ │ ├── VectorPreferenceDivider.kt │ │ └── VectorSwitchPreference.kt │ │ ├── push │ │ └── PushManager.java │ │ ├── receiver │ │ ├── LoginConfig.kt │ │ ├── NotificationBroadcastReceiver.kt │ │ ├── VectorBootReceiver.java │ │ ├── VectorReferrerReceiver.java │ │ ├── VectorRegistrationReceiver.java │ │ └── VectorUniversalLinkReceiver.java │ │ ├── repositories │ │ └── ServerUrlsRepository.kt │ │ ├── services │ │ ├── CallService.kt │ │ ├── EventStreamService.java │ │ ├── EventStreamServiceX.kt │ │ ├── PushSimulatorWorker.kt │ │ └── VectorService.kt │ │ ├── settings │ │ ├── FontScale.kt │ │ └── VectorLocale.kt │ │ ├── store │ │ └── LoginStorage.java │ │ ├── tools │ │ └── VectorUncaughtExceptionHandler.kt │ │ ├── types │ │ └── TypeAliases.kt │ │ ├── ui │ │ ├── VectorQuoteSpan.kt │ │ ├── animation │ │ │ └── VectorTransitionSet.kt │ │ ├── arch │ │ │ └── LiveEvent.kt │ │ ├── badge │ │ │ └── BadgeProxy.kt │ │ ├── epoxy │ │ │ ├── BaseEpoxyHolder.kt │ │ │ ├── GenericHeaderItem.kt │ │ │ └── extensions.kt │ │ ├── list │ │ │ ├── GenericItemViewHolder.kt │ │ │ └── GenericRecyclerViewItem.kt │ │ ├── themes │ │ │ ├── ActivityOtherThemes.kt │ │ │ └── ThemeUtils.kt │ │ └── util │ │ │ ├── SimpleTextWatcher.kt │ │ │ └── TextView.kt │ │ ├── util │ │ ├── AssetReader.kt │ │ ├── AutoCompletionMode.kt │ │ ├── BitmapUtil.kt │ │ ├── BugReporter.java │ │ ├── BugReporterMultipartBody.java │ │ ├── CallUtilities.java │ │ ├── CallsManager.java │ │ ├── CountryPhoneData.java │ │ ├── Emoji.kt │ │ ├── EventGroup.java │ │ ├── ExternalApplicationsUtil.kt │ │ ├── FileUtils.kt │ │ ├── GroupUtils.java │ │ ├── HomeRoomsViewModel.kt │ │ ├── JsonUtil.kt │ │ ├── MatrixLinkMovementMethod.java │ │ ├── MatrixURLSpan.java │ │ ├── PermissionsTools.kt │ │ ├── PhoneNumberUtils.java │ │ ├── PreferencesManager.java │ │ ├── RageShake.java │ │ ├── ReadMarkerManager.java │ │ ├── RingtoneUtils.kt │ │ ├── RiotEventDisplay.java │ │ ├── RoomDirectoryData.java │ │ ├── RoomUtils.java │ │ ├── SecretStoringUtils.kt │ │ ├── SlashCommandsParser.java │ │ ├── SlidableMediaInfo.java │ │ ├── StickySectionHelper.java │ │ ├── SystemUtils.kt │ │ ├── UrlUtil.kt │ │ ├── VectorAutoLinkPatterns.kt │ │ ├── VectorImageGetter.java │ │ ├── VectorLinkify.kt │ │ ├── VectorMarkdownParser.java │ │ ├── VectorRoomMediasSender.java │ │ ├── VectorUtils.java │ │ ├── ViewUtil.kt │ │ ├── WeakReferenceDelegate.kt │ │ └── state │ │ │ └── MxAsync.kt │ │ ├── view │ │ ├── ActiveWidgetsBanner.java │ │ ├── CodeBlockNestedScrollView.java │ │ ├── DrawerScrollView.java │ │ ├── EmptyViewItemDecoration.java │ │ ├── HomeSectionView.java │ │ ├── KeysBackupBanner.kt │ │ ├── NotificationAreaView.kt │ │ ├── PasswordStrengthBar.kt │ │ ├── PieFractionView.java │ │ ├── PillImageView.java │ │ ├── PillView.java │ │ ├── RecentMediaLayout.java │ │ ├── RecentsExpandableListView.java │ │ ├── SectionView.java │ │ ├── SimpleDividerItemDecoration.java │ │ ├── UnreadCounterBadgeView.java │ │ ├── UrlPreviewView.kt │ │ ├── VectorAutoCompleteTextView.java │ │ ├── VectorCircularImageView.java │ │ ├── VectorOngoingConferenceCallView.java │ │ ├── VectorPendingCallView.java │ │ ├── VectorViewPager.java │ │ ├── VideoRecordProgressView.java │ │ └── VideoRecordView.java │ │ ├── webview │ │ ├── ConsentWebViewEventListener.kt │ │ ├── DefaultWebViewEventListener.kt │ │ ├── VectorWebViewClient.kt │ │ ├── WebViewEventListener.kt │ │ ├── WebViewEventListenerFactory.kt │ │ └── WebViewMode.kt │ │ └── widgets │ │ ├── IntegrationManagerConfig.kt │ │ ├── RegisterResponse.kt │ │ ├── Widget.java │ │ ├── WidgetContent.java │ │ ├── WidgetError.java │ │ ├── WidgetManagerProvider.kt │ │ ├── WidgetsApi.java │ │ ├── WidgetsManager.java │ │ ├── WidgetsRestClient.java │ │ ├── model │ │ └── JitsiWidgetProperties.kt │ │ └── tokens │ │ └── TokensStore.kt └── res │ ├── anim │ ├── anim_alerter_no_anim.xml │ ├── anim_slide_in_bottom.xml │ ├── anim_slide_nothing.xml │ ├── anim_slide_out_bottom.xml │ ├── enter_fade_in.xml │ ├── enter_from_left.xml │ ├── enter_from_right.xml │ ├── exit_fade_out.xml │ ├── exit_to_left.xml │ ├── exit_to_right.xml │ ├── no_anim.xml │ └── unread_marker_anim.xml │ ├── color │ ├── button_text_color_selector.xml │ ├── home_bottom_nav_view_tint.xml │ ├── primary_text_color_selector_dark.xml │ ├── primary_text_color_selector_light.xml │ └── primary_text_color_selector_status.xml │ ├── drawable-hdpi │ ├── alert_triangle.png │ ├── backup_keys.png │ ├── ic_eye_black.png │ ├── ic_eye_closed_black.png │ ├── ic_home_black_24dp.png │ ├── ic_import_black.png │ ├── ic_material_play_circle.png │ ├── ic_notification_privacy_warning.png │ ├── ic_person_black_24dp.png │ ├── ic_remove_circle_outline_red.png │ ├── ic_settings.png │ ├── ic_small_close.png │ ├── ic_star_black_24dp.png │ ├── ic_widget_bin.png │ ├── ic_widget_external_link.png │ ├── ic_widget_refresh.png │ ├── icon_notif_important.png │ ├── key_big.png │ ├── key_small.png │ ├── logo.png │ ├── logo_login.png │ ├── logo_transparent.png │ ├── riot_splash_0_blue.png │ ├── riot_splash_1_green.png │ ├── riot_splash_2_pink.png │ ├── riot_splash_3_red.png │ ├── shield.png │ ├── sticker_placeholder.png │ ├── sync.png │ ├── unit_test.png │ ├── unit_test_ko.png │ └── unit_test_ok.png │ ├── drawable-ldpi │ ├── icon_notif_important.png │ ├── logo.png │ ├── logo_login.png │ └── logo_transparent.png │ ├── drawable-mdpi │ ├── alert_triangle.png │ ├── backup_keys.png │ ├── ic_eye_black.png │ ├── ic_eye_closed_black.png │ ├── ic_home_black_24dp.png │ ├── ic_import_black.png │ ├── ic_material_play_circle.png │ ├── ic_notification_privacy_warning.png │ ├── ic_person_black_24dp.png │ ├── ic_remove_circle_outline_red.png │ ├── ic_settings.png │ ├── ic_small_close.png │ ├── ic_star_black_24dp.png │ ├── ic_widget_bin.png │ ├── ic_widget_external_link.png │ ├── ic_widget_refresh.png │ ├── icon_notif_important.png │ ├── key_big.png │ ├── key_small.png │ ├── logo.png │ ├── logo_login.png │ ├── logo_transparent.png │ ├── riot_splash_0_blue.png │ ├── riot_splash_1_green.png │ ├── riot_splash_2_pink.png │ ├── riot_splash_3_red.png │ ├── shield.png │ ├── sticker_placeholder.png │ ├── stickerpack_rabbit.png │ ├── sync.png │ ├── unit_test.png │ ├── unit_test_ko.png │ └── unit_test_ok.png │ ├── drawable-xhdpi │ ├── alert_triangle.png │ ├── backup_keys.png │ ├── ic_eye_black.png │ ├── ic_eye_closed_black.png │ ├── ic_home_black_24dp.png │ ├── ic_import_black.png │ ├── ic_material_play_circle.png │ ├── ic_notification_privacy_warning.png │ ├── ic_person_black_24dp.png │ ├── ic_remove_circle_outline_red.png │ ├── ic_send_sticker.png │ ├── ic_settings.png │ ├── ic_small_close.png │ ├── ic_star_black_24dp.png │ ├── ic_widget_bin.png │ ├── ic_widget_external_link.png │ ├── ic_widget_refresh.png │ ├── icon_notif_important.png │ ├── key_big.png │ ├── key_small.png │ ├── logo.png │ ├── logo_login.png │ ├── logo_transparent.png │ ├── riot_splash_0_blue.png │ ├── riot_splash_1_green.png │ ├── riot_splash_2_pink.png │ ├── riot_splash_3_red.png │ ├── shield.png │ ├── sticker_placeholder.png │ ├── sync.png │ ├── unit_test.png │ ├── unit_test_ko.png │ └── unit_test_ok.png │ ├── drawable-xxhdpi │ ├── admin_icon.png │ ├── alert_triangle.png │ ├── apps_icon.png │ ├── backup_keys.png │ ├── bubbles_bg_portrait.png │ ├── camera_play.png │ ├── camera_stop.png │ ├── camera_video_capture.png │ ├── e2e_blocked.png │ ├── e2e_unencrypted.png │ ├── e2e_verified.png │ ├── e2e_warning.png │ ├── error.png │ ├── file_upload_failed.png │ ├── filetype_attachment.png │ ├── filetype_audio.png │ ├── filetype_gif.png │ ├── filetype_image.png │ ├── filetype_video.png │ ├── ic_add_black.png │ ├── ic_add_circle_outline_white_24dp.png │ ├── ic_add_white.png │ ├── ic_arrow_drop_down_white.png │ ├── ic_arrow_drop_up_white.png │ ├── ic_block_black.png │ ├── ic_comment_black.png │ ├── ic_devices_info.png │ ├── ic_exit_media_picker_vector_green.png │ ├── ic_eye_black.png │ ├── ic_eye_closed_black.png │ ├── ic_file_download_white.png │ ├── ic_guest_access_black.png │ ├── ic_home_black_24dp.png │ ├── ic_import_black.png │ ├── ic_list_white_24dp.png │ ├── ic_material_add_circle.png │ ├── ic_material_arrow_back_white.png │ ├── ic_material_bug_report.png │ ├── ic_material_call_end_grey.png │ ├── ic_material_camera.png │ ├── ic_material_chevron_right_black.png │ ├── ic_material_copy.png │ ├── ic_material_create_white.png │ ├── ic_material_delete.png │ ├── ic_material_delete_white.png │ ├── ic_material_done.png │ ├── ic_material_done_all_white.png │ ├── ic_material_done_white.png │ ├── ic_material_eject_white.png │ ├── ic_material_exit_to_app.png │ ├── ic_material_expand_less_black.png │ ├── ic_material_expand_more_black.png │ ├── ic_material_file.png │ ├── ic_material_forward.png │ ├── ic_material_history_white.png │ ├── ic_material_leave.png │ ├── ic_material_link_black.png │ ├── ic_material_menu_white.png │ ├── ic_material_message_black.png │ ├── ic_material_message_grey.png │ ├── ic_material_mic_off_grey.png │ ├── ic_material_mic_off_pink_red.png │ ├── ic_material_movie.png │ ├── ic_material_photo.png │ ├── ic_material_play_circle.png │ ├── ic_material_quote.png │ ├── ic_material_save.png │ ├── ic_material_search_black.png │ ├── ic_material_search_white.png │ ├── ic_material_send_black.png │ ├── ic_material_send_green.png │ ├── ic_material_send_white.png │ ├── ic_material_settings_small.png │ ├── ic_material_share.png │ ├── ic_material_speaker_phone_grey.png │ ├── ic_material_speaker_phone_pink_red.png │ ├── ic_material_star_black.png │ ├── ic_material_star_border_black.png │ ├── ic_material_switch_video_grey.png │ ├── ic_material_switch_video_pink_red.png │ ├── ic_material_transparent.png │ ├── ic_material_videocam.png │ ├── ic_material_videocam_grey.png │ ├── ic_material_videocam_off_grey.png │ ├── ic_material_videocam_off_pink_red.png │ ├── ic_notification_privacy_warning.png │ ├── ic_perm_device_information_black.png │ ├── ic_person_add_black.png │ ├── ic_person_black.png │ ├── ic_person_black_24dp.png │ ├── ic_person_outline_black.png │ ├── ic_power_settings.png │ ├── ic_report_black.png │ ├── ic_send_sticker.png │ ├── ic_settings.png │ ├── ic_share_white.png │ ├── ic_small_close.png │ ├── ic_star_black_24dp.png │ ├── ic_switch_camera.png │ ├── ic_take_picture_vector_green.png │ ├── ic_verified_user_black.png │ ├── ic_widget_bin.png │ ├── ic_widget_external_link.png │ ├── ic_widget_refresh.png │ ├── ic_word_readable_black.png │ ├── icon_notif_important.png │ ├── icon_person.png │ ├── incoming_call_notification_transparent.png │ ├── jump_to_unread.png │ ├── key_big.png │ ├── key_small.png │ ├── logo.png │ ├── logo_login.png │ ├── logo_transparent.png │ ├── main_alias_icon.png │ ├── mod_icon.png │ ├── network_matrix.png │ ├── newmessages.png │ ├── riot_splash_0_blue.png │ ├── riot_splash_1_green.png │ ├── riot_splash_2_pink.png │ ├── riot_splash_3_red.png │ ├── riot_tab_groups.png │ ├── riot_tab_rooms.png │ ├── scrolldown.png │ ├── shield.png │ ├── sticker_placeholder.png │ ├── sync.png │ ├── unit_test.png │ ├── unit_test_ko.png │ ├── unit_test_ok.png │ ├── vector_actions_9b.png │ ├── vector_cancel_upload_download.png │ ├── vector_clear_edittext_green.png │ ├── vector_close_widget.png │ ├── vector_create_direct_room.png │ ├── vector_creation_remove_user.png │ ├── vector_leave_room_black.png │ ├── vector_micro_green.png │ ├── vector_notification_accept_invitation.png │ ├── vector_notification_open.png │ ├── vector_notification_quick_reply.png │ ├── vector_notification_reject_invitation.png │ ├── vector_search_bg.png │ ├── vector_typing.png │ ├── vector_warning_red.png │ ├── video_call_black.png │ ├── video_call_green.png │ ├── voice_call_black.png │ ├── voice_call_end_fushia.png │ ├── voice_call_green.png │ └── voice_call_start_green.png │ ├── drawable-xxxhdpi │ ├── alert_triangle.png │ ├── backup_keys.png │ ├── ic_eye_black.png │ ├── ic_eye_closed_black.png │ ├── ic_home_black_24dp.png │ ├── ic_import_black.png │ ├── ic_material_call_white.png │ ├── ic_material_folder_green_vector.png │ ├── ic_material_play_circle.png │ ├── ic_person_black_24dp.png │ ├── ic_remove_circle_outline_red.png │ ├── ic_settings.png │ ├── ic_small_close.png │ ├── ic_star_black_24dp.png │ ├── ic_widget_bin.png │ ├── ic_widget_external_link.png │ ├── ic_widget_refresh.png │ ├── icon_notif_important.png │ ├── key_big.png │ ├── key_small.png │ ├── logo_transparent.png │ ├── riot_splash_0_blue.png │ ├── riot_splash_1_green.png │ ├── riot_splash_2_pink.png │ ├── riot_splash_3_red.png │ ├── shield.png │ ├── sync.png │ ├── unit_test.png │ ├── unit_test_ko.png │ └── unit_test_ok.png │ ├── drawable │ ├── bg_tombstone_predecessor.xml │ ├── call_header_transparent_bg.xml │ ├── direct_chat_circle_black.xml │ ├── direct_chat_circle_dark.xml │ ├── direct_chat_circle_light.xml │ ├── direct_chat_circle_status.xml │ ├── line_divider_dark.xml │ ├── line_divider_light.xml │ ├── pill_background_bing.xml │ ├── pill_background_room_alias_dark.xml │ ├── pill_background_room_alias_light.xml │ ├── pill_background_room_alias_status.xml │ ├── pill_background_user_id_dark.xml │ ├── pill_background_user_id_light.xml │ ├── pill_background_user_id_status.xml │ ├── riot_animated_logo.xml │ ├── riot_splash.gif │ ├── searches_cursor_background.xml │ ├── shadow_bottom_dark.xml │ ├── shadow_bottom_light.xml │ ├── shadow_top_dark.xml │ ├── shadow_top_light.xml │ ├── splash.xml │ ├── sticker_description_background.xml │ ├── sticker_description_triangle.xml │ ├── vector_background_fab_label.xml │ ├── vector_background_fab_label_light.xml │ ├── vector_medias_picker_button_background.xml │ ├── vector_tabbar_background_dark.xml │ ├── vector_tabbar_background_group_light.xml │ ├── vector_tabbar_background_light.xml │ ├── vector_tabbar_background_status.xml │ ├── vector_tabbar_selected_background_dark.xml │ ├── vector_tabbar_selected_background_group_light.xml │ ├── vector_tabbar_selected_background_light.xml │ ├── vector_tabbar_selected_background_status.xml │ ├── vector_tabbar_unselected_background_dark.xml │ ├── vector_tabbar_unselected_background_group_light.xml │ ├── vector_tabbar_unselected_background_light.xml │ └── vector_tabbar_unselected_background_status.xml │ ├── layout │ ├── active_widget_banner.xml │ ├── activity.xml │ ├── activity_authentication_fallback.xml │ ├── activity_avatar_viewer.xml │ ├── activity_bug_report.xml │ ├── activity_callview.xml │ ├── activity_choose_sticker.xml │ ├── activity_country_picker.xml │ ├── activity_deactivate_account.xml │ ├── activity_empty.xml │ ├── activity_historical.xml │ ├── activity_home.xml │ ├── activity_integration_manager.xml │ ├── activity_jitsi_call.xml │ ├── activity_langagues_picker.xml │ ├── activity_lock_screen.xml │ ├── activity_media_previewer.xml │ ├── activity_member_details.xml │ ├── activity_notification_privacy.xml │ ├── activity_phone_number_addition.xml │ ├── activity_phone_number_verification.xml │ ├── activity_room_directory_picker.xml │ ├── activity_vector_group_details.xml │ ├── activity_vector_invite_members.xml │ ├── activity_vector_login.xml │ ├── activity_vector_media_picker.xml │ ├── activity_vector_media_viewer.xml │ ├── activity_vector_public_rooms.xml │ ├── activity_vector_registration_captcha.xml │ ├── activity_vector_registration_terms.xml │ ├── activity_vector_room.xml │ ├── activity_vector_room_creation.xml │ ├── activity_vector_room_details.xml │ ├── activity_vector_settings.xml │ ├── activity_vector_unified_search.xml │ ├── activity_vector_universal_link_activity.xml │ ├── activity_vector_web_view.xml │ ├── activity_widget.xml │ ├── adapter_item_circular_room_view.xml │ ├── adapter_item_contact_view.xml │ ├── adapter_item_dialog.xml │ ├── adapter_item_group_invite.xml │ ├── adapter_item_group_user_room_view.xml │ ├── adapter_item_group_view.xml │ ├── adapter_item_image_size.xml │ ├── adapter_item_media_preview.xml │ ├── adapter_item_member_details_devices.xml │ ├── adapter_item_policy.xml │ ├── adapter_item_public_room_view.xml │ ├── adapter_item_read_receipt.xml │ ├── adapter_item_room_invite.xml │ ├── adapter_item_room_view.xml │ ├── adapter_item_vector_add_participants.xml │ ├── adapter_item_vector_creation_add_member.xml │ ├── adapter_item_vector_message_code.xml │ ├── adapter_item_vector_message_code_block.xml │ ├── adapter_item_vector_message_code_text.xml │ ├── adapter_item_vector_message_emoji.xml │ ├── adapter_item_vector_message_file.xml │ ├── adapter_item_vector_message_image_video.xml │ ├── adapter_item_vector_message_merge.xml │ ├── adapter_item_vector_message_redact.xml │ ├── adapter_item_vector_message_room_member.xml │ ├── adapter_item_vector_message_room_versioned.xml │ ├── adapter_item_vector_message_text_emote_notice.xml │ ├── adapter_item_vector_people_header.xml │ ├── adapter_item_vector_recent_header.xml │ ├── adapter_item_vector_recent_room.xml │ ├── adapter_item_vector_search_file_by_name.xml │ ├── adapter_item_vector_search_message_emoji.xml │ ├── adapter_item_vector_search_message_file.xml │ ├── adapter_item_vector_search_message_image_video.xml │ ├── adapter_item_vector_search_message_room_member.xml │ ├── adapter_item_vector_search_message_text_emote_notice.xml │ ├── adapter_item_vector_unknown_devices_header.xml │ ├── adapter_local_contacts_sticky_header_subview.xml │ ├── adapter_public_room_sticky_header_subview.xml │ ├── adapter_section_header.xml │ ├── adapter_section_header_local.xml │ ├── adapter_section_header_public_room.xml │ ├── adapter_sticky_header.xml │ ├── adapter_vector_media_viewer.xml │ ├── bottom_sheet_epoxy_list_with_title.xml │ ├── bottom_sheet_logout_and_backup.xml │ ├── bottom_sheet_room_widget_permission.xml │ ├── bottom_sheet_save_recovery_key.xml │ ├── dialog_background_sync_mode.xml │ ├── dialog_base_edit_text.xml │ ├── dialog_base_list_view.xml │ ├── dialog_change_password.xml │ ├── dialog_confirm_password.xml │ ├── dialog_create_group.xml │ ├── dialog_device_delete.xml │ ├── dialog_device_details.xml │ ├── dialog_device_verify.xml │ ├── dialog_directory_picker.xml │ ├── dialog_encryption_info.xml │ ├── dialog_event_content.xml │ ├── dialog_export_e2e_keys.xml │ ├── dialog_html_text.xml │ ├── dialog_import_e2e_keys.xml │ ├── dialog_invite_by_id.xml │ ├── dialog_join_room_by_id.xml │ ├── dialog_no_sticker_pack.xml │ ├── dialog_phone_number_verification.xml │ ├── dialog_preference_edit_text.xml │ ├── dialog_select_text_size.xml │ ├── dialog_ssl_fingerprint.xml │ ├── dialog_unknown_devices.xml │ ├── dialog_unknown_devices_header.xml │ ├── fragment_accept_terms.xml │ ├── fragment_dialog_groups_list.xml │ ├── fragment_dialog_member_list.xml │ ├── fragment_favourites.xml │ ├── fragment_group_details_home.xml │ ├── fragment_group_details_people.xml │ ├── fragment_group_details_rooms.xml │ ├── fragment_groups.xml │ ├── fragment_home.xml │ ├── fragment_keys_backup_restore_from_key.xml │ ├── fragment_keys_backup_restore_from_passphrase.xml │ ├── fragment_keys_backup_restore_success.xml │ ├── fragment_keys_backup_settings.xml │ ├── fragment_keys_backup_setup_step1.xml │ ├── fragment_keys_backup_setup_step2.xml │ ├── fragment_keys_backup_setup_step3.xml │ ├── fragment_people.xml │ ├── fragment_room_widget.xml │ ├── fragment_rooms.xml │ ├── fragment_sas_verification_display_code.xml │ ├── fragment_sas_verification_incoming_request.xml │ ├── fragment_sas_verification_start.xml │ ├── fragment_sas_verification_verified.xml │ ├── fragment_set_identity_server.xml │ ├── fragment_settings_notifications_troubleshoot.xml │ ├── fragment_simple_epoxy.xml │ ├── fragment_vector_add_participants.xml │ ├── fragment_vector_public_rooms_list.xml │ ├── fragment_vector_recents_list.xml │ ├── fragment_vector_search_people_list.xml │ ├── home_section_view.xml │ ├── item_command_auto_complete.xml │ ├── item_country.xml │ ├── item_custom_dialog_radio_line.xml │ ├── item_emoji_verif.xml │ ├── item_generic_header.xml │ ├── item_generic_list.xml │ ├── item_keys_backup_settings_button_footer.xml │ ├── item_loading.xml │ ├── item_locale.xml │ ├── item_notification_troubleshoot.xml │ ├── item_room_directory.xml │ ├── item_settings_button.xml │ ├── item_settings_button_single_line.xml │ ├── item_settings_edit_text.xml │ ├── item_settings_helper_info.xml │ ├── item_settings_radio_single_line.xml │ ├── item_settings_section_separator.xml │ ├── item_settings_section_title.xml │ ├── item_settings_simple_item.xml │ ├── item_tos.xml │ ├── item_user_auto_complete.xml │ ├── layout_media_thumbnail.xml │ ├── media_upload_download_progress_layout.xml │ ├── message_read_marker.xml │ ├── message_separator.xml │ ├── pill_view.xml │ ├── progress_bar_view.xml │ ├── public_room_spinner_item.xml │ ├── unread_counter_badge.xml │ ├── url_preview_view.xml │ ├── vector_activity_splash.xml │ ├── vector_adapter_member_details_items.xml │ ├── vector_home_menu_header.xml │ ├── vector_message_action_bar_custom_layout.xml │ ├── vector_message_header.xml │ ├── vector_message_merge_avatar_list.xml │ ├── vector_message_receipts_list.xml │ ├── vector_message_sender.xml │ ├── vector_message_timestamp.xml │ ├── vector_ongoing_conference_call.xml │ ├── vector_pending_call_view.xml │ ├── vector_preference_bing_rule.xml │ ├── vector_preference_divider.xml │ ├── vector_receipt_round_avatar.xml │ ├── vector_room_header.xml │ ├── vector_search_action_bar.xml │ ├── vector_settings_address_preference.xml │ ├── vector_settings_list_preference_with_warning.xml │ ├── vector_settings_round_avatar.xml │ ├── vector_settings_round_group_avatar.xml │ ├── vector_settings_spinner_preference.xml │ ├── video_record_view.xml │ ├── view_keys_backup_banner.xml │ ├── view_notification_area.xml │ └── view_password_strength_bar.xml │ ├── menu │ ├── bottom_navigation_main.xml │ ├── bug_report.xml │ ├── menu_country_picker.xml │ ├── menu_directory_server_picker.xml │ ├── menu_done.xml │ ├── menu_languages_picker.xml │ ├── menu_phone_number_addition.xml │ ├── menu_phone_number_verification.xml │ ├── menu_room_widget.xml │ ├── vector_choose_sticker.xml │ ├── vector_home.xml │ ├── vector_home_group_settings.xml │ ├── vector_home_room_settings.xml │ ├── vector_home_sliding_menu.xml │ ├── vector_medias_viewer.xml │ ├── vector_room.xml │ ├── vector_room_creation.xml │ ├── vector_room_details_add_people.xml │ ├── vector_room_message_settings.xml │ ├── vector_room_settings_addresses.xml │ └── vector_searches.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── raw │ ├── busy.ogg │ ├── callend.ogg │ ├── ring.ogg │ └── ringback.ogg │ ├── values-ar │ └── strings.xml │ ├── values-az │ └── strings.xml │ ├── values-b+sr+Latn │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn-rIN │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-cy │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-eo │ └── strings.xml │ ├── values-es-rMX │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-eu │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-fy │ └── strings.xml │ ├── values-ga │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-he │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-id │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-land │ └── dimens.xml │ ├── values-ldrtl │ ├── integers.xml │ └── styles.xml │ ├── values-lv │ └── strings.xml │ ├── values-mn │ └── strings.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-nn │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sq │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tlh │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-v17 │ └── styles.xml │ ├── values-v21 │ ├── dimens.xml │ ├── styles.xml │ ├── theme_black.xml │ ├── theme_dark.xml │ ├── theme_light.xml │ └── theme_status.xml │ ├── values-vls │ └── strings.xml │ ├── values-w480dp │ ├── integers.xml │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── analytics.xml │ ├── array.xml │ ├── attrs.xml │ ├── colors.xml │ ├── config.xml │ ├── dimens.xml │ ├── donottranslate.xml │ ├── ic_launcher_background.xml │ ├── ids.xml │ ├── integers.xml │ ├── strings.xml │ ├── styles.xml │ ├── theme_black.xml │ ├── theme_dark.xml │ ├── theme_light.xml │ └── theme_status.xml │ └── xml │ ├── vector_provider_paths.xml │ ├── vector_room_settings_preferences.xml │ ├── vector_settings_notification_advanced_preferences.xml │ └── vector_settings_preferences.xml ├── release └── java │ └── im │ └── vector │ ├── activity │ └── DebugMenuActivity.kt │ └── receiver │ └── DebugReceiver.kt └── test └── java └── im └── vector ├── util ├── AutoCompletionModeTest.kt └── EmojiTest.kt └── widgets └── model └── JitsiWidgetPropertiesTest.kt /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Pull Request Checklist 2 | 3 | 4 | 5 | * [ ] Changes has been tested on an Android device or Android emulator with API 16 6 | * [ ] UI change has been tested on both light and dark themes 7 | * [ ] Pull request is based on the develop branch 8 | * [ ] Pull request updates [CHANGES.rst](https://github.com/vector-im/riot-android/blob/develop/CHANGES.rst) 9 | * [ ] Pull request includes screenshots or videos if containing UI changes 10 | * [ ] Pull request includes a [sign off](https://github.com/matrix-org/synapse/blob/master/CONTRIBUTING.rst#sign-off) 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #IDEs 2 | /.idea 3 | *.iml 4 | 5 | #OS 6 | .DS_Store 7 | 8 | #builds 9 | /build 10 | *.apk 11 | 12 | .gradle 13 | /local.properties 14 | 15 | /tmp 16 | 17 | captures/ 18 | -------------------------------------------------------------------------------- /build_fdroid_apk.sh: -------------------------------------------------------------------------------- 1 | 2 | rm -rf vector/libs 3 | mkdir vector/libs 4 | 5 | sh build_jitsi_libs.sh 6 | sh build_matrix_sdk_lib.sh master 7 | sh build_olm_lib.sh 8 | 9 | ./gradlew lintAppfdroidRelease assembleAppfdroidRelease 10 | 11 | -------------------------------------------------------------------------------- /build_olm_lib.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | rm -rf olm 3 | git clone http://git.matrix.org/git/olm.git/ 4 | cd olm/android 5 | echo ndk.dir=$ANDROID_HOME/ndk-bundle > local.properties 6 | ./gradlew assembleRelease 7 | 8 | cd ../../riot-android 9 | cp ../olm/android/olm-sdk/build/outputs/aar/olm-sdk-release-2.2.2.aar vector/libs/olm-sdk.aar 10 | 11 | 12 | -------------------------------------------------------------------------------- /compile_with_sdk_lib.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Use -i.bak because sed command is not the same depending on OS 4 | # See https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux 5 | 6 | echo "replace step 1" 7 | sed -i.bak "s/^include ':matrix-sdk/\/\/include ':matrix-sdk/" ./settings.gradle || true 8 | sed -i.bak "s/^project(':matrix-sdk/\/\/project(':matrix-sdk/" ./settings.gradle || true 9 | 10 | echo "replace step 2" 11 | sed -i.bak "s/^ \/\/implementation 'com.github.matrix-org:matrix-android-sdk/ implementation 'com.github.matrix-org:matrix-android-sdk/" ./vector/build.gradle || true 12 | sed -i.bak "s/^ implementation project(':matrix-/ \/\/implementation project(':matrix-/" ./vector/build.gradle || true 13 | 14 | # Delete the created files 15 | rm ./settings.gradle.bak 16 | rm ./vector/build.gradle.bak 17 | 18 | echo "please sync project with gradle files" 19 | -------------------------------------------------------------------------------- /compile_with_sdk_project.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Use -i.bak because sed command is not the same depending on OS 4 | # See https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux 5 | 6 | echo "replace step 1" 7 | sed -i.bak "s/^\/\/include ':matrix-sdk/include ':matrix-sdk/" ./settings.gradle || true 8 | sed -i.bak "s/^\/\/project(':matrix-sdk/project(':matrix-sdk/" ./settings.gradle || true 9 | 10 | echo "replace step 2" 11 | sed -i.bak "s/^ implementation 'com.github.matrix-org:matrix-android-sdk/ \/\/implementation 'com.github.matrix-org:matrix-android-sdk/" ./vector/build.gradle || true 12 | sed -i.bak "s/^ \/\/implementation project(':matrix-/ implementation project(':matrix-/" ./vector/build.gradle || true 13 | 14 | # Delete the created files 15 | rm ./settings.gradle.bak 16 | rm ./vector/build.gradle.bak 17 | 18 | echo "please sync project with gradle files" 19 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 28 10:53:50 CEST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /set_debug_env.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "remove the SDK lib" 4 | rm -f vector/libs/matrix-sdk.aar 5 | rm -rf vector/build 6 | 7 | echo "remove sdk folder" 8 | rm -rf ../matrix-android-sdk 9 | 10 | echo "clone the git folder" 11 | git clone -b develop https://github.com/matrix-org/matrix-android-sdk ../matrix-android-sdk 12 | 13 | ./compile_with_sdk_project.sh 14 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':vector' 2 | 3 | // uncomment theses lines to compile matrix SDK as project sources instead of external lib 4 | // see build.gradle section Matrix SDK management 5 | //include ':matrix-sdk' 6 | //project(':matrix-sdk').projectDir = new File(settingsDir, '../matrix-android-sdk/matrix-sdk') 7 | 8 | //include ':matrix-sdk-crypto' 9 | //project(':matrix-sdk-crypto').projectDir = new File(settingsDir, '../matrix-android-sdk/matrix-sdk-crypto') 10 | 11 | //include ':matrix-sdk-core' 12 | //project(':matrix-sdk-core').projectDir = new File(settingsDir, '../matrix-android-sdk/matrix-sdk-core') 13 | -------------------------------------------------------------------------------- /tools/debug_alter_auth_token.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell am broadcast -a im.vector.receiver.DEBUG_ACTION_ALTER_AUTH_TOKEN 4 | -------------------------------------------------------------------------------- /tools/debug_alter_scalar_token.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell am broadcast -a im.vector.receiver.DEBUG_ACTION_ALTER_SCALAR_TOKEN 4 | -------------------------------------------------------------------------------- /tools/debug_dump_filesystem.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell am broadcast -a im.vector.receiver.DEBUG_ACTION_DUMP_FILESYSTEM 4 | -------------------------------------------------------------------------------- /tools/debug_dump_prefs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell am broadcast -a im.vector.receiver.DEBUG_ACTION_DUMP_PREFERENCES 4 | -------------------------------------------------------------------------------- /tools/tests/app_standby_off.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Ref: https://developer.android.com/training/monitoring-device-state/doze-standby#testing_your_app_with_app_standby 4 | 5 | echo "Standby OFF" 6 | echo "adb shell dumpsys battery reset" 7 | adb shell dumpsys battery reset 8 | 9 | echo "adb shell am set-inactive im.vector.app false" 10 | adb shell am set-inactive im.vector.app false 11 | -------------------------------------------------------------------------------- /tools/tests/app_standby_on.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Ref: https://developer.android.com/training/monitoring-device-state/doze-standby#testing_your_app_with_app_standby 4 | 5 | echo "Standby ON" 6 | echo "adb shell dumpsys battery unplug" 7 | adb shell dumpsys battery unplug 8 | 9 | echo "adb shell am set-inactive im.vector.app true" 10 | adb shell am set-inactive im.vector.app true 11 | -------------------------------------------------------------------------------- /tools/tests/doze_mode_disable.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Ref: https://developer.android.com/training/monitoring-device-state/doze-standby#testing_doze 4 | 5 | echo "Exit doze mode" 6 | echo "shell dumpsys deviceidle unforce" 7 | adb shell dumpsys deviceidle unforce 8 | 9 | echo "Reactivate device" 10 | echo "shell dumpsys battery reset" 11 | adb shell dumpsys battery reset 12 | -------------------------------------------------------------------------------- /tools/tests/doze_mode_enable.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Ref: https://developer.android.com/training/monitoring-device-state/doze-standby#testing_doze 4 | 5 | echo "Enable doze mode" 6 | echo "adb shell dumpsys deviceidle force-idle" 7 | adb shell dumpsys deviceidle force-idle 8 | -------------------------------------------------------------------------------- /tools/tests/test_boot_complete.sh: -------------------------------------------------------------------------------- 1 | # Test boot complete broadcast 2 | 3 | adb shell am broadcast -a android.intent.action.ACTION_BOOT_COMPLETED -c android.intent.category.HOME -n im.vector.app/im.vector.receiver.VectorBootReceiver 4 | -------------------------------------------------------------------------------- /tools/tests/test_configuration_link.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | adb shell am start -a android.intent.action.VIEW -d "https://riot.im/config/config?hs_url=https%3A%2F%2Fexample.modular.im\&is_url=https%3A%2F%2Fcustom.identity.org" 4 | -------------------------------------------------------------------------------- /tools/tests/test_referrer.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | 4 | adb shell am broadcast -a com.android.vending.INSTALL_REFERRER \ 5 | -n im.vector.app/im.vector.receiver.VectorReferrerReceiver \ 6 | --es "referrer" "utm_source=migrator\&utm_medium=web\&utm_content%3Dis%253Dhttps%253A%252F%252Fvector.im%252526hs%253Dhttps%253A%252F%252Ftadhack.vector.im" 7 | 8 | # adb shell input text 'https://play.google.com/store/apps/details?id=im.vector.app\&referrer=utm_source%3Dgoogle%26utm_medium%3Dcpc%26utm_content%3Dis%253Dhttps%253A%252F%252Fvector.im%252526hs%253Dhttps%253A%252F%252Ftadhack.vector.im%26anid%3Dadmob' 9 | -------------------------------------------------------------------------------- /trigger_release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo updir 4 | cd .. 5 | 6 | echo remove sdk folder 7 | rm -rf matrix-android-sdk_build_release 8 | 9 | echo clone the git folder 10 | git clone -b master https://github.com/matrix-org/matrix-android-sdk matrix-android-sdk_build_release 11 | 12 | cd matrix-android-sdk_build_release 13 | 14 | ./gradlew clean assembleRelease 15 | ./gradlew releaseDocs 16 | git commit -m "auto-generated docs from script" docs 17 | git push --porcelain --progress --recurse-submodules=check origin refs/heads/master:refs/heads/master 18 | 19 | cd ../riot-android 20 | rm -f vector/libs/matrix-sdk.aar 21 | cp ../matrix-android-sdk_build_release/matrix-sdk/build/outputs/aar/matrix-sdk-release-*.aar vector/libs/matrix-sdk.aar 22 | 23 | git commit -m "auto-generated from script" vector/libs/matrix-sdk.aar 24 | git push --porcelain --progress --recurse-submodules=check origin refs/heads/master:refs/heads/master 25 | 26 | rm -rf matrix-android-sdk_build_release 27 | 28 | -------------------------------------------------------------------------------- /vector/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vector/src/app/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /vector/src/appfdroid/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vector/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vector/src/debug/res/layout/demo_theme_sample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 13 | 14 | 20 | 21 | 27 | 28 | -------------------------------------------------------------------------------- /vector/src/main/assets/html/js/markdown.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded",function() { 2 | marked.setOptions({ 3 | langPrefix: '', 4 | gfm: true, 5 | tables: true, 6 | breaks: true, 7 | pedantic: false, 8 | sanitize: true, 9 | smartLists: true, 10 | smartypants: false, 11 | }); 12 | 13 | convertToHtml = function setMarkdown(md_text){ 14 | if(md_text == "") return false; 15 | md_text = md_text.replace(/\\n/g, "\n"); 16 | var md_html = marked(md_text); 17 | Android.wOnParse(md_html); 18 | }; 19 | }); 20 | -------------------------------------------------------------------------------- /vector/src/main/assets/html/markdown.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/activity/interfaces/Restorable.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2018 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.activity.interfaces 18 | 19 | import android.os.Bundle 20 | 21 | /** 22 | * Implement this to let the Activity save your internal state when it is destroyed 23 | */ 24 | interface Restorable { 25 | 26 | /** 27 | * Save internal state 28 | */ 29 | fun saveState(outState: Bundle) 30 | } -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/activity/util/WaitingViewData.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.activity.util 18 | 19 | /** 20 | * Model to display a Waiting View 21 | */ 22 | data class WaitingViewData( 23 | val message: String, 24 | val progress: Int? = null, 25 | val progressTotal: Int? = null, 26 | val isIndeterminate: Boolean = false 27 | ) -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/adapters/ImageCompressionDescription.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015 OpenMarket Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.adapters; 18 | 19 | public class ImageCompressionDescription { 20 | public String mCompressionText; 21 | public String mCompressionInfoText; 22 | } 23 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/dialogs/DialogCallAdapter.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2018 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.dialogs 18 | 19 | import android.content.Context 20 | 21 | internal class DialogCallAdapter(context: Context) : DialogAdapter(context) { 22 | 23 | init { 24 | add(DialogListItem.StartVoiceCall) 25 | add(DialogListItem.StartVideoCall) 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/dialogs/DialogSendItemAdapter.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2018 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.dialogs 18 | 19 | import android.content.Context 20 | 21 | internal class DialogSendItemAdapter(context: Context, items: MutableList) : DialogAdapter(context) { 22 | 23 | init { 24 | addAll(items) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/fragments/VectorSettingsFragmentInteractionListener.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2018 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | package im.vector.fragments 17 | 18 | interface VectorSettingsFragmentInteractionListener { 19 | 20 | fun requestHighlightPreferenceKeyOnResume(key: String?) 21 | 22 | fun requestedKeyToHighlight(): String? 23 | 24 | } -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/listeners/ItemPositionChangedListener.java: -------------------------------------------------------------------------------- 1 | package im.vector.listeners; 2 | 3 | public interface ItemPositionChangedListener { 4 | void onItemPositionChangedListener(int position); 5 | } 6 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/listeners/YesNoListener.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.listeners 18 | 19 | /** 20 | * Simple interface with yes() and no() methods 21 | */ 22 | interface YesNoListener { 23 | fun yes() 24 | 25 | fun no() 26 | } -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/widgets/RegisterResponse.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 New Vector Ltd 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package im.vector.widgets 18 | 19 | import com.google.gson.annotations.SerializedName 20 | 21 | data class RegisterResponse( 22 | @JvmField 23 | @SerializedName("scalar_token") 24 | val scalarToken: String? 25 | ) 26 | -------------------------------------------------------------------------------- /vector/src/main/java/im/vector/widgets/model/JitsiWidgetProperties.kt: -------------------------------------------------------------------------------- 1 | package im.vector.widgets.model 2 | 3 | import android.net.Uri 4 | 5 | class JitsiWidgetProperties(private val uriString: String) { 6 | val domain: String by lazy { configs["conferenceDomain"] ?: DEFAULT_JITSI_DOMAIN } 7 | val displayName: String? by lazy { configs["displayName"] } 8 | val avatarUrl: String? by lazy { configs["avatarUrl"] } 9 | 10 | private val configString: String? by lazy { Uri.parse(uriString).fragment } 11 | 12 | private val configs: Map by lazy { 13 | configString?.split("&") 14 | ?.map { it.split("=") } 15 | ?.map { (key, value) -> key to value } 16 | ?.toMap() 17 | ?: mapOf() 18 | } 19 | } 20 | 21 | private const val DEFAULT_JITSI_DOMAIN = "jitsi.riot.im" 22 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/anim_alerter_no_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/anim_slide_in_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/anim_slide_nothing.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/anim_slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/enter_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/enter_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/enter_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/exit_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/exit_to_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/exit_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/no_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/anim/unread_marker_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 16 | -------------------------------------------------------------------------------- /vector/src/main/res/color/button_text_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/color/home_bottom_nav_view_tint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/color/primary_text_color_selector_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/color/primary_text_color_selector_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/color/primary_text_color_selector_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/alert_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/alert_triangle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/backup_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/backup_keys.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_eye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_eye_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_eye_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_eye_closed_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_import_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_import_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_material_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_material_play_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_notification_privacy_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_notification_privacy_warning.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_person_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_person_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_remove_circle_outline_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_remove_circle_outline_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_small_close.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_widget_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_widget_bin.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_widget_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_widget_external_link.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/ic_widget_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/ic_widget_refresh.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/key_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/key_big.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/key_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/key_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/logo_login.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/riot_splash_0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/riot_splash_0_blue.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/riot_splash_1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/riot_splash_1_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/riot_splash_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/riot_splash_2_pink.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/riot_splash_3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/riot_splash_3_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/shield.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/sticker_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/sticker_placeholder.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/sync.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/unit_test.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/unit_test_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/unit_test_ko.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-hdpi/unit_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-hdpi/unit_test_ok.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-ldpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-ldpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-ldpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-ldpi/logo_login.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-ldpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-ldpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/alert_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/alert_triangle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/backup_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/backup_keys.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_eye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_eye_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_eye_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_eye_closed_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_import_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_import_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_material_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_material_play_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_notification_privacy_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_notification_privacy_warning.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_person_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_person_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_remove_circle_outline_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_remove_circle_outline_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_small_close.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_widget_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_widget_bin.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_widget_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_widget_external_link.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/ic_widget_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/ic_widget_refresh.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/key_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/key_big.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/key_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/key_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/logo_login.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/riot_splash_0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/riot_splash_0_blue.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/riot_splash_1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/riot_splash_1_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/riot_splash_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/riot_splash_2_pink.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/riot_splash_3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/riot_splash_3_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/shield.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/sticker_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/sticker_placeholder.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/stickerpack_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/stickerpack_rabbit.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/sync.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/unit_test.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/unit_test_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/unit_test_ko.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-mdpi/unit_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-mdpi/unit_test_ok.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/alert_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/alert_triangle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/backup_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/backup_keys.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_eye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_eye_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_eye_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_eye_closed_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_import_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_import_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_material_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_material_play_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_notification_privacy_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_notification_privacy_warning.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_person_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_person_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_remove_circle_outline_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_remove_circle_outline_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_send_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_send_sticker.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_small_close.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_widget_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_widget_bin.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_widget_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_widget_external_link.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/ic_widget_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/ic_widget_refresh.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/key_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/key_big.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/key_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/key_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/logo_login.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/riot_splash_0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/riot_splash_0_blue.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/riot_splash_1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/riot_splash_1_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/riot_splash_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/riot_splash_2_pink.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/riot_splash_3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/riot_splash_3_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/shield.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/sticker_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/sticker_placeholder.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/sync.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/unit_test.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/unit_test_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/unit_test_ko.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xhdpi/unit_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xhdpi/unit_test_ok.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/admin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/admin_icon.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/alert_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/alert_triangle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/apps_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/apps_icon.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/backup_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/backup_keys.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/bubbles_bg_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/bubbles_bg_portrait.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/camera_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/camera_play.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/camera_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/camera_stop.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/camera_video_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/camera_video_capture.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/e2e_blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/e2e_blocked.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/e2e_unencrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/e2e_unencrypted.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/e2e_verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/e2e_verified.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/e2e_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/e2e_warning.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/error.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/file_upload_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/file_upload_failed.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/filetype_attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/filetype_attachment.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/filetype_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/filetype_audio.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/filetype_gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/filetype_gif.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/filetype_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/filetype_image.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/filetype_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/filetype_video.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_add_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_add_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_add_circle_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_add_circle_outline_white_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_add_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_arrow_drop_down_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_arrow_drop_down_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_arrow_drop_up_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_arrow_drop_up_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_block_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_block_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_comment_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_comment_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_devices_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_devices_info.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_exit_media_picker_vector_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_exit_media_picker_vector_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_eye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_eye_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_eye_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_eye_closed_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_file_download_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_file_download_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_guest_access_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_guest_access_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_import_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_import_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_list_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_list_white_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_add_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_add_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_arrow_back_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_bug_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_bug_report.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_call_end_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_call_end_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_camera.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_chevron_right_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_chevron_right_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_copy.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_create_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_create_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_delete.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_delete_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_delete_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_done.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_done_all_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_done_all_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_done_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_eject_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_eject_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_exit_to_app.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_expand_less_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_expand_less_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_expand_more_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_expand_more_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_file.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_forward.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_history_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_history_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_leave.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_link_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_link_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_menu_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_message_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_message_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_message_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_message_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_mic_off_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_mic_off_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_mic_off_pink_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_mic_off_pink_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_movie.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_photo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_play_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_quote.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_save.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_search_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_search_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_search_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_send_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_send_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_send_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_send_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_send_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_send_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_settings_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_settings_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_share.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_speaker_phone_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_speaker_phone_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_speaker_phone_pink_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_speaker_phone_pink_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_star_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_star_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_star_border_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_star_border_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_switch_video_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_switch_video_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_switch_video_pink_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_switch_video_pink_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_videocam.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_videocam_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_videocam_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_videocam_off_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_videocam_off_grey.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_material_videocam_off_pink_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_material_videocam_off_pink_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_notification_privacy_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_notification_privacy_warning.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_perm_device_information_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_perm_device_information_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_person_add_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_person_add_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_person_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_person_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_person_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_person_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_person_outline_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_person_outline_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_power_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_power_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_report_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_report_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_send_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_send_sticker.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_share_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_small_close.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_take_picture_vector_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_take_picture_vector_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_verified_user_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_verified_user_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_widget_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_widget_bin.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_widget_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_widget_external_link.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_widget_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_widget_refresh.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/ic_word_readable_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/ic_word_readable_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/icon_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/icon_person.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/incoming_call_notification_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/incoming_call_notification_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/jump_to_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/jump_to_unread.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/key_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/key_big.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/key_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/key_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/logo_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/logo_login.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/main_alias_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/main_alias_icon.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/mod_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/mod_icon.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/network_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/network_matrix.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/newmessages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/newmessages.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_splash_0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_splash_0_blue.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_splash_1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_splash_1_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_splash_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_splash_2_pink.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_splash_3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_splash_3_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_tab_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_tab_groups.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/riot_tab_rooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/riot_tab_rooms.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/scrolldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/scrolldown.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/shield.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/sticker_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/sticker_placeholder.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/sync.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/unit_test.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/unit_test_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/unit_test_ko.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/unit_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/unit_test_ok.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_actions_9b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_actions_9b.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_cancel_upload_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_cancel_upload_download.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_clear_edittext_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_clear_edittext_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_close_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_close_widget.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_create_direct_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_create_direct_room.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_creation_remove_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_creation_remove_user.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_leave_room_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_leave_room_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_micro_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_micro_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_notification_accept_invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_notification_accept_invitation.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_notification_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_notification_open.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_notification_quick_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_notification_quick_reply.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_notification_reject_invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_notification_reject_invitation.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_search_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_search_bg.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_typing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_typing.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/vector_warning_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/vector_warning_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/video_call_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/video_call_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/video_call_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/video_call_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/voice_call_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/voice_call_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/voice_call_end_fushia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/voice_call_end_fushia.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/voice_call_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/voice_call_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxhdpi/voice_call_start_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxhdpi/voice_call_start_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/alert_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/alert_triangle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/backup_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/backup_keys.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_eye_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_eye_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_eye_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_eye_closed_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_home_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_import_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_import_black.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_material_call_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_material_call_white.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_material_folder_green_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_material_folder_green_vector.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_material_play_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_material_play_circle.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_person_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_person_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_remove_circle_outline_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_remove_circle_outline_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_settings.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_small_close.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_widget_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_widget_bin.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_widget_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_widget_external_link.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/ic_widget_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/ic_widget_refresh.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/icon_notif_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/icon_notif_important.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/key_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/key_big.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/key_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/key_small.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/logo_transparent.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/riot_splash_0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/riot_splash_0_blue.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/riot_splash_1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/riot_splash_1_green.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/riot_splash_2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/riot_splash_2_pink.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/riot_splash_3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/riot_splash_3_red.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/shield.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/sync.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/unit_test.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/unit_test_ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/unit_test_ko.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable-xxxhdpi/unit_test_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable-xxxhdpi/unit_test_ok.png -------------------------------------------------------------------------------- /vector/src/main/res/drawable/bg_tombstone_predecessor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/call_header_transparent_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/direct_chat_circle_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/direct_chat_circle_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/direct_chat_circle_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/direct_chat_circle_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/line_divider_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/line_divider_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_bing.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_room_alias_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_room_alias_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_room_alias_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_user_id_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_user_id_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/pill_background_user_id_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/riot_animated_logo.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 10 | 13 | 16 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/riot_splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiMium/mini-vector-android/09bf4c527429fe2c8283c71988efa5796dcc854b/vector/src/main/res/drawable/riot_splash.gif -------------------------------------------------------------------------------- /vector/src/main/res/drawable/searches_cursor_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/shadow_bottom_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/shadow_bottom_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/shadow_top_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/shadow_top_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/sticker_description_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/sticker_description_triangle.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_background_fab_label.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_background_fab_label_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_medias_picker_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_selected_background_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_selected_background_group_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_selected_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_selected_background_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_unselected_background_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_unselected_background_group_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_unselected_background_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/drawable/vector_tabbar_unselected_background_status.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_authentication_fallback.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 20 | 21 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_avatar_viewer.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 19 | 20 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_choose_sticker.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_integration_manager.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 15 | 16 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_vector_media_viewer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 13 | 14 | 18 | 19 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_vector_public_rooms.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 17 | 18 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_vector_universal_link_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/activity_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 13 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_item_media_preview.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 18 | 19 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_item_vector_message_code_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_item_vector_message_redact.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_local_contacts_sticky_header_subview.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 19 | 20 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_public_room_sticky_header_subview.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_section_header_local.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 23 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/adapter_section_header_public_room.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 23 | 24 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_background_sync_mode.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_base_list_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_event_content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_html_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_no_sticker_pack.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_unknown_devices.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/dialog_unknown_devices_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_dialog_groups_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_dialog_member_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_favourites.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_group_details_people.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_group_details_rooms.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_groups.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_keys_backup_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_people.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_rooms.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_simple_epoxy.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/fragment_vector_search_people_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/item_generic_header.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/item_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/item_locale.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /vector/src/main/res/layout/item_settings_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |