Deno Agüero
Deno Agüero

Reputation: 599

Handle Subversion error in Android Studio

I've connected my Android Studio with SVN and everything worked so far. Now there is following problem: I've added an image file to my drawable folder and added it also to the VCS. After that I moved the image file to the drawable-nodpi folder. If I want to commit my changes Android Studio says "...png is scheduled for addition, but is missing".

How can I handle this problem in Android Studio?

Upvotes: 0

Views: 247

Answers (1)

Marcin Orlowski
Marcin Orlowski

Reputation: 75629

Your question is not realted to Android Studio at all. It's just SVN complaining about missing file stagged for commit. So if you changed your mind, unstage it

svn revert FILE

EDIT

I don't know how to solve this with Android Studio. I don't have svn command

Andoid Studio is IntelliJ based so see their help:

https://www.jetbrains.com/help/idea/revert-changes-dialog.html

Upvotes: 2

Related Questions