androidStudio annotationType(): unrecognized Attribute name MODULE
Posted 数据结构和算法
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了androidStudio annotationType(): unrecognized Attribute name MODULE相关的知识,希望对你有一定的参考价值。
截止到目前我已经写了 600多道算法题,其中部分已经整理成了pdf文档,目前总共有1000多页(并且还会不断的增加),大家可以免费下载
下载链接:https://pan.baidu.com/s/1hjwK0ZeRxYGB8lIkbKuQgQ
提取码:6666
android使用MVVM的时候,需要添加下面代码
buildFeatures {
dataBinding true
}
一编译的时候就报错,找各种原因,最后发现是编译版本太高了,修改如下
compileSdkVersion 30(这个要改成30或者30以下,不能超过30)
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.app.granayuda"
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
以上是关于androidStudio annotationType(): unrecognized Attribute name MODULE的主要内容,如果未能解决你的问题,请参考以下文章