Reputation: 21
My android studio emulator starts up and runs my app. However, after a few taps (completely random, but often it is a swipe up), it disappears and a message appears that the emulator is not running. Although in the avd manager it is shown as running. It does not allow you to delete or make a wipe date, because the emulator is running. Only restarting the studio helps.
Upvotes: 2
Views: 433
Reputation: 1437
I solved the problem like this:
In case if the above doesn't works, then you can use adb server shelltools:
sudo adb kill-server
For Windows users:
adb kill-server
sudo adb start-server
adb start-server
Upvotes: 1