Android Studio出现Could not find intellij-core.jar错误的解决方案
程序员文章站
2022-05-28 12:21:34
...
今天看到微信群里有人从网上下载了一个项目,结果导入的时候出现了这个错误,然后一群人在讨论是不是google被墙的原因。我去年也遇到过这个问题,因为是个小问题,所以也就没有记下来,现在记下来吧,如果你也遇到了这个问题,希望可以帮到你
导入项目之后,直接提示
Error:Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/external/com-intellij/intellij-core/26.0.1/intellij-core-26.0.1.jar
解决方案是:
1、如果你的项目gradle文件里没有依赖maven ,需要添加maven依赖
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
2、有些朋友会说,我已经依赖了maven了,可是还报这个错怎么办?
这时候可以调换一下依赖库的顺序
epositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
再重新编译一下,问题是不是已经解决啦~~
上一篇: spring给util类注入bean
下一篇: 稀奇古怪的问题汇总
推荐阅读
-
Android Studio新建项目出现building “project name” gradle project info的解决方案
-
android studio编程时出现的错误问题
-
导入网上下载的Android Studio项目出现的问题及解决方案总结:
-
Android Studio出现Could not find intellij-core.jar错误的解决方案
-
Android Studio新建项目出现building “project name” gradle project info的解决方案
-
关于Android Studio 更新到3.0版本以后出现的一些问题以及解决方案
-
android studio编程时出现的错误问题