amine life
amine life

Reputation: 443

Android SDK Error when loading the SDK:

enter image description here

How should I solve this problem?

Upvotes: 44

Views: 69482

Answers (7)

Serj.by
Serj.by

Reputation: 604

Seems like all latest Android Wear and TV emulators have this problem. Only deleting all of them solved this problem for me. Just go through all of them in SDK manager and delete'em all - should helps. In the case you need Wear and TV emulators - seems now there is no other way than using Android Studio for development. C'est la vie.

Upvotes: 0

Boycott A.I.
Boycott A.I.

Reputation: 18921

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...

Upvotes: 0

Jorgesys
Jorgesys

Reputation: 126563

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:

  • Android Wear ARM EABI v7a System Image
  • Android Wear Intel x86 Atom System Image

enter image description here

Upvotes: 35

Prabhakar
Prabhakar

Reputation: 11

I could get rid of the error by uninstalling both wear images from API 22 package in SDK Manager.

Upvotes: 0

Puliyo
Puliyo

Reputation: 51

I got rid of error by commenting out all <d:skin /> element on two files:

  • C:\Users\"username"\AppData\Local\Android\android-sdk\system-images\android-22\android-wear\x86\devices.xml
  • C:\Users\"username"\AppData\Local\Android\android-sdk\system-images\android-22\android-wear\armeabi-v7a\devices.xml

like this

<!--<d:skin>AndroidWearSquare</d:skin>-->

Upvotes: 4

Amrit Pal Singh
Amrit Pal Singh

Reputation: 7142

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

Upvotes: 54

The_Blog
The_Blog

Reputation: 155

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.

enter image description here

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 ^^

Upvotes: 4

Related Questions