gpt4 book ai didi

android - BViewBinding 的缺失或冲突依赖项的模块类路径

转载 作者:行者123 更新时间:2023-12-03 23:03:11 28 4
gpt4 key购买 nike

我正在尝试在项目上启用 View 绑定(bind),但出现此错误:

Cannot access 'no_name_in_PSI_3d19d79d_1ba9_4cd0_b7f5_b46aa3cd5d40'which is a supertype of'com.kevinabrioux.ping.databinding.ActivityStartingBinding'. Checkyour module classpath for missing or conflicting dependencies


这是我的错误出现的地方:
enter image description here
我在我的 gradle 中激活了 View 绑定(bind):
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.kevinabrioux.ping"
minSdkVersion 29
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
}
}

最佳答案

就我而言,这是因为我粘贴了 <layout>我的 XML 中的标签,我没有使用数据绑定(bind)。
删除 <layout>标签解决了这个问题。

<?xml version="1.0" encoding="utf-8"?>
<!-- Remove this layout tag and make LinearLayout the root -->
<layout xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".viewPresenter.webBrowser.WebBrowserFragment">
.
.
.
</LinearLayout>
</layout>

关于android - BViewBinding 的缺失或冲突依赖项的模块类路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64277407/

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