在使用androidx和数据绑定添加循环视图后,我正在使用android jetback,并开始显示实时数据
android.support.v4.app.INotificationSideChannel $存根.
到目前为止,我已经尝试了很多解决方案,但没有任何帮助.当我不使用任何支持库时,为什么会显示此错误,我该怎么做才能解决它?
更新:
在回顾我的步骤后,我删除了数据绑定,每个工作正常,任何人都可以解释
这是我的傻瓜:
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'
}
解决方法:
我将此添加到build.gradle以删除错误
configurations {
implementation {
exclude group: 'com.android.support', module: 'support-v4'
}
}
不幸的是,我预测你会看到一个新的错误(在运行时),如下所示:
java.lang.NoClassDefFoundError:解析失败:
我相信这是一个AndroidX问题,其中包含许多尚未更新以支持AndroidX的支持库.