Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User Operation is waiting for "Building Workspace"

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 message came out, the problem even cannot launch. It said one operation left, but it seems like it has stopped. Have anyone met the similar problem before, or anyone know what is happening here?

The screen comes out when I run the program

like image 393
Conrad Avatar asked Jul 17 '12 01:07

Conrad


3 Answers

I had exactly the same problem. For me helped adding '-clean' option at the first line of eclipse.ini file and restarting IDE. After adding this option eclipse clean all cached data in workspace each time it is started (that also mean it will be starting slower).

You can find more information about it here: How to repair hanging 'User Operation is waiting for “Building Workspace”' in eclipse

like image 81
jlego Avatar answered Nov 05 '22 12:11

jlego


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.

like image 19
Mallox Avatar answered Nov 05 '22 13:11

Mallox


I had to disable the automatic build option from the Eclipse and restart it. This made it work for me.

like image 3
Amzi Avatar answered Nov 05 '22 13:11

Amzi