Eclipse hangs at the Android SDK Content Loader

前端 未结 17 2036
感情败类
感情败类 2020-11-30 16:14

I\'ve been working with Eclipse 4.2 (Juno release 20120920-0800) on OS X 10.8.2 for a few weeks now, building apps for Android 3.0 and above. I have a quad core i7 MacBook P

17条回答
  •  死守一世寂寞
    2020-11-30 16:41

    I know that this has been resolved but I thought I would share this link:

    Solution One

    Often times, this problem can be network related. Check if your network is behind a proxy. If so, you need to configure proxy on Eclipse. For that, go to “Windows” -> “Preferences” -> “General” -> “Network Connections”, and fill in your proxy info. Restart Eclipse after that. Conversely, it’s also possible that you have configured proxy on Eclipse before, but that you are no longer behind proxy. Make sure to disable proxy then.

    Solution Two

    Another solution is to clean up project-specific meta data directories which are stored under your workspace directory.

    $ cd workspace/.metadata/.plugins/org.eclipse.core.resources/.projects
    $ rm -rf *
    

    Restart Eclipse.

    Solution Three

    Check if an adb process is running. If so, kill the adb process, and restart Eclipse.

    Solution Four

    1. Try deleteing the contents of the cache folder located in user profile under .android\cache
    2. Try deleteing the ddms.cfg located in user profile under .android

提交回复
热议问题