Jhonny

Results 1 comments of Jhonny

with python=2.7 and adb=1.0.32 , found the issue: added suffix='.apk' to NamedTemporaryFile() and its started to work. def installDeviceTool(): uninstall(_TARGET_PACKAGE); file = tempfile.NamedTemporaryFile(suffix='.apk') file.write(base64.b64decode(_g_base64Apk)) file.flush() ok, reply = install(file.name) print...