Reputation: 570
I have svn connected with eclipse(windows), now I wanted to import projects from eclipse to android studio(windows) using svn. When I use VCS->Checkout from version control, then also I am not able to connect with svn. I am getting the following error while checking out from svn
cannot load supported formats: Executable is not specified
Upvotes: 4
Views: 451
Reputation: 784
Go to File->Settings->Version Control->Subversion
. Enter the path for your SVN executable in the General
tab under Subversion configuration directory
and un-check Use command line client
. Also, you can download a latest SVN client such as VisualSVN and point the path to the executable (svn.exe
in most cases) as mentioned above. That will most likely solve your problem.
Upvotes: 3