为什么我无法导入 'androidx.core.app.NotificationChannelCompat'?
Why can not I import 'androidx.core.app.NotificationChannelCompat'?
我正在使用 androidx.core.app.NotificationChannel
和 androidx.core.app.NotificationChannelCompat
根据(Androidx API 参考)[https:// developer.android.google.cn/reference/androidx/core/app/NotificationChannelCompat].
但即使我在 build.gradle 文件中添加 implementation "androidx.core:core:1.3.1
,Android Studio 仍提示我无法解析符号 NotificationChannelCompat
。
为什么?我不想使用SDK版本的条件语句来填充我的源代码。
它会解决 NotificationChannelCompat
如果你改变:
implementation "androidx.core:core:1.3.2"
到
implementation "androidx.core:core:1.5.0-alpha04"
最新版本:https://developer.android.com/jetpack/androidx/releases/core
这是提交,它丢失了:-) https://android-review.googlesource.com/c/platform/frameworks/support/+/1360061
我正在使用 androidx.core.app.NotificationChannel
和 androidx.core.app.NotificationChannelCompat
根据(Androidx API 参考)[https:// developer.android.google.cn/reference/androidx/core/app/NotificationChannelCompat].
但即使我在 build.gradle 文件中添加 implementation "androidx.core:core:1.3.1
,Android Studio 仍提示我无法解析符号 NotificationChannelCompat
。
为什么?我不想使用SDK版本的条件语句来填充我的源代码。
它会解决 NotificationChannelCompat
如果你改变:
implementation "androidx.core:core:1.3.2"
到
implementation "androidx.core:core:1.5.0-alpha04"
最新版本:https://developer.android.com/jetpack/androidx/releases/core
这是提交,它丢失了:-) https://android-review.googlesource.com/c/platform/frameworks/support/+/1360061