Skip to content

Commit

Permalink
Merge pull request openstf#913 from Tapjoy/fix/device_status-connecting
Browse files Browse the repository at this point in the history
Support new connecting and authorizing device states from ADB
  • Loading branch information
sorccu authored Jul 14, 2018
2 parents 616d440 + 9914798 commit 93d9d7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/wire/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ var wireutil = {
, emulator: 'ONLINE'
, unauthorized: 'UNAUTHORIZED'
, offline: 'OFFLINE'
, connecting: 'CONNECTING'
, authorizing: 'AUTHORIZING'
}[type]]
}
, toDeviceRequirements: function(requirements) {
Expand Down
2 changes: 2 additions & 0 deletions lib/wire/wire.proto
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ enum DeviceStatus {
OFFLINE = 1;
UNAUTHORIZED = 2;
ONLINE = 3;
CONNECTING = 4;
AUTHORIZING = 5;
}

message DeviceStatusMessage {
Expand Down

0 comments on commit 93d9d7f

Please sign in to comment.