1. 程式人生 > >Failed to resolve: junit:junit:4.12

Failed to resolve: junit:junit:4.12

裝了最新的Android Studio後,新建專案報錯了

查了下是刪除

testImplementation 'junit:junit:4.12'

其實這是迴避錯誤,正確的方法是

在工程build.gradle下加maven

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'http://repo1.maven.org/maven2' }
    }
}
或者Go to File -> Project Structure. Following window will open:

enter image description here

刪了後再新增。