AndroidManifest.xml (No such file or directory)----Error message in new Eclipse enviornment

假装没事ソ 提交于 2019-12-04 13:11:55

i'm not sure if this will help, but it may be worth trying:

right-click project -> android tools -> fix project properties

I saw that there is a hidden directory named ".android" in the /Users directory. Using Terminal I found it: find . -name '*.android' and then I deleted the directory: rm -r .android <----be VERY careful when using this command

Once I deleted that I was able to do a clean install and run Google's Hello World. When I imported I had a "Compiler Compliance" error. Opening the Java compiler in the packages property seemed to fix this and all packages are importing without issue.

I encountered this issue as well after doing a bunch of SDK and plugin version updates.

I tried the "right-click project -> android tools -> fix project properties" as suggested by Ian, but that didn't help in my case anyway.

I found the hidden directory .android in my $HOME (/Users/username) but not in my /Users directory (from bklynjones answer). To be safer, I did a 'mv .android .androidREMOVE'. I want ahead and restarted eclipse although I'm not sure if that was totally necessary. My app is working now!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!