user1813962
user1813962

Reputation: 549

Connect Android Studio with SVN

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

Answers (6)

Manju
Manju

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

Shanmugasundharam
Shanmugasundharam

Reputation: 2092

  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.

Upvotes: 13

Baskar .A
Baskar .A

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

Jon Cooper
Jon Cooper

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?

Enable Version Control Integration

Upvotes: 83

Toan Nguyen
Toan Nguyen

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

Siva Velusamy
Siva Velusamy

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

Related Questions