错误消息:使用约束库的版本1.0.0-alpha2已过时

时间:2016-09-05 16:29:21

标签: android android-constraintlayout

我在布局文件中使用android.support.constraint.ConstraintLayout,我收到以下错误消息。我无法找到在gradle中使用的正确编译行。

我的gradle文件包含:

  

compile' com.android.support.constraint:constraint-layout:1.0.0-alpha2'

enter image description here

2 个答案:

答案 0 :(得分:5)

我尝试了很多版本,但我无法解决问题! 最后我让Android Studio解决了这个问题。

在XML文件中,除了错误消息,您可以看到此选项!单击它以导入reccomonded版本

enter image description here

或者您可以按alt +输入将光标置于错误行

我得到了约束布局:1.0.0-alpha8,当我按下alt + enter

compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8'

答案 1 :(得分:4)

从战术上讲,alpha7有效。

将来,我认为Android Studio将提供更好的最新版本指标,就像它对经典的Android支持库一样。但是,Android Studio 2.2和ConstraintLayout目前都处于预发布状态,因此我们受其限制。