We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24fd66f commit db9a1caCopy full SHA for db9a1ca
1 file changed
AndroidViewClient/src/com/dtmilano/android/adb/adbclient.py
@@ -17,7 +17,7 @@
17
@author: Diego Torres Milano
18
'''
19
20
-__version__ = '4.4.3'
+__version__ = '4.5.0'
21
22
import sys
23
import warnings
@@ -37,10 +37,13 @@
37
import types
38
import platform
39
40
-DEBUG = False
+DEBUG = True
41
42
HOSTNAME = 'localhost'
43
-PORT = 5037
+try:
44
+ PORT = int(os.environ['ANDROID_ADB_SERVER_PORT'])
45
+except KeyError:
46
+ PORT = 5037
47
48
OKAY = 'OKAY'
49
FAIL = 'FAIL'
0 commit comments