Android Studio: The emulator keeps crashing after sometime

前端 未结 6 534
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 04:38

Every time I run the emulator it runs normally at the beginning but after a couple of minutes it crashes and it\'s giving me this error:

emulator process fin         


        
6条回答
  •  隐瞒了意图╮
    2021-01-18 05:19

    I might have an Idea what your problem is:

    Restart the adb Server, you can do so by using the command Prompt in the following way:

    First go to C/users/(YOUR USERNAME)/AppData/Local/Android/Sdk/platform-tools with the cd command. Then just type adb kill-server, and adb start-server, so like this;

    cd C/users/(YOUR USERNAME)/AppData/Local/Android/Sdk/platform-tools
    adb kill-server
    adb start-server
    

    If that doesent work try to wipe and cold boot described in this question.

提交回复
热议问题