Error:Failed to resolve: com.android.support:support-annotations:27.1.0

解决方法:

打开build.gradle 添加下面标红的代码

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

你可能感兴趣的:(开发)