安装android studio

studio版本:

3.0.1

系统

mac

安装过程参考:

(链接一)https://blog.csdn.net/tangjie134/article/details/79481581

(链接二)https://blog.csdn.net/tangjie134/article/details/79495204

问题一:

Gradle下载很慢

直接下载一个Gradle.zip,Gradle的版本要跟你版本一致

具体参考链接二

问题二:

报错Resolved versions for app (26.1.0) and test app (27.1.1) differ

参考:https://blog.csdn.net/leansmall/article/details/80513769

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    androidTestCompile('com.android.support:support-annotations:26.1.0') {
        force = true
    }
}
原文地址:https://www.cnblogs.com/SuMeng/p/9678453.html