diff options
-rw-r--r-- | include/android/keycodes.h | 3 | ||||
-rw-r--r-- | include/input/InputEventLabels.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/android/keycodes.h b/include/android/keycodes.h index da7302d..813d411 100644 --- a/include/android/keycodes.h +++ b/include/android/keycodes.h @@ -273,7 +273,8 @@ enum { AKEYCODE_11 = 227, AKEYCODE_12 = 228, AKEYCODE_LAST_CHANNEL = 229, - AKEYCODE_TV_DATA_SERVICE = 230 + AKEYCODE_TV_DATA_SERVICE = 230, + AKEYCODE_VOICE_ASSIST = 231 // NOTE: If you add a new keycode here you must also add it to several other files. // Refer to frameworks/base/core/java/android/view/KeyEvent.java for the full list. diff --git a/include/input/InputEventLabels.h b/include/input/InputEventLabels.h index 51f7661..279ac40 100644 --- a/include/input/InputEventLabels.h +++ b/include/input/InputEventLabels.h @@ -270,6 +270,7 @@ static const InputEventLabel KEYCODES[] = { DEFINE_KEYCODE(12), DEFINE_KEYCODE(LAST_CHANNEL), DEFINE_KEYCODE(TV_DATA_SERVICE), + DEFINE_KEYCODE(VOICE_ASSIST), { NULL, 0 } }; |