Skip to content

Commit e4e5f33

Browse files
committed
dtmilano#185: Incorrect ADB server version
- Added new version
1 parent ab6be5f commit e4e5f33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'''
1919
import threading
2020

21-
__version__ = '11.5.1'
21+
__version__ = '11.5.2'
2222

2323
import sys
2424
import warnings
@@ -306,7 +306,7 @@ def checkVersion(self, ignoreversioncheck=False, reconnect=True):
306306
# version = self.socket.recv(8, socket.MSG_WAITALL)
307307
version = self.__readExactly(self.socket, 8)
308308

309-
VALID_ADB_VERSIONS = ["00040020", "0004001f"]
309+
VALID_ADB_VERSIONS = ["00040023", "00040020", "0004001f"]
310310

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

0 commit comments

Comments
 (0)