“Subversion command line client version is too old” error in Android Studio

别来无恙 提交于 2019-11-30 11:04:00

It's just misprint: must be "too new"

Android Studio based on Intellij IDEA, Intellij 14.1.4 cannot use svn 1.9.0

Intellij IDEA 14 works with SVN 1.9, it just shows a warning: https://youtrack.jetbrains.com/issue/IDEA-140754

Svn 1.9 command line client should work in IDEA - just warning (you can close it) is shown. upgrade new version 14.1.5 from https://confluence.jetbrains.com/display/IDEADEV/IDEA+14.1+EAP or 15 EAP: https://confluence.jetbrains.com/display/IDEADEV/IDEA+15+EAP .

https://devnet.jetbrains.com/thread/471975

Joaquin Iurchuk

As Lazy Badger says, it should say is too new.

Faced same problem on Debian. I had 1.9 version installed. I fixed it by removing my installed version and then installing 1.8 version:

aptitude remove subversion
aptitude install subversion=1.8.10-6+deb8u1

EDIT
As I understand, the devs of Android Studio have fixed this issue in latest releases.

In my case it was related with broken path:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

Issue was resolved after installing xcode-select: xcode-select --install

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!