1. 程式人生 > >Failed to resolve com.android.support:support-annotations 26.0.1

Failed to resolve com.android.support:support-annotations 26.0.1

解決方法:

開啟build.gradle 新增下面標紅的程式碼

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}
該方法參考stackoverflow上的資料點選開啟連結