summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-12 02:06:14 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-12 02:06:14 +0000
commit21c7e6e7ea82e6b87e55cee2a7179a7d2566924b (patch)
treef790e3fb1e63885cce0253273ee36ba0686d10fd
parent4ae54b4279e505de13ab02dbb5458dd36748b06f (diff)
parent900b14330f890cd173a13b6c3bc054f015ee5e54 (diff)
downloadanalytics-library-21c7e6e7ea82e6b87e55cee2a7179a7d2566924b.tar.gz
Snap for 9922117 from 900b14330f890cd173a13b6c3bc054f015ee5e54 to studio-giraffe-release
Change-Id: I3ccc0be016deeef40320782be4bab97d89dd4b56
-rw-r--r--protos/src/main/proto/analytics_enums.proto2
-rw-r--r--protos/src/main/proto/studio_stats.proto40
2 files changed, 41 insertions, 1 deletions
diff --git a/protos/src/main/proto/analytics_enums.proto b/protos/src/main/proto/analytics_enums.proto
index f60e2a8..e3defa1 100644
--- a/protos/src/main/proto/analytics_enums.proto
+++ b/protos/src/main/proto/analytics_enums.proto
@@ -577,6 +577,8 @@ enum BooleanOption {
VERIFY_AAR_CLASSES = 163;
DISABLE_COMPILE_SDK_CHECKS = 164;
ADDITIONAL_ARTIFACTS_IN_MODEL = 165;
+ SUPPRESS_EXTRACT_NATIVE_LIBS_WARNINGS = 166;
+ EXCLUDE_LIBRARY_COMPONENTS_FROM_CONSTRAINTS = 167;
}
enum OptionalBooleanOption {
diff --git a/protos/src/main/proto/studio_stats.proto b/protos/src/main/proto/studio_stats.proto
index ae61372..f38a461 100644
--- a/protos/src/main/proto/studio_stats.proto
+++ b/protos/src/main/proto/studio_stats.proto
@@ -594,6 +594,9 @@ message AndroidStudioEvent {
// set when kind = SML_CONFIGURATION_EVENT
optional SmlConfigurationEvent sml_configuration_event = 170;
+ // set when kind = KOTLIN_SUPPORT_DECLINED
+ optional KotlinSupportDeclined kotlin_support_declined = 171;
+
enum EventCategory {
// The event was not grouped into any specific category (default).
NO_EVENT_CATEGORY = 0;
@@ -1352,6 +1355,9 @@ message AndroidStudioEvent {
// Configuration settings for ML based features
SML_CONFIGURATION_EVENT = 284;
+
+ // Event raised when user declines kotlin support for a project
+ KOTLIN_SUPPORT_DECLINED_EVENT = 285;
}
// Represents different Performance Monitoring types.
@@ -3059,7 +3065,7 @@ message EmulatorDetails {
HAXM = 3; // Intel HAXM
HVF = 4; // Apple Hypervisor.Framework
HYPERV = 5; // Microsoft Hyper-V
- GVM = 6; // AMD Hypervisor for Android Emulator
+ AEHD = 6; // Android Emulator hypervisor driver
// Next tag: 7
}
}
@@ -9124,6 +9130,7 @@ enum EditorFileType {
XML_RES_VALUES = 22;
XML_RES_XML = 23;
KOTLIN_COMPOSE = 24;
+ TOML = 25;
}
message TypingLatencyStats {
@@ -11590,6 +11597,30 @@ message GradleJdkInvalidEvent {
INVALID_JDK_NO_JAVAC = 7;
// Some required files are missing from the JDK path
INVALID_JDK_MISSING_FILES = 8;
+ // The jdk.dir isn't defined in the project local.properties
+ UNDEFINED_LOCAL_PROPERTIES_JDK_DIR = 9;
+ // The jdk.dir defined in the project local.properties is invalid
+ INVALID_LOCAL_PROPERTIES_JDK_DIR = 10;
+ // The org.gradle.java.home isn't defined in the gradle.properties
+ UNDEFINED_GRADLE_PROPERTIES_JAVA_HOME = 11;
+ // The org.gradle.java.home defined in the gradle.properties is invalid
+ INVALID_GRADLE_PROPERTIES_JAVA_HOME = 12;
+ // The system environment variable JAVA_HOME isn't defined
+ UNDEFINED_ENVIRONMENT_VARIABLE_JAVA_HOME = 13;
+ // The system environment variable JAVA_HOME is invalid
+ INVALID_ENVIRONMENT_VARIABLE_JAVA_HOME = 14;
+ // The system environment variable STUDIO_GRADLE_JDK isn't defined
+ UNDEFINED_ENVIRONMENT_VARIABLE_STUDIO_GRADLE_JDK = 15;
+ // The system environment variable STUDIO_GRADLE_JDK is invalid
+ INVALID_ENVIRONMENT_VARIABLE_STUDIO_GRADLE_JDK = 16;
+ // The studio config jdk.table.xml doesn't contain gradleJvm table entry
+ UNDEFINED_GRADLE_JVM_TABLE_ENTRY = 17;
+ // The studio config jdk.table.xml contains gradleJvm table entry with
+ // undefined javaHome path
+ UNDEFINED_GRADLE_JVM_TABLE_ENTRY_JAVA_HOME = 18;
+ // The studio config jdk.table.xml contains gradleJvm table entry with
+ // invalid javaHome path
+ INVALID_GRADLE_JVM_TABLE_ENTRY_JAVA_HOME = 19;
}
}
@@ -12852,6 +12883,8 @@ message BuildOutputDownloadsInfoEvent {
OPEN_DOWNLOADS_INFO_UI = 1;
CLICK_LEARN_MORE_LINK = 2;
SELECT_REPOSITORY_ROW = 3;
+ NOTIFICATION_TRIGGERED = 4;
+ NOTIFICATION_LINK_CLICK = 5;
}
optional View view = 1;
@@ -13001,4 +13034,9 @@ message SmlConfigurationEvent {
// User has ML based fixes enabled.
optional bool transform_enabled = 3;
+}
+
+message KotlinSupportDeclined {
+ // template renderer used
+ optional AndroidStudioEvent.TemplateRenderer template_renderer = 1;
} \ No newline at end of file