With the 3.5.1 app we see 44% crashes with this detail. Looks like mostly Android 16 devices trigger this crash.
According to Gemini:
"Summary The crash, identified as an android.app.RemoteServiceException$ForegroundServiceDidNotStartInTimeException, indicates that your application attempted to start a foreground service but failed to call startForeground() within a strict time limit enforced by the Android system. This typically occurs on newer Android versions (Android 12 and above) to prevent applications from running long-running background tasks without providing a visible notification to the user. The system initiates the service but then terminates it because the startForeground() method was not invoked promptly, usually within 5-10 seconds of the service starting."
Exception android.app.RemoteServiceException$ForegroundServiceDidNotStartInTimeException:
at android.app.ActivityThread.generateForegroundServiceDidNotStartInTimeException (ActivityThread.java:2675)
at android.app.ActivityThread.throwRemoteServiceException (ActivityThread.java:2643)
at android.app.ActivityThread.-$$Nest$mthrowRemoteServiceException (Unknown Source)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:3068)
at android.os.Handler.dispatchMessage (Handler.java:110)
at android.os.Looper.loopOnce (Looper.java:273)
at android.os.Looper.loop (Looper.java:363)
at android.app.ActivityThread.main (ActivityThread.java:10060)
at java.lang.reflect.Method.invoke
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:632)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:975)