Error loading the SDK when Eclipse starts

后端 未结 19 1177
余生分开走
余生分开走 2020-11-27 04:21

I have already read varying answers to above question, but I have a specific problem. When I start Eclipse it gives an error:

> Error Parsing:
> C:\\an         


        
19条回答
  •  眼角桃花
    2020-11-27 04:44

    I couldn't delete the system image (idk why), so I took the approach of deleting all occurrences of g:skin in any xml file since eclipse don't know what that is:

    $ find . -type f -name "*.xml" -print0 | xargs -0 sed -i /d:skin/d
    

    On windows you might want to run it within Cygwin or cmder

提交回复
热议问题