Mohaimin Moin
Mohaimin Moin

Reputation: 841

Parsing Error, When load Android SDK

After creating an Android application project I have found these two errors in console:

  1. Error: Error parsing E:\Android\ANDadt\adt\sdk\system-images\android-22\android-wear\armeabi-v7a\devices.xml
  2. Error: Error parsing E:\Android\ANDadt\adt\sdk\system-images\android-22\android-wear\x86\devices.xml

Upvotes: 1

Views: 9902

Answers (4)

Rajesh Ramannavar
Rajesh Ramannavar

Reputation: 1

Copy file devices.xml file(\sdk\tools\lib), and paste it to the location folder where the error occurred. This solution worked for me in Windows 10.

Upvotes: 0

ankit
ankit

Reputation: 21

in windows:

copy devices.xml file from

sdk\tools\lib\devices.xml

and paste(override it) to

sdk\system-images\android-22\android-wear\armeabi-v7a\devices.xml

This solution worked for me(try it).

Upvotes: 2

Ricardo
Ricardo

Reputation: 8291

For OS X user this is the only thing work for me:

sudo ./eclipse 

Upvotes: 0

Ankit Kumar
Ankit Kumar

Reputation: 3721

It might be a permission issue. Make sure you have writing permissions for that folder. Try starting Eclipse or the SDK Manager as Administrator.

Upvotes: 3

Related Questions