检出android studio项目时,如果只检出app这个文件夹,那么会导致不能生成android studio的项目,需要将svn上的所有该项目的文件都检出,一般为trunk文件夹,检出后,进行项目配置,此时配置gradle是关键----
1.项目最外层的build.gradle是自动生成的,需要注意
dependencies { classpath 'com.android.tools.build:gradle:2.1.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }这里的classpath的配置,需要跟当前的androidstudio版本一致,否则报错--unsupported major.minor version 52.0
2.app下的build.gradle里属性的配置需要注意
compileSdkVersion 25 buildToolsVersion "25.0.0"这两个属性,需要一致,否则也会报错--unsupported major.minor version 52.0
当然,对应的v4包和v7包也要修改为对应的版本
compile 'com.android.support:appcompat-v7:25.0.0' compile 'com.android.support:support-v4:25.0.0'