summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdarsh Fernando <adarshf@google.com>2020-05-15 12:04:20 -0700
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-05-18 18:04:06 +0000
commitc37698d5a7326ee47c6e2003be4da422e059991f (patch)
tree554815144568345811bc1f4f00ce7852cf714d06
parent644116df7ef07c41443a67645a2d7b0cc90e711a (diff)
downloadanalytics-library-c37698d5a7326ee47c6e2003be4da422e059991f.tar.gz
Update studio_stats.proto
Logs-Approval: cl/311763524 Bug: 153370846 Test: existing Change-Id: Ia6aa671bc899cad2889369133ed83c515d1b39eb (cherry picked from commit ff9700ea40f221fe7b041f253993daa81a7d2636)
-rw-r--r--protos/src/main/proto/studio_stats.proto14
1 files changed, 8 insertions, 6 deletions
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index a3b257b..5b42ac7 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -369,7 +369,7 @@ message AndroidStudioEvent {
// set when kind = ML_MODEL_BINDING
optional MlModelBindingEvent ml_model_binding_event = 102;
- // set when kind = AVD_LAUNCH
+ // set when kind = DEPLOYMENT_TO_EMULATOR
optional AvdLaunchEvent avd_launch_event = 103;
// set when kind = NAV_SAFE_ARGS_EVENT
@@ -902,9 +902,6 @@ message AndroidStudioEvent {
// ML model binding feature events
ML_MODEL_BINDING = 203;
- // Launch of an AVD from Studio.
- AVD_LAUNCH = 204;
-
// Event related to Navigation Safe Args IDE support
NAV_SAFE_ARGS_EVENT = 205;
@@ -5958,6 +5955,8 @@ message WhatsNewAssistantUpdateEvent {
UNKNOWN_BUTTON = 0;
// Build analyzer action button
BUILD_ANALYZER_SHOW = 1;
+ // App Inspection action button
+ APP_INSPECTION_SHOW = 2;
}
// State of the action button, tracks what message is shown at the moment.
// Each feature can define their own states if there are any.
@@ -7425,7 +7424,10 @@ message BuildAttributionPluginIdentifier {
enum PluginType {
UNKNOWN_TYPE = 0;
BUILD_SCRIPT = 1;
- BINARY_PLUGIN = 2;
+ // Deprecated, use OTHER_PLUGIN instead
+ BINARY_PLUGIN = 2 [deprecated = true];
+ BUILD_SRC = 3;
+ OTHER_PLUGIN = 4;
}
// Either a binary plugin or a build script plugin
@@ -7981,7 +7983,7 @@ message AvdLaunchEvent {
// Describes how the AVD was launched. Always present.
optional LaunchType launch_type = 1;
- // The class of the launched AVD. Present unless GENERIC.
+ // The class of the launched AVD. Always present.
optional AvdClass avd_class = 2;
enum LaunchType {