Eclipse hangs at the Android SDK Content Loader

前端 未结 17 2007
感情败类
感情败类 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:54

    I made this batch file to fullfill the task explained by slhck's answer for Windows systems:

    @echo off
    set ECLIPSEFOLDER=%CD%
    cd /D %USERPROFILE%/.android
    rd /s /q cache
    del ddms.cfg /f
    cd /D %ECLIPSEFOLDER%
    eclipse -clean -refresh
    exit
    

    I explained such approach in this post on my blog.

提交回复
热议问题