Reputation: 549
I have an Android project in Eclipse (Windows) synchronized with SVN, I installed Android Studio (Linux) and I need take the same project from SVN.
Upvotes: 51
Views: 106711
Reputation: 111
In Android Studio we can get the repositories of svn using the VCS->Subversion and the extract the repository and work on the code
Upvotes: 0
Reputation: 2092
Upvotes: 13
Reputation: 570
Go to File->Settings->Version Control->Subversion enter the path for your SVN executable in the General tab under Subversion configuration directory. Also, you can download a latest SVN client such as VisualSVN and point the path to the executable as mentioned above. That will most likely solve your problem.
Upvotes: 9
Reputation: 861
There is a "Enable Version Control Integration..." option from the VCS popup (control V). Until you do this and select a VCS the VCS system context menus do not show up and the VCS features are not fully integrated. Not sure why this is so hidden?
Upvotes: 83
Reputation: 81
You should open File/Settings/Version Control/Subversion and uncheck 3 options: Use command line client, Use system default Subversion configuration directory and Use system default Subversion configuration directory like http://screencast.com/t/rlh9H2WVpgo
And then go to network tab. Choose SSLv3 instead of All in the field SSL protocols like http://screencast.com/t/l5yw1jqOxV
Lastly, check in or out your source via svn. It works well
Upvotes: 8
Reputation: 2489
Android Studio is based on IntelliJ, and it comes with support for SVN (along with git and mercurial) bundled in. Check http://www.jetbrains.com/idea/features/version_control.html for more info.
Upvotes: 6