今天开了一个android studio后,遇到了一个奇怪的问题。它在说
DSL 元素 'android.viewBinding.enabled' 已过时,已 替换为 'android.buildFeatures.viewBinding'。
搜索了一下后我发现我必须使用
buildFeatures {viewBinding = true}
反而。所以,我用上面的替换了 viewBinding{enabled=true}。在那之后,真正的问题开始了。AAPT 无法再检测到我的可绘制对象。这是我的构建脚本:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
和 build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.techtrixbd.RestaurantApp"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {viewBinding = true}
}
我不知道发生了什么事了。任何建议都会有很大帮助。