问题描述
在 coroutine worker 上发生以下崩溃,崩溃仅发生在部分三星、Vivo 和 Oppo 设备上,并且仅在 Android 10 上发生
Fatal Exception: android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground(): ServiceRecord{2dcabaa u0 `app_id_hidden`/androidx.work.impl.foreground.SystemForegroundService}
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2159)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:230)
at android.app.ActivityThread.main(ActivityThread.java:7752)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:526)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1034)
worker 上的 doWork
函数实现为,其中 init()
函数完成我的工作。
override suspend fun doWork(): Result {
setForeground(createForegroundInfo())
return init()
}
private fun init() {
//implementation hidden
}
private fun createForegroundInfo(): ForegroundInfo {
val notificationId = 1
return ForegroundInfo(notificationId,createNotification())
}
private fun createNotification(): Notification {
val context = applicationContext
val builder = NotificationCompat.Builder(context,ChannelType.NOTIFICATION_CHANNEL_GENERAL)
.setContentTitle("Message")
.setSmallIcon(R.drawable.ic_notif_small)
.setongoing(true)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
createNotificationChannel(
ChannelType.NOTIFICATION_CHANNEL_GENERAL,ChannelType.NOTIFICATION_CHANNEL_GENERAL
).also {
builder.setChannelId(it.id)
}
}
return builder.build()
}
@TargetApi(Build.VERSION_CODES.O)
private fun createNotificationChannel(
channelId: String,name: String
): NotificationChannel {
return NotificationChannel(
channelId,name,notificationmanager.IMPORTANCE_LOW
).also { channel ->
notificationmanager.createNotificationChannel(channel)
}
}
我没有使用任何位置、麦克风或任何默认的前台服务类型。这是一个做一些工作的普通工人。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)