Connect Android Studio with SVN

AndroidSvnAndroid Studio

Android Problem Overview


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.

Android Solutions


Solution 1 - Android

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?

Enable Version Control Integration

Solution 2 - Android

  1. Run Android Studio.
  2. From the menu bar, select Android Studio
  3. Under IDE Settings, click Plugins and then select Search Subversion Integration
  4. Check SubVersion.
  5. Restart Android Studio.

Solution 3 - Android

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.

Solution 4 - Android

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

Solution 5 - Android

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.

Solution 6 - Android

In Android Studio we can get the repositories of svn using the VCS->Subversion and the extract the repository and work on the code

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser1813962View Question on Stackoverflow
Solution 1 - AndroidJon CooperView Answer on Stackoverflow
Solution 2 - AndroidShanmugasundharamView Answer on Stackoverflow
Solution 3 - AndroidBaskar .AView Answer on Stackoverflow
Solution 4 - AndroidToan NguyenView Answer on Stackoverflow
Solution 5 - AndroidSiva VelusamyView Answer on Stackoverflow
Solution 6 - AndroidManjuView Answer on Stackoverflow