4

在使用 androidx 和数据绑定添加回收视图并开始显示实时数据后,我正在使用 android jetback android.support.v4.app.INotificationSideChannel$Stub。到目前为止,我已经尝试了很多解决方案,但没有任何帮助。为什么当我不使用任何支持库时它会显示此错误,我该怎么做才能解决它?更新:在追溯我的步骤后,我删除了数据绑定并且一切正常,任何人都可以解释这是我的 gradle:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'


android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.example.ahmedmubarak.pixeapp"
    minSdkVersion 19
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"

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

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
implementation 'androidx.recyclerview:recyclerview:1.0.0-beta01'
implementation 'androidx.cardview:cardview:1.0.0-beta01'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-beta01'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.android.volley:volley:1.0.0'
implementation 'com.squareup.picasso:picasso:2.71828'

}
4

2 回答 2

4

我添加了这个以build.gradle消除错误

configurations {
    implementation {
        exclude group: 'com.android.support', module: 'support-v4'
    }
}

不幸的是,我预测您会看到一个新错误(在运行时),如下所示: java.lang.NoClassDefFoundError: Failed resolution of:

我相信这是一个 AndroidX 问题,许多支持库尚未更新以支持 AndroidX。

于 2018-07-18T02:45:56.307 回答
0

我有一个类似的问题。就我而言,这是因为我使用的是 Glide 库和 androidx。这个解决方案对我有用:

  1. 将 enableJetifier 值设置为true
  2. 使用 Gradle 版本 4.9 将 Gradle 构建工具更新到 3.3.0-alpha08

资源

于 2018-09-09T06:27:12.420 回答