在android studio的最新更新之后,缺少数据绑定依赖项。我收到此错误消息:

ERROR: Failed to resolve: androidx.databinding:databinding-runtime:3.3.2
Show in Project Structure dialog
Affected Modules: app


ERROR: Failed to resolve: androidx.databinding:databinding-adapters:3.3.2
Show in Project Structure dialog
Affected Modules: app

这是我的应用程序的build.gradle:
apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.example.soulfetch2"
    minSdkVersion 21
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
dataBinding {
    enabled = true
}

compileOptions {
    sourceCompatibility 1.8
    targetCompatibility 1.8
}
}

dependencies {
def acraVersion = '5.1.3'
implementation "ch.acra:acra-mail:$acraVersion"
implementation "ch.acra:acra-dialog:$acraVersion"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0-alpha02'
implementation 'androidx.core:core-ktx:1.1.0-alpha04'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1'
implementation 'androidx.preference:preference:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation "androidx.lifecycle:lifecycle-runtime:2.0.0"
dependencies {
    def nav_version = "1.0.0-rc02"

    implementation "android.arch.navigation:navigation-fragment-ktx:$nav_version"
    implementation "android.arch.navigation:navigation-ui-ktx:$nav_version"
}
}

我试图添加这些依赖项,但没有效果。
implementation 'androidx.databinding:databinding-adapters:3.3.2'
implementation 'androidx.databinding:databinding-runtime:3.3.2'

这里的另一个问题是通过将它们添加到gradle.properties中来解决的,但在我的示例中,这会导致另一个错误:
android.enableExperimentalFeatureDatabinding = true
android.databinding.enableV2=true

知道我要做什么吗?

最佳答案

3.3.2
梯度4.10.1
插件3.3.2
我也有同样的问题,通过以下方法解决:
转到项目非源文件并打开.idea libraries文件夹
从该文件夹中删除所有数据绑定依赖项。
重建你的应用程序,应该可以!

07-27 19:21