How do I resolve an “Error reading signed content.” error when installing ADT 23.0.2 in Eclipse 4.4 on OSX

核能气质少年 提交于 2019-12-01 06:11:38
Nick

I had exactly the same issue, and I found that if I installed the components one at a time (instead of the whole lot all at once) it worked... But then a week or so later I tried installing some other Eclipse software from the Luna repository (it was the C++ Developer Tools) and I got the same error. Then after a bit of Googling I found this: eclipse error when try install plugin

So basically if you delete all the artifacts.xml files under your eclipse directory the problem goes away. Here are the commands I used:

cd /opt/eclipse
find -name artifacts.xml -execdir rm {} \;

I don't really know what the artifacts.xml files are for, but I am just happy to be able to install stuff again without having to start from a fresh Eclipse install. I hope you find this useful. :-)

Your error occur by you deleted file in plugins You need: Delete file You search file artifacts.xml in folder ..\jee-neon\eclipse\configuration\org.eclipse.osgi (My folder is: C:\Users\hotli\eclipse\jee-neon\eclipse\configuration\org.eclipse.osgi) After you delete file content text this "android"

Next open file artifacts.xml in folder: .p2\pool (My folder: C:\Users\hotli.p2\pool) this is place content all plugin in Eclipse After you search this text "android" Delete all atribute content text "android"

Next save file and install plugin again Note: turn off your IDE eclipse before do it

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