微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

最新Android Studio Update 3.3.2之后未解决的DataBinding依赖关系

Android Studio的最新更新之后,缺少DataBinding依赖项.我收到此错误消息:

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

这是我的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

知道我要做什么吗?

解决方法:

AS 3.3.2
Gradle 4.10.1
插件3.3.2

我有同样的问题并通过执行以下操作解决了它:

转到项目非源文件并打开.idea libraries文件
从此文件夹中删除所有数据绑定依赖项.

重建你的应用程序,应该没问题!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐