User Operation is waiting for “Building Workspace”

后端 未结 11 1587
生来不讨喜
生来不讨喜 2020-12-13 04:24

As the title mentioned, I have developed a simple NFC app in eclipse and I am trying to run it in the mobile device to debug my code. However, when I try to run it, this mes

相关标签:
11条回答
  • 2020-12-13 04:34

    I had the same problem: dying waiting for Project/clean. I have tried following this recommandations, "-clean" comman in eclipse.ini, modified the working environment, reinstall eclipse... After all, problem stayed still.

    Then finally, I ask my friend, then the solution was simple: "it might be crashed at your aapt file, change it with a good one"

    Everything works fine now. Hope it helps.

    0 讨论(0)
  • 2020-12-13 04:35

    Go to Project Menu Uncheck the Build automatically and Restart the Eclipse/STS IDE.

    0 讨论(0)
  • 2020-12-13 04:37

    I ran into this issue and the reason was there was one project it was not build correctly. so if you ran into this issue in an existing working workspace review the recent changes or recently imported projects.

    0 讨论(0)
  • 2020-12-13 04:39

    This method worked for me:

    1. Go to menu 'Project' -> uncheck 'Build Automatically'.
    2. Force close Eclipse then reopen it.
    3. Delete the class files.
    4. Edit the source codes which caused the error, save, and rebuild the project ('Project' -> 'Build All').

    Hope this'll help!

    0 讨论(0)
  • 2020-12-13 04:41

    For me the clean option didn't work and I didn't want to reset the workspace. Fortunately for me another solution worked:

    1. Disable automatic builds (uncheck menu item Projects -> Build Automatically)
    2. Restart IDE (I had to kill it from command line)
    3. Close all projects
    4. Restart IDE (this time it should close without problems)
    5. Open projects that you need to work on (everything should be fine now)

    Oh yeah, I had the clean option in the eclipse.ini the entire time. Not sure if that is necessary, but it might be good to try that option first anyways.

    0 讨论(0)
  • 2020-12-13 04:44

    this can be due to installing another software with port setted equivalent to the port used by adb server

    adb hangs when trying to start or stop server

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