Android 使用时资源链接失败:buildFeatures {viewBinding = true}
Android Resourcse linking Failed while using : buildFeatures {viewBinding = true}
今天开android工作室后,遇到一个奇怪的问题。是说
DSL element 'android.viewBinding.enabled' is obsolete and has been
replaced with '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}
}
我不知道是怎么回事了。任何建议都会有很大的帮助。
我已经解决了这个问题。我不得不将我的资源移动到 drawable-v24 文件夹。而已。但是,不要因为昨天一切正常而需要它。也许更新与它有关。我会寻找原因,如果我想出点什么,我会post。
今天开android工作室后,遇到一个奇怪的问题。是说
DSL element 'android.viewBinding.enabled' is obsolete and has been replaced with '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}
}
我不知道是怎么回事了。任何建议都会有很大的帮助。
我已经解决了这个问题。我不得不将我的资源移动到 drawable-v24 文件夹。而已。但是,不要因为昨天一切正常而需要它。也许更新与它有关。我会寻找原因,如果我想出点什么,我会post。