where where

Results 284 comments of where where

最后还是换成AppWindow了。。。

现在已经解决这个问题了,同时支持CoreWindow和AppWindow,想开多少个页面就开多少个页面 ![mmexport1693917223625.png](https://github.com/Coolapk-UWP/Coolapk-UWP/assets/27689196/acd16576-528e-4bdb-9d29-d71ab17372f6)

换坑之后应该没有这个问题了

现在上架不到一周就被酷安封掉了。。。#173

This project is direct communicate with adb service. If you want to communicate with adb client, just use `Process` to send command.

adb.exe is adb client. It communicates with adb service to process commands. This project is a csharp version of adb client to connect with adb server directly. Some command is...

This is my code ```cs using AdvancedSharpAdbClient; using System; using System.Collections.Generic; using System.Net; StartServerResult startServerResult = await AdbServer.Instance.StartServerAsync(@"C:\Program Files (x86)\Android\android-sdk\platform-tools\adb.exe", false, default); Console.WriteLine(startServerResult); await using DeviceMonitor deviceMonitor = new(new AdbSocket(new...

I don't know. Are you connected device by USB? Why connected by localhost IP? https://github.com/SharpAdb/AdvancedSharpAdbClient/assets/27689196/aabe6f3d-119b-4728-af71-408441be8db1

Remove the `using` of `DeviceMonitor`. You just disposed it when `Start` method is done.