diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/Android.bp | 2 | ||||
-rw-r--r-- | proto/src/system_messages.proto | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/proto/Android.bp b/proto/Android.bp index 7b119a771ba4..65bccbb4aac8 100644 --- a/proto/Android.bp +++ b/proto/Android.bp @@ -5,7 +5,6 @@ java_library_static { type: "nano", }, srcs: ["src/**/*.proto"], - no_framework_libs: true, sdk_version: "9", // Pin java_version until jarjar is certified to support later versions. http://b/72703434 java_version: "1.8", @@ -26,6 +25,5 @@ java_library_static { type: "nano", }, srcs: ["src/metrics_constants/metrics_constants.proto"], - no_framework_libs: true, sdk_version: "system_current", } diff --git a/proto/src/system_messages.proto b/proto/src/system_messages.proto index ffbf1ae38635..2c7ea31043a2 100644 --- a/proto/src/system_messages.proto +++ b/proto/src/system_messages.proto @@ -230,6 +230,10 @@ message SystemMessage { // Package: android NOTE_TEST_HARNESS_MODE_ENABLED = 54; + // Display the Android Debug Protocol status + // Package: android + NOTE_ADB_WIFI_ACTIVE = 62; + // ADD_NEW_IDS_ABOVE_THIS_LINE // Legacy IDs with arbitrary values appear below // Legacy IDs existed as stable non-conflicting constants prior to the O release @@ -249,6 +253,8 @@ message SystemMessage { NOTE_NETWORK_LOGGED_IN = 744; // A partial connectivity network was detected during network validation NOTE_NETWORK_PARTIAL_CONNECTIVITY = 745; + // Private DNS is broken in strict mode + NOTE_NETWORK_PRIVATE_DNS_BROKEN = 746; // Notify the user that their work profile has been deleted // Package: android |