Reputation: 1063
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:\android-sdk_r24.2-windows\android-sdk-windows\system-images\android-22\android-wear\armeabi-v7a
> cvc-complex-type.2.4.d: Invalid content was found starting with element 'd:skin'. No child element is expected at this point.
This error happens when Eclipse automatically loads the SDK on startup.
Upvotes: 93
Views: 124423
Reputation: 3003
In my case I removed these two
Android TV Intel x86 Atom System Image
Wear OS Intel x86 Atom System Image
under Android 9 (API 28)
Upvotes: 3
Reputation: 36
To remove error from eclipse for android there are few steps:-
1.open eclipse check all the error
2.In search tab open SDK manager
3.Remove all the value show as error in eclipse
4.After remove from sdk restart eclipse
Upvotes: 0
Reputation: 5636
Apart from Android Wear image, the same error is also displayed for Android TV as well, so if you do not have Android Wear image installed but have Android TV image installed, please uninstall that and then try.
Upvotes: 0
Reputation: 1
I faced the same issue. To get rid of this issue, I followed the below steps and it worked for me.
Upvotes: 0
Reputation: 14458
Feel tired deleting the android-wear related packages each time upgrading the sdk?
Try to make some changes to devices.xml
as following, you can edit the files by hand, or use some batching tools like repl.
repl is written by me, add this line to sources.list and install:
echo 'http://deb.bodz.net/ unstable/' >>/etc/apt/sources.list
alias sagu='sudo apt-get update'
alias sagi='sudo apt-get install'
sagu
sagi repl
Then, remove those <d:skin>
lines and replace ###dpi
to hdpi
or whatever.
repl -r --filter=devices.xml --mode=regexp -- '<d:skin>.*</d:skin>' '' .
repl -r --filter=devices.xml -- '280dpi' 'hdpi' .
repl -r --filter=devices.xml -- '360dpi' 'xhdpi' .
Upvotes: 0
Reputation: 3855
There are lots of answer already given for this problem. Though this issue can happens for any API version, so just see the error line and find out android api version from path and platform name and go to the android sdk manager and delete related system image from sdk manager.
Upvotes: 2
Reputation: 351
In my case, I have the latest Android SDK and just have to remove/delete the Android Wear system images and it worked.
Upvotes: 0
Reputation: 4470
I had the same problem and it appears when I updated my sdk packages and added sdk 22 I removed all wear packages from sdk 22 as well as other sdks but problem wasn't resolved I Updated all of my sdk packages again from sdk manager then problem solved and error gone.
I think there's been few bugs with eclipse and android wear packages which are fixed in new updates available in sdk manager
Upvotes: 0
Reputation: 1
I solve this issue deleting the 10 packages in my android sdk manage.
Upvotes: -1
Reputation: 11
Check the
Than delete them and restart Eclipse IDE. This should fix the problem.
Upvotes: 1
Reputation: 5150
The issue is still coming for API 23. To get rid from this we have to uninstall android Wear packages for both API 22 and API 23 also (till current update).
Upvotes: 12
Reputation: 3903
On MacOS 10.10.2
Removed the lines, containing "d:skin" from device.xml
from:
/Users/user/Library/Android/sdk/system-images/android-22/android-wear/x86
/Users/user/Library/Android/sdk/system-images/android-22/android-wear/armeabi-v7a
Restart the eclipse, the problem should be resolved.
Upvotes: 2
Reputation: 1
Working fine after removing the Android Wear ARM EABI v7a system image and wear intel x86 Atom System image.
Upvotes: 0
Reputation: 2656
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
Upvotes: 1
Reputation: 41
I removed the packages indicated in the api 22 in the sdk and the problem is not resolved.
I edited device.xml of Applications / Android / android-sdk-macosx / system-images / android-22 / android-wear / x86 and of Applications / Android / android-sdk-macosx / system-images / android-22 / android-wear / armeabi-v7a I removed the lines containing "d:skin"
Finally restart eclipse and the problem was resolved!
Upvotes: 4
Reputation: 51
Copy the default devices.xml file from : /home/user/android-sdk/tools/lib/devices.xml
and paste it in the below paths: /android-sdk/system-images/android-22/android-wear/armeabi-v7a/ and /android-sdk/system-images/android-22/android-wear/x86/
This is a alternative solution, however, before replacing the devices.xml, take backup of the existing devices.xml file in these folders.
Upvotes: 5
Reputation: 126455
This was my error message:
Error: Error Parsing C:\Android\sdk\system-images\android-22\android-wear\armeabi-v7a\devices.xml Invalid content was found starting with element 'd:Skin'. No child element is expected at this point.
There´s a kind of problem with android Wear packages for API 22
, so my solution was deleting this two packages from the API 22
Upvotes: 37
Reputation: 7132
I have faced the same parse sdk loading problem during eclipse startup like yours (Shown in image below)
The solution to above problem is to just delete(uninstall) the package Android Wear ARM EABI v7a system image available under Android 5.1.1 (API 22) if it's installed. (No need to uninstall whole 5.1.1 package). May be there is some eclipse bug with this package.
Finally restart eclipse to see your changes.
Edit: If the problem still exists, try removing other Android Wear package also (i.e Android Wear Intel x86 Atom System Image) as suggested by @Abhishek in comments below.
Upvotes: 203
Reputation: 1578
execute with in under api level 19 right click on project go to preporty and then select android
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
Upvotes: 1