1
0
Fork 0
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:
Aaron Pfeifer 2018-07-13 15:12:32 -04:00
parent 616d4407ce
commit 9914798eab
2 changed files with 4 additions and 0 deletions

View file

@ -13,6 +13,8 @@ var wireutil = {
, emulator: 'ONLINE'
, unauthorized: 'UNAUTHORIZED'
, offline: 'OFFLINE'
, connecting: 'CONNECTING'
, authorizing: 'AUTHORIZING'
}[type]]
}
, toDeviceRequirements: function(requirements) {

View file

@ -171,6 +171,8 @@ enum DeviceStatus {
OFFLINE = 1;
UNAUTHORIZED = 2;
ONLINE = 3;
CONNECTING = 4;
AUTHORIZING = 5;
}
message DeviceStatusMessage {