DeadSystemException: Difference between revisions
Jump to navigation
Jump to search
m (minor grammar edit) |
(Improve page content and history) |
||
Line 1: | Line 1: | ||
An Android error that is thrown when system is dead. | An [https://developer.android.com/reference/android/os/DeadSystemException Android error] that is thrown when the system is dead. | ||
This error can be | This error can be sometimes be thrown on certain devices randomly when using Aliucord's [https://github.com/rushiiMachine/aliucord-plugins/tree/master/AudioPlayer AudioPlayer] plugin. | ||
Nobody knows how or why AudioPlayer is causing that error, because the system crashes into recovery afterwards<ref>{{cite web|title=Aliucord Discord message|url=https://discord.com/channels/811255666990907402/811261478875299840/924777944671461417}}</ref> and the logs are only accessible with root.<ref>{{cite web|title=Aliucord Discord message|url=https://discord.com/channels/811255666990907402/811261478875299840/924418278225485845}}</ref> | |||
{{codesample|lang=java|title=A sample DeadSystemException| | |||
java.lang.RuntimeException: android.os.DeadSystemException | |||
at android.view.ViewRootImpl.systemGestureExclusionChanged(ViewRootImpl.java:4671) | |||
at android.view.ViewRootImpl$ViewRootHandler.handleMessage(ViewRootImpl.java:5582) | |||
at android.os.Handler.dispatchMessage(Handler.java:106) | |||
at android.os.Looper.loop(Looper.java:233) | |||
at android.app.ActivityThread.main(ActivityThread.java:8035) | |||
at java.lang.reflect.Method.invoke(Native Method) | |||
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:631) | |||
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:978) | |||
Caused by: android.os.DeadSystemException | |||
... 8 more | |||
}} | |||
==Notes== | |||
<references/> |
Revision as of 16:58, 8 March 2024
An Android error that is thrown when the system is dead.
This error can be sometimes be thrown on certain devices randomly when using Aliucord's AudioPlayer plugin. Nobody knows how or why AudioPlayer is causing that error, because the system crashes into recovery afterwards[1] and the logs are only accessible with root.[2]
java.lang.RuntimeException: android.os.DeadSystemException
at android.view.ViewRootImpl.systemGestureExclusionChanged(ViewRootImpl.java:4671)
at android.view.ViewRootImpl$ViewRootHandler.handleMessage(ViewRootImpl.java:5582)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:233)
at android.app.ActivityThread.main(ActivityThread.java:8035)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:631)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:978)
Caused by: android.os.DeadSystemException
... 8 more