gpt4 book ai didi

android - 为什么我在创建/更新通知时会收到 RemoteServiceException?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:14:16 28 4
gpt4 key购买 nike

背景

我有一个业余时间开发的应用程序(here),我尝试尽可能多地处理崩溃(我讨厌看到崩溃报告!)。

问题

最近的一次崩溃似乎很新,是这个:

android.app.RemoteServiceException: 
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1768)
at android.os.Handler.dispatchMessage (Handler.java:106)
at android.os.Looper.loop (Looper.java:164)
at android.app.ActivityThread.main (ActivityThread.java:6494)
at java.lang.reflect.Method.invoke (Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:438)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:807)

这就是我所看到的......

它似乎只发生在 Android 8.1 上。由于该应用程序必须非常受欢迎,我非常确定它仍然只会出现在 Android 8.1 上。

我尝试过的

在网上搜索,我能找到类似的崩溃,但在所有这些崩溃中,他们都有更多的线索。

所以我试着记忆一下我最近做了哪些改变。唯一的变化是将支持库迁移到 Android-X。其余的变化非常小,我不认为它们是造成这种情况的原因。

因为我没有任何进一步的线索,所以我决定报告 Android-X 部分 here (如果需要,那里有更多信息),因为我不认为这是因为我试图解决问题,而且它看起来非常具体。

后来我集成了 Firebase Crashlytics,并在每个这样的日志上方得到了这个微小的额外线索:

Fatal Exception: android.app.RemoteServiceException
Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification(channel=channel_id__app_monitor pri=0 contentView=null vibrate=null sound=null defaults=0x0 flags=0x40 color=0x00000000 category=service vis=SECRET)

这很奇怪,因为我确实正确打开了服务,否则它根本无法工作,特别奇怪的是,这只发生在 Android 8.1 上,而不是在具有相同要求的 8.0 上如何启动前台服务。

这个有问题的通知是关于我用来全局监控应用程序相关事件的前台服务(仅来自 Android O,它有 BroadcastReceivers 的限制)。它在 2 个案例上得到更新:

  1. 区域设置更改
  2. 勾选某个对话框中某个时刻出现的复选框(点击对话框后)。

当我对这两个进行测试时,它们在 Android 8.0 和 8.1 上都运行良好。

这是创建/更新通知的代码:

    @JvmStatic
fun getUpdatedAppMonitorNotification(context: Context): Notification {
val builder = Builder(context, context.getString(R.string.channel_id__app_monitor)).setSmallIcon(R.drawable.ic_stat_app_icon)//
.setPriority(Notification.PRIORITY_DEFAULT).setCategory(Notification.CATEGORY_SERVICE)
builder.setVisibility(NotificationCompat.VISIBILITY_SECRET)
builder.setShowWhen(false)
if (!PreferenceUtil.getBooleanPref(context, R.string.pref__avoid_showing_app_monitor_notification_dialog, false))
builder.setContentTitle(context.getString(R.string.app_monitor__notification_title))
if (VERSION.SDK_INT < VERSION_CODES.P) {
val mainIntent = Intent(context, MainActivity::class.java)
.putExtra(MainActivity.EXTRA_OPENED_FROM_NOTIFICATION, true)
builder.setContentIntent(PendingIntent.getActivity(context, 0, mainIntent, PendingIntent.FLAG_UPDATE_CURRENT))
} else {
val intent = Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS)
.putExtra(Settings.EXTRA_APP_PACKAGE, context.packageName)
.putExtra(Settings.EXTRA_CHANNEL_ID, context.getString(R.string.channel_id__app_monitor))
val pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)
builder.setContentIntent(pendingIntent)
}
return builder.build()
}

以及我在服务中使用的代码:

override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
NotificationId.initNotificationsChannels(this)
val notification = getUpdatedAppMonitorNotification(this)
startForeground(NotificationId.APP_MONITOR, notification)
...
return super.onStartCommand(intent, flags, startId)
}

这是我从其他地方调用的代码,用于更新通知:

    @JvmStatic
fun updateAppMonitorNotification(context: Context) {
if (VERSION.SDK_INT < VERSION_CODES.O)
return
val notification = AppMonitorService.getUpdatedAppMonitorNotification(context)
val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
notificationManager.notify(NotificationId.APP_MONITOR, notification)
}

问题

  1. 为什么会发生?是关于 Android X 的吗?还是通知 build 有问题?

  2. 为什么它只出现在 Android 8.1 上?

最佳答案

好吧,我仍然不知道为什么会发生这种情况,但我找到了一个解决方法,就是让服务完成其通知的所有更新,只需通过 安全地调用它context.startForegroundService 函数。

到目前为止,通过使用它,我仍然没有看到任何此类崩溃。

关于android - 为什么我在创建/更新通知时会收到 RemoteServiceException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51222082/

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