So today i decided to get some work done on an Android app i am planning for some time. But first things first, I need to setup the development enviroment. So i downloaded Eclipse, the android sdk and went on to instal the ADT plugin. But as always eclipse threw a nice error in my face:
An internal error occurred during: "Computing size". Incompatible profile file name. Expected format is {timestamp}.profile.gz (or {timestamp}.profile) but was ._1328723081571.profile.g
Turns out this is a mac problem. OsX makes all this ._* files, and Eclipse doesnt know how to handle these files. The sulution is to delete all these files. So i found some command to run, problem is, im running windows (I know) on my work machine. So i tried to run it through git Bash, and thank the maker it worked (Its a lot of files to delete manualy). So fire up gitBash and execute these commands:
cd /path/to/your/eclipse/folder
find . -iname '._*' -exec rm -rf {} \;
Thanks to Kelvin Luck for his sulotion.