Skip to content

Commit 102fd34

Browse files
committed
Add latest adb version to valid ones.
1 parent a900e3f commit 102fd34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/com/dtmilano/android/adb/adbclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def checkVersion(self, ignoreversioncheck=False, reconnect=True):
342342
# version = self.socket.recv(8, socket.MSG_WAITALL)
343343
version = self.__readExactly(self.socket, 8)
344344

345-
VALID_ADB_VERSIONS = ["00040024", "00040023", "00040020", "0004001f"]
345+
VALID_ADB_VERSIONS = ["00040027", "00040024", "00040023", "00040020", "0004001f"]
346346

347347
if not (version in VALID_ADB_VERSIONS) and not ignoreversioncheck:
348348
raise RuntimeError(

0 commit comments

Comments
 (0)