ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

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

2019-08-27 22:23:56  阅读:812  来源: 互联网

标签:android android-gradle dependencies android-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文件夹
从此文件夹中删除所有数据绑定依赖项.

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

标签:android,android-gradle,dependencies,android-databinding
来源: https://codeday.me/bug/20190827/1745062.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有