DataBinding配置的问题

作者: hcancan | 来源:发表于2016-08-15 14:54 被阅读0次

最近把Android studio升级到2.2 Preview7,发现在使用databinding的时候编译不过去,会出现下面错误。

错误图片

测试后发现是因为项目gradle版本配置成了

    dependencies {
          classpath 'com.android.tools.build:gradle:+'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

将其修改为1.5.0后问题解决

    dependencies {
          classpath 'com.android.tools.build:gradle:1.5.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

具体原因未知,以后友善在。

相关文章

网友评论

    本文标题:DataBinding配置的问题

    本文链接:https://www.haomeiwen.com/subject/dayusttx.html