Kotlin Kapt 失败 - 只能看到 android api 级别 1 来源

Kotlin Kapt failing - only sees android api level 1 sources

我看到一些奇怪的行为导致 :app:kaptQaDebugKotlin 在尝试升级到 android gradle 插件 3.0 时失败。

版本

知道发生了什么事吗?看起来 kapt 任务以某种方式使用了 android api 级别 1 源,我不确定如何解决

根据@pentarex

error was coming from external library logback-android-classic, i had to exclude group: 'com.google.android', module: 'android

implementation(libs.logbackAndroidClassic){
    exclude group: 'com.google.android', module: 'android'
}