47.关于android studio 导入依赖,总是失败的问题。
程序员文章站
2022-03-04 19:45:10
...
你可以在project的build.gradle中添加一行:
maven { url "https://jitpack.io" }
例如:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
//---------------------------------------在这里加上--------------------------------------------------
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//如果上面的你加了之后还是不行的话,那我只能放大招了。
//要是报下面这种错的话:
//---在setting 里面,把这个默认勾选的给去掉,不让他勾选。
//----------------------------------------------------------------------------完--------------------------------------------------------------------
上一篇: vue实现tab切换外加样式切换方法
下一篇: 如何用css快速创建3点加载动画