mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
Support new connecting and authorizing device states from ADB
This commit is contained in:
parent
616d4407ce
commit
9914798eab
2 changed files with 4 additions and 0 deletions
|
@ -13,6 +13,8 @@ var wireutil = {
|
|||
, emulator: 'ONLINE'
|
||||
, unauthorized: 'UNAUTHORIZED'
|
||||
, offline: 'OFFLINE'
|
||||
, connecting: 'CONNECTING'
|
||||
, authorizing: 'AUTHORIZING'
|
||||
}[type]]
|
||||
}
|
||||
, toDeviceRequirements: function(requirements) {
|
||||
|
|
|
@ -171,6 +171,8 @@ enum DeviceStatus {
|
|||
OFFLINE = 1;
|
||||
UNAUTHORIZED = 2;
|
||||
ONLINE = 3;
|
||||
CONNECTING = 4;
|
||||
AUTHORIZING = 5;
|
||||
}
|
||||
|
||||
message DeviceStatusMessage {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue