我正在使用
google
文件中mavenCentral
中包含的jcenter
,allprojects
和build.gradle
我想在项目中使用constraintLayout:1.1.3
,但出现此错误
Unable to resolve dependency for ':app@release/compileClasspath': Could not
resolve com.android.support.constraint:constraint-layout:1.1.3
任何帮助将不胜感激!
谢谢
答案 0 :(得分:1)
尝试使用1.1.2或1.1.0版本 此错误是由于版本引起的
答案 1 :(得分:1)
尝试使用implementation 'com.android.support.constraint:constraint-layout:1.1.3'
。
还要尝试执行clean-> build,如果它不起作用,请尝试使clean-> invalidate caches / restart-> build。