I'm trying to run some AndroidViewClient
example file (dump-simple.py) with Python 3.3
I fixed all essential syntax issues I could in viewclient.py and adbclient.py files to convert them run on Python 3.
I have Android tablet USB connected to my PC, I see it properly via cmd adb commands. I am working on Windows7 OS.
Currently I am facing the following problem:
In all the places self.socket.recv()
function is used in adbclient.py file it returns b''
string
I tried 4 different Andoid devices from 4 different vendors and b''
was returned by self.socket.recv()
for all of them.
What am I doing wrong, what did I still not converted to work with Python 3?