summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-27 14:35:40 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-27 14:35:40 +0000
commit55fe155140c42fbee263ab278b36d05d4c681d55 (patch)
treecdab8001be8ae4b85bb581208c697a94743f292a
parentdf57a8c9b700e365d00109d0d57d602c07d7c4f8 (diff)
parentca7af7619e8ab9d7ba7db221ef8e4df1e96df7c4 (diff)
downloadanalytics-library-55fe155140c42fbee263ab278b36d05d4c681d55.tar.gz
Snap for 10022809 from ca7af7619e8ab9d7ba7db221ef8e4df1e96df7c4 to studio-giraffe-releasestudio-2022.3.1-beta2
Change-Id: Ia5bf328fc5f0ff5685d598a74ad2a0a4c4da4538
-rw-r--r--protos/src/main/proto/analytics_enums.proto1
-rw-r--r--protos/src/main/proto/studio_stats.proto25
2 files changed, 24 insertions, 2 deletions
diff --git a/protos/src/main/proto/analytics_enums.proto b/protos/src/main/proto/analytics_enums.proto
index 004e984..e3defa1 100644
--- a/protos/src/main/proto/analytics_enums.proto
+++ b/protos/src/main/proto/analytics_enums.proto
@@ -579,7 +579,6 @@ enum BooleanOption {
ADDITIONAL_ARTIFACTS_IN_MODEL = 165;
SUPPRESS_EXTRACT_NATIVE_LIBS_WARNINGS = 166;
EXCLUDE_LIBRARY_COMPONENTS_FROM_CONSTRAINTS = 167;
- ENABLE_EMULATOR_CONTROL = 168;
}
enum OptionalBooleanOption {
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index f38a461..0e98edc 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -12082,6 +12082,29 @@ message LiveEditEvent {
UNSUPPORTED_MODIFY_INLINE = 8;
// LiveEdit failed because the user changed the class hierarchy
UNSUPPORTED_MODIFY_INHERITANCE = 9;
+
+ // The following are from LiveEditUpdateException.Error
+ // We DO NOT log this. If this shows up in metrics, we know we have a bug at
+ // hand.
+ ANALYSIS_ERROR = 10;
+ // We DO NOT log this. If this shows up in metrics, we know we have a bug at
+ // hand.
+ COMPILATION_ERROR = 11;
+
+ NON_KOTLIN = 12;
+ NON_PRIVATE_INLINE_FUNCTION = 13;
+ UNABLE_TO_INLINE = 14;
+ UNABLE_TO_LOCATE_COMPOSE_GROUP = 15;
+ UNSUPPORTED_BUILD_SRC_CHANGE = 16;
+ UNSUPPORTED_SRC_CHANGE_RECOVERABLE = 17;
+ UNSUPPORTED_SRC_CHANGE_UNRECOVERABLE = 18;
+ UNSUPPORTED_TEST_SRC_CHANGE = 19;
+ UNABLE_TO_DESUGAR = 20;
+ INTERNAL_ERROR = 21;
+ KNOWN_ISSUE = 22;
+
+ // Semantic unsafe operations
+ PENDING_ERROR_IN_ANOTHER_FILE_AUTO_MODE = 23;
}
enum Mode {
@@ -13039,4 +13062,4 @@ message SmlConfigurationEvent {
message KotlinSupportDeclined {
// template renderer used
optional AndroidStudioEvent.TemplateRenderer template_renderer = 1;
-} \ No newline at end of file
+}