Build.Gradle错误:无法解析依赖项

时间:2018-03-08 14:29:13

标签: android android-gradle build.gradle

当我要在我的android工作室项目中同步gradle时,我遇到了这些错误。 prviousy我在drawable文件夹中添加了3个图像,名称为 img2,img3,img4

错误图片:

the error images

我也成功安装了

  1. 适用于Android的ConstraintLyaout
  2. constraintLayout的解算器
  3. 因为他们被提到是这类错误的最常见原因。 非常感谢你提前。

1 个答案:

答案 0 :(得分:1)

在添加img2,img3和img4时,您偶然会更改包含2,3或4位数的build.gradle文件中的依赖项。改变

.flex-container {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 0;
    right: 0;
}


.flex-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: center; /* center items vertically, in this case */
    align-items: center;     /* center items horizontally, in this case */
}

.flex-sidenav {    
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 200px;
    background: rgba(255, 0, 0, 0.5);    
}

.flex-footer {    
    max-height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
    flex-direction: column;  /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    align-items: center;     /* center items horizontally, in this case */
}

 'junit:junit:img4.12.' 

等包含'img'字符串的每个其他依赖项。