我有很多异常的逮捕,但我不明白
这怎么可能,因为不了解
问题。
这是异常逮捕的日志:



其他信息是该问题更多地显示在
装有Android:7或更高版本的设备。

提前致谢

最佳答案

我不确定我的问题是否和这个问题完全一样。我开始像这样在Google Play上获取崩溃报告。例如

android.app.RemoteServiceException:
  at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1881)
  at android.os.Handler.dispatchMessage (Handler.java:105)
  at android.os.Looper.loop (Looper.java:164)
  at android.app.ActivityThread.main (ActivityThread.java:6938)
  at java.lang.reflect.Method.invoke (Native Method)
  at com.android.internal.os.Zygote$MethodAndArgsCaller.run (Zygote.java:327)
  at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1374)

我开始在构建189周围看到此错误,并且在185之前没有看到此错误

所以this github checkin still did not have it

this github checkin had the bug for sure

我确实做了一些与前台服务有关的更改,所以我怀疑我的问题与

Issue Tracker: Context.startForegroundService() did not then call Service.startForeground

Context.startForegroundService() did not then call Service.startForeground()

- - 编辑 - -

我的问题确实是我正在调用startForegroundService,因为我的应用程序执行此操作时它不在后台,所以不需要。

确定问题已由this commit解决

10-08 18:04