SVN error on eclipse with Delete operation (aparently)

8

I have an Android project on Eclipse (STS) and it is giving me this error last time I tried to compile:

The project was not built due to "SVN: '0x00000119: Delete' operation finished with error". Fix the problem, then try refreshing this project and building it since it may be inconsistent

Google was not very helpful.. Only 9 hits

java
android
eclipse
svn
asked on Stack Overflow Nov 23, 2011 by pablisco • edited Jun 26, 2012 by Siddharth

7 Answers

11

I had the same problem, I disconnected and connected the project from the SVN. In the project, right click, TEAM>Disconnect and the problem was solved

answered on Stack Overflow Aug 30, 2012 by Fernando
8

I would discard your current project and rebuild the project files again, importing the codebase :(

Update: JohnEye recommends trying an svn cleanup first and this may solve your issue. If not, see above.

answered on Stack Overflow Nov 23, 2011 by Lucas B • edited Aug 20, 2012 by Lucas B
5

I may have just found the answer. It is surprisingly simple, assuming you are using linux, navigate to the project directory (cd ~/workspace/myProject) and run svn cleanup

Solved the problem for me.

Edit: Just happened to me again and my solution worked as expected, so it probably was not just a random fluke.

answered on Stack Overflow Aug 15, 2012 by JohnEye • edited Aug 30, 2012 by JohnEye
2

Had same issue. The work-around was to disconnect the project from SVN (Team->Disconnect) (note: please make sure you don't delete .svn) and refresh the project. Your are back on track, and you can reconnect to SVN once again.

answered on Stack Overflow Mar 1, 2013 by Mahesh Pujari
0

Deleting the project and re-checking out has worked for a couple of hours, but then the problem returned (maybe I deleted stuff again or whatever). There's a bug track here: http://issues.tmatesoft.com/issue/SVNKIT-77

answered on Stack Overflow Jun 26, 2012 by Rafael Sanches
0

SVN is a wonderful tool, if used correctly. Unfortunately when we use SVN incorrect, we run into such crazy issues.

The best way to fix issues like this,

  1. Checkout Project again
  2. Use meld and copy "ONLY" files, NOT "directories" from workspace to checkout folder.

If you copy folders, you will also end up copying .svn hidden folders and you will be in the same mess again. So create the folders manually.

One more, DONT waste your time trying to find ways to fix your svn issues. Just use the 2 step process above.

answered on Stack Overflow Jun 26, 2012 by Siddharth
0

I was encountering the same issue after importing the project from bitbucket repo. What worked for me was to disconnect the project and connect it again.

    1. Team->disconnect.
    2. Team->share project->Git->Use or create repository in parent folder->finish
answered on Stack Overflow Feb 13, 2014 by Dhir Pratap

User contributions licensed under CC BY-SA 3.0