gpt4 book ai didi

android - 当我在 Android Studio 的 gradle 中添加 viewBinding 时,出现错误

转载 作者:行者123 更新时间:2023-12-05 00:13:27 27 4
gpt4 key购买 nike

我使用的是 Android Studio 版本 4.0.1。

当我添加 viewBinding 时,出现错误。

在 gradle 中添加 viewBinding 时出错。

buildFeatures {
viewBinding = true
}

build.gradle 文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 5
versionName "1.2.0"
resValue("string", "growingio_project_id", "8979dc98cc52320f")
resValue("string", "growingio_url_scheme", "growing.1f3e3791e1d6aee5")
}
compileOptions {
sourceCompatibility rootProject.ext.sourceCompatibilityVersion
targetCompatibility rootProject.ext.targetCompatibilityVersion
}

buildFeatures {
viewBinding = true
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: "*.jar")
implementation deps.swipeRevealLayout
implementation deps.glide
implementation deps.growingio
implementation(deps.rxbus) {
exclude group: 'com.jakewharton.timber', module: 'timber'
}
implementation deps.androidasync
implementation deps.timber
}

错误:

Could not find method buildFeatures() for arguments [build_6zjavhoqnf2k7dfs2qrq542f3$_run_closure1$_closure5@6cd00094] onobject of typecom.android.build.gradle.internal.dsl.BaseAppModuleExtension.

为什么会出现这个错误?

我该如何解决这个错误?

最佳答案

要在 build.gradle 中使用 buildFeatures,您必须使用 android gradle plugin 4.0.x

buildscript {
//..
dependencies {
classpath "com.android.tools.build:gradle:4.0.0"
//....
}
}

然后你可以使用:

android {
//...
buildFeatures {
viewBinding true
}
}

如果您使用的是 android gradle 插件 3.6,您可以使用:

android{
//....
viewBinding {
enabled = true
}

}

关于android - 当我在 Android Studio 的 gradle 中添加 viewBinding 时,出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62951769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com