Replies: 2 comments 1 reply
-
This is when you start the ADB server using |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can construct without checking by using new AdbCommandLineClient("path to adb", true)` Or make it globally by Factories.AdbCommandLineClientFactory = path => new AdbCommandLineClient(path, true);` |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to use ADB which is installed with the emulator positioned at
C:\Program Files\BlueStacks_nxt\HD-Adb.exe
But now, The path of the ADB file is verified at the
EnsureIsValidAdbFile
method in theAdbCommandLineClient
and the validation is too strict.Is there a reason why it is limited to adb.exe only?
I think there is no problem if you verify the path by using regex like
(?i)adb\.exe$
Beta Was this translation helpful? Give feedback.
All reactions