Skip to content

Commit

Permalink
fixed missing CMD_CURRENT_APP_MEDIA_SESSION_STATE12
Browse files Browse the repository at this point in the history
  • Loading branch information
Nortonko committed Oct 10, 2023
1 parent 7f68b69 commit 556af13
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions androidtv/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ class DeviceEnum(IntEnum):
#: Determine the current app and get the state from ``dumpsys media_session`` for an Android 11 device
CMD_CURRENT_APP_MEDIA_SESSION_STATE11 = CMD_CURRENT_APP11 + " && " + CMD_MEDIA_SESSION_STATE

#: Determine the current app and get the state from ``dumpsys media_session`` for an Android 12 device
CMD_CURRENT_APP_MEDIA_SESSION_STATE12 = CMD_CURRENT_APP12 + " && " + CMD_MEDIA_SESSION_STATE

#: Determine the current app and get the state from ``dumpsys media_session`` for an Android 13 device
CMD_CURRENT_APP_MEDIA_SESSION_STATE13 = CMD_CURRENT_APP13 + " && " + CMD_MEDIA_SESSION_STATE

Expand Down

0 comments on commit 556af13

Please sign in to comment.