Eclipse startup hang, “Android SDK: resolving error markers”

后端 未结 17 1654
情话喂你
情话喂你 2021-01-30 01:37

I am aware that other people have tried to resolve this issue but have thus far found a suitable answer.

The error is, on start up, eclipse gets hung up on \"Android SDK

17条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-30 02:15

    This problem made me crazy until I found below, if I didn't post the answer, I am not a man! Hope this helps if you are also going crazy

    I found from Eclipse Stuck at "Android SDK: Resolving error markers":

    cd [my workspace folder]
    
    cd .metadata
    
    find . -name .markers -exec rm {} \;
    
    eclipse -clean -refresh
    

    if you are in win32

    FOR /F "tokens=*" %%G IN ('DIR /B /AD /S .markers') DO RMDIR /S /Q "%%G"
    

提交回复
热议问题