sharpordie

Results 25 comments of sharpordie

Is it working with lxml alternatives like pugixml? https://pypi.org/project/pugixml/

> However, there are ready-made libraries. Did you find a Dart library implementing ADB over network? I haven't found anything on pub.dev.

I just tried the async way and it works. ```python from asyncio import run from os.path import abspath, basename, dirname, exists, join from os import getcwd from adb_shell.adb_device_async import AdbDeviceTcpAsync...

Is there something wrong with my synchronous code? I tested on different "platforms" and with different python versions and it always timeouts even if I increase the read_timeout_s. What is...

There are C++ and Java implementations. It looks kinda cryptic for me, but it could help you. - https://github.com/RikkaApps/Shizuku/blob/master/manager/src/main/jni/adb_pairing.cpp - https://github.com/MuntashirAkon/libadb-android/blob/master/libadb/src/main/java/io/github/muntashirakon/adb/PairingAuthCtx.java

I tried this, but it doesn't work. ```python os.environ["PYPPETEER_NO_PROGRESS_BAR"] = "1" ```

I have edited the first post hoping to be more explicit about the problem and/or the possibility of improvement.

Dadb doesn't create the keypair automatically on Android device. You have to create those keys manually and use them in the discover method. This is a code sample to create...

@Leland-Takamine Victor asked for an Android solution. The HOME environment variable doesn't exist by default on Android. So my code uses the current application's cache directory. Unfortunately I don't use...

@victorjaviermartin Sorry for the long waiting time. Here is a working project using an old version (0.0.11) of Dadb: https://github.com/sharpordie/hisendal I quickly tested with version 1.2.4, but it doesn't work...