我有一个工作了几年的业余时间应用程序(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上出现。
在Internet上搜索,我可以找到类似的崩溃,但是在所有崩溃中,它们都有更多线索。
因此,我试图回顾我最近所做的更改。唯一的变化是将支持库迁移到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)。更新了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)
}
为什么会发生?关于Android X吗?通知构建有问题吗?
为什么仅在Android 8.1上出现?
答案 0 :(得分:0)
好的,我仍然不知道为什么会这样,但是我发现的解决方法是让服务通过安全地通过{{1 }}功能。
到目前为止,通过使用它,我仍然看不到任何此类崩溃。
答案 1 :(得分:0)
我认为这是问题所在
.putExtra(Settings.EXTRA_CHANNEL_ID, context.getString(R.string.channel_id__app_monitor))
您需要输入(不变的)频道ID,而不是本地化的频道名称
如果您能够重现此内容,还可以在错误报告中查找 AppSettings。* [您的应用] ,然后查看是否有一个ID与您要尝试匹配的频道使用。