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
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"