The following worked for me:
At the command prompt, I went to the tool folder of the Android-SDK folder. From there, I ran this command:
android list avd
This created a list of all my virtual devices, but one of them showed that this was a problem. The exact result was as follows:
The following Android Virtual Devices could not be loaded: Name: Tab31 Path: /Users/User/.android/avd/Tab31.avd Error: Failed to parse properties from /Users/User/.android/avd/Tab31.avd/config.iniere
If you see this, then pay attention to the "Name" property ("Tab31" in my situation) and run the following command (obviously replacing the name of my AVD with yours):
android delete avd -n Tab31
After that, I was able to run the AVD manager without any problems.
source share