gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:50 26 4
gpt4 key购买 nike

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

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。

关于androidx android.support.v4.app.INotificationSideChannel$Stub,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51232581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com