Android/Eclipse PANIC: Could not open

前端 未结 8 888
有刺的猬
有刺的猬 2020-12-01 05:11

I\'m brand new to Android development and Eclipse so I have just set it all up and I am attempting the Hello World tutorial. Sadly when I try and run the program I get the f

相关标签:
8条回答
  • 2020-12-01 05:30

    I had the same problem, the issue seemed to be low disk space on the drive containing the emulator files (C).

    0 讨论(0)
  • 2020-12-01 05:33

    Home Folder Redirection To UNC / AVD Shows UNC Path

    If you're unfortunate to have network UNC path mapped as your home directory using Windows Folder Redirection then AVD will fail to start.

    You should also have a normal user directory under C:\Users, which contains non-mapped stuff. The trick is for Android SDK to use this instead. Similar to other answers, you need to set ANDROID_SDK_HOME user environment variable to your C:\ based home directory.

    For example:

     ANDROID_SDK_HOME = C:\Users\MyUserName
    

    Restart Eclipse.

    In my hunt for a resolution, I found this answer which gives a great performance increase: https://stackoverflow.com/a/19338671/1554386

    0 讨论(0)
提交回复
热议问题