androidx android.support.v4.app.INotificationSideChannel $ Stub

时间:2018-07-08 13:41:42

标签: android androidx

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

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'

}

2 个答案:

答案 0 :(得分:4)

我将此添加到build.gradle中以消除错误

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

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

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

答案 1 :(得分:0)

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

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

source