Solution to frequent disconnection during adb debugging of Yeshen simulator

After downloading Ye Shen, I found that adb debugging always disconnects automatically. At first glance, it seems to be caused by the inconsistency with the adb version of Android sdk. Just copy the adb in your sdk path to the Yeshen installation path and replace the corresponding adb.

First check where adb was before

adb version
Android Debug Bridge version 1.0.41
Version 31.0.3-7562133
Installed as D:\Android\sdk\platform-tools\adb.exe

Insert image description here

Copy these three to the Yeshen installation path to cover the installation.
Insert image description here
My Yeshen adb path is as follows

D:\Program Files\Nox\bin

After overwriting, there is still
nox_adb.exe. Change the name to nox_adb_back.exe.
Copy one more copy of D:\Android\sdk\platform-tools\adb.exe and change the name to
nox_adb.exe.

Insert image description here

The above operation has unified the adb version. Now start the Yeshen emulator and adb will not be disconnected.
The default port of Yeshen adb is

adb connect 127.0.0.1:62001

Insert image description here

Guess you like

Origin blog.csdn.net/qq910689331/article/details/124115640