How to solve adb version error in android device monitor?

While learning Android in Android Studio, I click Window -> Reset Perspective in the android device monitor. ...

After that, it gives me this error.
Error Message

My Android virtual device is working successfully.

Help me solve this problem.

+3


source to share


1 answer


Several solutions I've tried and which worked for me at different times:

  • Switch to device view, delete the device and create a new one.

  • Kill adb via command line

    Make sure you add the adb tool to your environment variables path before running commands in CMD.

Adb murder

adb kill-server

Running adb



adb start-server

Another way to kill adb is to go to task manager -> handle and kill adb.exe process.

Even after all this happens, if it prevails, the last thing I did was restart my whole machine so that the adb process was removed from RAM.

Hope it helped :)

0


source







All Articles