Android SDK content loader issue has occurred. Failed to execute command parseSdkContent

After trying to update the ADT plugin and download the Android 5.0 SDK, I got the error:
"Android SDK content loader encountered a problem.
ParseSdkContent
failed to initialize class android.graphics.Typeface"

http://i.stack.imgur.com/xR17Y.png

I removed Eclipse, Android SDK, ".android" and workspace folders.

I downloaded new plugin Eclipse (4.4.1), ADT (23.0.4.1468518) and Android SDK (5.0 API 21 only):

http://i.stack.imgur.com/cjECP.png

Create a new empty project and I got the same error.

What should I remove to look clean?

Updated: I installed everything on a clean OS but got an error. Any solutions please.

+3


source to share


3 answers


According to the AOSP Issue Tracker, this is an error caused by the rendering library. To solve this problem:



  • Download the Platform SDK for API 20 (4.4W);
  • Go to the / platform / android -21 / data folder;
  • Rename layoutlib.jar (for backup purposes);
  • Copy the same file from android-20 folder to this folder;
  • Restart Eclipse.
+3


source


To fix this, uninstall Android 5.0 (API 21) in the Android SDK Manager and restart Eclipse.

It works in my case.



Even reinstall Android 5.0 (API 21).

  • SDK platform
  • System image for an emulator like ARM EABI v7a System image
0


source


I had the same problem, but when I updated the Sdk platform to Android 5.0, the error went away.

0


source







All Articles