- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
最佳答案
在 Android O 中,我们有一个新的背景限制。当您尝试 startService() 时,您将得到 IlleagalStateException,所以现在您应该使用 startForegroundService(),但是如果您通过这种新方法启动服务,您将得到如屏幕截图所示的错误。为避免此异常,您有 5 秒的时间在 startForegroundService() 之后创建 startForeground(),以通知用户您正在后台工作。
所以,在 Android O 中 where 是唯一的一种方式:
context.startForegroundService(intent)
然后在服务 onCreate() 中做类似的事情:
startForeground(1, new Notification());
更新因此,正如我所假设的,一些制造商在 Android N 上向后移植了这些新的背景限制,这就是为什么您可以在 Android N 中获得相同的异常。
关于android - RemoteServiceException Context.startForegroundService() 然后没有调用 Service.startForeground(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46375444/
我在 Google 的 Play Store 上有一个应用程序,最近我更新了该应用程序。 当我测试时,一切都很好,但某些设备 API 28 及更高版本在 Android Vitals 中显示此崩溃。
我们有很多针对运行 Android 6 和 7 的小米手机的崩溃: Fatal Exception: android.app.RemoteServiceException: Bad notificat
我收到 RemoteServiceException。如果我只是在 Activity 的 onResume() 中调用以下内容,就会发生这种情况: NotificationManager mNoti
背景 我有一个业余时间开发的应用程序(here),我尝试尽可能多地处理崩溃(我讨厌看到崩溃报告!)。 问题 最近的一次崩溃似乎很新,是这个: android.app.RemoteServiceExce
有时我的应用程序会遇到这种异常: Fatal Exception: android.app.RemoteServiceException: Bad notification posted from p
在没有任何明显原因的情况下,搭载 Android 11 的小米手机开始出现在 crashlytics 日志中。通知发生了一些事情。我们不会做任何太具体的事情,并且在其他 Android 11 设备上一
我开始收到来自运行 Android 11 的 MIUI 11 设备的奇怪崩溃(到目前为止只有 Mi 10 和 Mi 10 lite 5G)。我认为这是一个平台问题,在我的应用程序中没有任何内容,因为它
我有一个 android.app.RemoteServiceException (RSE) 但没有任何消息。 我在 Google Play 控制台上收到以下崩溃报告。当我因通知或广播错误而收到 RSE
我在 Play 商店中有一个应用程序,我会定期使用 android 工具更新和依赖项更新对其进行更新,仅此而已。我只是确保它可以编译并使用最新的 Android 平台和支持库。 我不添加任何功能或任何
我从 Device Monitor 得到以下异常输出: //FATAL EXCEPTION: main //Process: com.xxx.yyy, PID: 11584 //android.app
我正在尝试使用下面的代码在我的应用中创建一个通知媒体 Controller ,该代码在除 华为 P8 Lite 和 Android 5.0 之外的所有设备上都能正常工作,我从 Firebase 测试实
我正在尝试启动前台服务,如下所示: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel chan
我尝试使用下面的代码在我的应用中创建一个通知媒体 Controller ,该代码在除 华为 P8 Lite 和 Android 5.0 之外的所有设备上都能正常工作,我从 Firebase 测试实验室
我在 Android 8.0 和 Android 7.x 中都通过 Fabric.io 收到了这个错误报告。 由于不仅仅是特定类失败,我不知道如何处理它们。 如果你有任何想法,请帮助我。 最佳答案 在
我的真实用户在 Crashlytics 上发布了数百次此异常,而且我无法在 5 种不同的设备上重现一次 崩溃日志 Fatal Exception: android.app.RemoteServiceE
我在崩溃日志中看到以下异常: android.app.RemoteServiceException: Bad notification posted from package com.my.packa
我在 Android 中发出此类通知,但不知何故收到以下类型的异常。请帮我解决这个问题。我为 Root View 使用了 64dp 的高度,这是通知的自定义 View 。然后使用 notificati
android.app.RemoteServiceException: Bad notification for startForeground: java.util.ConcurrentModifi
我在崩溃日志中看到以下异常: android.app.RemoteServiceException: Bad notification posted from package com.my.packa
我在运行 Android 5.1 的特定华为设备 (HUAWEI TIT-L01) 上发生崩溃 我使用 Google 找不到很多信息 堆栈跟踪: android.app.RemoteServiceEx
我是一名优秀的程序员,十分优秀!