前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【错误记录】Android Studio 编译时 lint 检查报错 ( WARNING: DSL element ‘android.dataBinding.enabled‘ is obsolet )

【错误记录】Android Studio 编译时 lint 检查报错 ( WARNING: DSL element ‘android.dataBinding.enabled‘ is obsolet )

作者头像
韩曙亮
发布2023-03-30 15:24:59
5690
发布2023-03-30 15:24:59
举报

文章目录

一、报错信息


在 Android Studio 中的 Terminal 面板中 , 执行

代码语言:javascript
复制
gradlew :app:lintDebug

命令 ,

在这里插入图片描述
在这里插入图片描述

进行 lint 检查 , 测试代码结构 , 报如下错误 :

代码语言:javascript
复制
Y:\002_WorkSpace\001_AS\SVG>gradlew :app:lintDebug
Starting a Gradle Daemon (subsequent builds will be faster)

> Configure project :app
WARNING: DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'.
It will be removed in version 5.0 of the Android Gradle plugin.

FAILURE: Build failed with an exception.

* What went wrong:
Could not determine the dependencies of task ':app:lintDebug'.
> Could not resolve all artifacts for configuration ':app:debugUnitTestCompileClasspath'.
   > Could not resolve junit:junit:4.+.
     Required by:
         project :app
      > Failed to list versions for junit:junit.
         > Unable to load Maven meta-data from https://jcenter.bintray.com/junit/junit/maven-metadata.xml.
            > Could not HEAD 'https://jcenter.bintray.com/junit/junit/maven-metadata.xml'.
               > org.apache.http.client.ClientProtocolException (no error message)

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 22s
在这里插入图片描述
在这里插入图片描述

二、解决方案


将 " build.gradle # android " 中的

代码语言:javascript
复制
android {
    dataBinding {
        enabled = true
    }
}

配置 , 修改为

代码语言:javascript
复制
android {
    buildFeatures {
        dataBinding = true
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-05-11,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
  • 一、报错信息
  • 二、解决方案
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档