Skip to content

Commit c4a46c2

Browse files
committed
Added new adb version support
1 parent 4222e76 commit c4a46c2

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
@@ -307,7 +307,7 @@ def checkVersion(self, ignoreversioncheck=False, reconnect=True):
307307
# version = self.socket.recv(8, socket.MSG_WAITALL)
308308
version = self.__readExactly(self.socket, 8)
309309

310-
VALID_ADB_VERSIONS = ["00040023", "00040020", "0004001f"]
310+
VALID_ADB_VERSIONS = ["00040024", "00040023", "00040020", "0004001f"]
311311

312312
if not (version in VALID_ADB_VERSIONS) and not ignoreversioncheck:
313313
raise RuntimeError(

0 commit comments

Comments
 (0)