summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakan Mehmed <hmehmed@google.com>2023-11-14 12:28:45 +0000
committerHakan Mehmed <hmehmed@google.com>2023-11-14 16:05:31 +0000
commitaa0ccc70c9e7a7bc7782e31dd3aa5c0ee6c24ca2 (patch)
treeb57abc5c9f1387ce3c044a0dc17d5c2d83730243
parent2a9d9b0b953f0190bc51acfd7b0c3fbea8d8c942 (diff)
downloadanalytics-library-aa0ccc70c9e7a7bc7782e31dd3aa5c0ee6c24ca2.tar.gz
Update studio_stats.proto
Logs-Approval: cl/582054183, cl/582004180 Bug: 308959063 Test: existing Change-Id: I7bd94dc5a68ef97d1b76e26dfc1c1d0d80958a26
-rw-r--r--protos/src/main/proto/studio_stats.proto20
1 files changed, 20 insertions, 0 deletions
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index 56a3d5b..052b876 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -1430,6 +1430,9 @@ message AndroidStudioEvent {
// Event for IDevice interface usage
I_DEVICE_USAGE_EVENT = 298;
+
+ // Event related to merged manifest view usage
+ MANIFEST_PANEL_EVENT = 299;
}
// Represents different Performance Monitoring types.
@@ -13356,6 +13359,23 @@ message DirectAccessUsageEvent {
enum FailureReason {
UNKNOWN_FAILURE = 0;
+
+ // Generic Reasons
+ USER_LOGGED_OUT = 1;
+ // CouroutineScope was cancelled leading to the failure.
+ SCOPE_CANCELLED = 2;
+
+ // Disconnect Reasons
+ // Device failed to connect to ADB
+ CONNECTION_FAILED = 11;
+ // Device disconnected from ADB
+ ADB_DISCONNECTED = 12;
+ // Device disconnected due to latency
+ LATENCY_DISCONNECT = 13;
+ // Session ended normally or through ERROR
+ SESSION_ENDED = 14;
+ // User clicked disconnect before device could connect
+ DISCONNECT_BEFORE_CONNECTED = 15;
}
message ReserveDeviceDetails {