问题描述
我知道其他人曾试图解决这个问题,但迄今为止尚未找到合适的答案。
I am aware that other people have tried to resolve this issue but have thus far found a suitable answer.
该错误,在启动时,日食被挂上Android的SDK:解决错误标记。此外,如果我试图与它进行交互,它完全冻结,我不得不强制退出
The error is, on start up, eclipse gets hung up on "Android SDK: resolving error markers" furthermore, if I try to interact with it, it freezes completely and I am forced to force quit.
这是进度对话框:
This is the progress dialog:
我觉得很奇怪,它需要解决的错误标记多次,但我认为这只是在我的工作区中的每个项目。
I find it odd that it needs to resolve the error markers multiple times but I assume this is just for each project in my workspace.
这是我的eclipse.ini:
this is my eclipse.ini:
其他的事情要注意的是所有的,目前我的工作区中存在是一个Android应用程序,一个应用程序引擎的端点项目为申请前,和4需要引用的库。所有提及的项目是开放的。这是我超载IDE或者有一些环路我把它变成了一个问题?我很难想象,这是一个独特的环境。
Other things to note being that all that currently exists within my workspace is an Android Application, an App-engine endpoint project for the before application, and 4 needed referenced libraries. All mentioned projects are open. Is this a matter of me overloading the IDE or perhaps there is some loop I threw it into? I find it hard to imagine that this is a unique circumstance.
更新:当我删除了工作区,并重新启动Eclipse中的应用程序引擎的端点的项目,它加载的罚款。当我把它带回来的,都好。但是,当我从那里重新启动,它进入错误循环一次。我相信,我有一个循环引用在那里的地方,但我无法揣摩出。感谢您的帮助。
UPDATE:When I delete the app engine endpoint project from the workspace and restart eclipse, it loads fine. When I bring it back in, all good. But when I restart from there, it goes into error loop again. I am convinced that I have a circular reference in there somewhere but I cant figure out where. Thanks for your help.
推荐答案
这个问题让我疯了,直到我发现下面的,如果我没有张贴的答案,我不是一个人!希望这会帮助,如果你也快疯了。
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
我发现从 Eclipse的停留在Android SDK中:解决错误标记:
cd [my workspace folder]
cd .metadata
find . -name .markers -exec rm {} \;
eclipse -clean -refresh
如果你是在Win32
if you are in win32
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S .markers') DO RMDIR /S /Q "%%G"
这篇关于Eclipse启动挂机," Android的SDK:解决错误标记"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!