Android Android开发Android开发经验谈

DataBinding配置的问题

2016-08-15  本文已影响0人  hcancan

最近把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
    }

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

上一篇 下一篇

猜你喜欢

热点阅读