Android Studio 启动 无缘故报 Error:Could not find common.jar

Error:Could not find common.jar (android.arch.core:common:1.0.0).

Searched in the following locations:https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar

在昨天貌似很多人,突然间报出这个错误! 我也遇到了!!

怎么解决这个坑呢?

亲测可用!

如下:

把你项目不管是依赖底下的build还是项目app底下的build所有引用的support 全部改为统一版本 不要使用 ".+" 这种自动引用版本!!!!!!!!!!!

如:

compile 'com.android.support:appcompat-v7:26.+'
改成
compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
可以试试把项目的build
allprojects {
    repositories {
        maven {url "https://maven.google.com"}
        jcenter()//放到google后面加载
        maven { url 'https://jitpack.io' }	    
	}
}

你可能感兴趣的:(android)