How should I solve this problem?
I had the same error message but one of the solutions suggested was defining my application to work under API level 19
. Really that wasn´t an option for me, so my solution was deleting the packages from the API 22
:
I got rid of error by commenting out all <d:skin />
element on two files:
like this
<!--<d:skin>AndroidWearSquare</d:skin>-->
I could get rid of the error by uninstalling both wear images from API 22 package in SDK Manager.
For me, the solution was to delete Android Wear Intel x86 Atom System Image (under Android 5.1.1 (API 22)).
But my emulator still won't start!. Bring on Android Studio...
Deleting(uninstalling) the package Android Wear ARM EABI v7a system image available under Android 5.1.1 (API 22) resolves this problem.
For details see this link - Error Loading the sdk when eclipse is started
I just had the same problem too when trying to install the Android SDK for libgdx. I solved it by deleting every package from the "Android 5.1.1 (API 22)" in the Android SDK Manager except for Documentation for Android SDK, SDK Platform, Samples for SDK, ARM EABI v7a System Image, Google API's and Sources for Android SDK.
This solved the error for me. I guess it was a problem witht he other packages. I hope this helps :)
/EDIT: This sadly also resulty in libgdx not recognizing my API22 version. Not really sure why exactly, since it does successfully show up in the Android settings in Eclipse. :/ So if somebody has a proper fix I would be interested aswell ^^