yungd1plomat

Results 10 comments of yungd1plomat

try to call service.Open(), like this ```C# SyncService service = new SyncService(client, device); var a = service.GetDirectoryListing("/"); service.Open(); var b = service.GetDirectoryListing("/sdcard"); ```

> same issue at 2060super The problem was that the path to the folder with gosumemory and to osu contained spaces, as well as Cyrillic characters. After moving osu and...

There are different limits for different users https://platform.openai.com/docs/guides/rate-limits/overview

What device are you using an emulator or a real device?

> @wherewhere @yungd1plomat ,I'm using real usb connected device...tried on few devices....different chipsets and android versions....and none.... > > I tried to create a **console app in visual studio** ,...

Check if the path to adb.exe is correct, it should not contain Cyrillic, spaces or any other characters

you're welcome, pull requests are always open.

I think it is impossible using only pure adb and this lib. Something like this can be done with Appium W3C actions (or deprecated MultiAction/TouchAction). Example from [python-appium](https://github.com/appium/python-client): ```Python from...

Or the same with [dotnet-appium](https://github.com/appium/dotnet-client/wiki/Touch-action-samples) and deprecated [TouchActions](https://github.com/appium/dotnet-client/wiki/Touch-action-samples): ```C# TouchAction a1 = new TouchAction (driver); a1 .Press (element, start_x, start_y) .Wait (1000) .MoveTo(internal_x, internal_y) .Wait(1000) .MoveTo(end_x, end_y) .Wait(1000) .Release ();...