From 13b4a58eafa6cef9b0458be4a004f25b9ec4feda Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 15 Dec 2021 16:51:48 +0100 Subject: [PATCH] Analytics: Add more screen https://github.com/matrix-org/matrix-analytics-events/pull/11 --- .../app/features/analytics/plan/Screen.kt | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/vector/src/main/java/im/vector/app/features/analytics/plan/Screen.kt b/vector/src/main/java/im/vector/app/features/analytics/plan/Screen.kt index 39f9b93b05..52c2fc76fc 100644 --- a/vector/src/main/java/im/vector/app/features/analytics/plan/Screen.kt +++ b/vector/src/main/java/im/vector/app/features/analytics/plan/Screen.kt @@ -53,6 +53,16 @@ data class Screen( */ Home, + /** + * The screen that displays the user's breadcrumbs. + */ + MobileBreadcrumbs, + + /** + * The tab on mobile that displays the dialpad. + */ + MobileDialpad, + /** * The Favourites tab on mobile that lists your favourite people/rooms. */ @@ -63,6 +73,11 @@ data class Screen( */ MobileInviteFriends, + /** + * The screen that displays the login flow. + */ + MobileLogin, + /** * The People tab on mobile that lists all the DM rooms you have joined. */ @@ -123,6 +138,11 @@ data class Screen( */ RoomDirectory, + /** + * The screen that lists all the user's rooms and let them filter the rooms. + */ + RoomFilter, + /** * The screen that displays the list of members that are part of a room. */ @@ -169,7 +189,7 @@ data class Screen( SettingsSecurity, /** - * The screen shown to create a new (non-direct) room. + * The screen shown to create a new direct room. */ StartChat,