Skip to content

Commit b849df5

Browse files
authored
Merge pull request dtmilano#245 from dimaqq/patch-1
Support Android Debug Bridge version 1.0.40
2 parents 3c6e65d + 172d67b commit b849df5

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
@@ -374,7 +374,7 @@ def checkVersion(self, ignoreversioncheck=False, reconnect=True):
374374
# version = self.socket.recv(8, socket.MSG_WAITALL)
375375
version = self.__readExactly(self.socket, 8)
376376

377-
VALID_ADB_VERSIONS = ["00040027", "00040024", "00040023", "00040020", "0004001f"]
377+
VALID_ADB_VERSIONS = ["00040028", "00040027", "00040024", "00040023", "00040020", "0004001f"]
378378

379379
if not (version in VALID_ADB_VERSIONS) and not ignoreversioncheck:
380380
raise RuntimeError(

0 commit comments

Comments
 (0)