Tulsiram Rathod
Tulsiram Rathod

Reputation: 1946

Subversion Not Working?

I am working with Android Studio 1.1.0 and while connecting SVN repository from Android Studio VCS i m getting error:

Subversion: (Accessing URL: https://url/svn/project_name) No appropriate protocol
(protocol is disabled or cipher suites are inappropriate) Please check Subversion
SSL settings (Settings | Version Control | Subversion | Network) Maybe you should
specify SSL protocol manually - SSLv3 or TLSv1

I Tried:

How do I resolve the error?

Upvotes: 4

Views: 5044

Answers (2)

Janko Petras
Janko Petras

Reputation: 151

In my case on Mac, in Android Studio -> Preferences-> Enable SVN interactive mode, it asked for to trust SSL certificate and add it to login keychain and everything worked as before.

Upvotes: 2

Tulsiram Rathod
Tulsiram Rathod

Reputation: 1946

Please Setup SVN with Command line client. Check below.

enter image description here

  • Make sure SVN path is in File -> Settings -> Version Control -> Subversion -> Check use command line client. Specify svn.exe in path (located at C:\Program Files\TortoiseSVN\bin)
  • Also Check -> Use system default subversion configuration directory (located at C:\Users\user_name\AppData\Roaming\Subversion)

enter image description here

Then Prompt for authentication shown. Enter your credential.That's All.

Upvotes: 3

Related Questions