pure-python-adb icon indicating copy to clipboard operation
pure-python-adb copied to clipboard

This is pure-python implementation of the ADB client.

Results 69 pure-python-adb issues
Sort by recently updated
recently updated
newest added

Hi: I have a python program that interacts with android devices, the thing is that my python program is integrated with a C# program that uses specific adb.exe file, so...

[Uninstall](https://github.com/Swind/pure-python-adb/blob/b136202b04660db57b49418514dd9eddc2ecb365/ppadb/device.py#L129) does not remove the APK from the list of the installed apps. That is strange, because if we run: ``` >>> device.is_installed(apk_name) True >>> device.uninstall(apk_name) True >>> device.is_installed(apk_name) False...

# Before: ![196](https://user-images.githubusercontent.com/59511669/106754306-96773400-660b-11eb-8e61-799d1daffcab.PNG) # After: ![197](https://user-images.githubusercontent.com/59511669/106754526-d6d6b200-660b-11eb-9617-cd8e39363208.PNG) # Code: ![200](https://user-images.githubusercontent.com/59511669/106754671-02599c80-660c-11eb-9725-84c293a3cef0.PNG) # It's 100% impossible to take screenshot in under than 0.1 seconds, it takes 3 to 4 seconds to take 3...

This pull request fixes a bug preventing asynchronous pushes from completing. It also adds asynchronous install and uninstall methods based on the synchronous equivalents.

Hi guys, I am a learner of python-abd, and I want to know whether this support concurrent operations at the same time, for example, whether two **input_swipe()** operations are allowed...

Currently when sending an adb reverse command, an error occurs: ``` RuntimeError: ERROR: 'FAIL' 0016malformed forward spec ``` After digging into the code and the adb source code, it turns...

Hey, is it possible to add support for adb command `emu`? Like for example if you want to find out your avd name via `adb emu avd name`? Thanks in...