We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55a962 commit b0daf13Copy full SHA for b0daf13
1 file changed
smarttubetv/src/main/java/com/liskovsoft/smartyoutubetv2/tv/ui/main/MainApplication.java
@@ -81,6 +81,13 @@ private void setupGlobalExceptionHandler() {
81
}
82
83
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
84
+ if (Helpers.contains(e.getMessage(), "KatnissVoiceInteractionService")) {
85
+ // IllegalStateException: Not allowed to start service Intent { act=android.service.voice.VoiceInteractionService
86
+ // cmp=com.google.android.katniss/.search.serviceapi.KatnissVoiceInteractionService (has extras) }:
87
+ // app is in background uid UidRecord{40e7240 u0a19 CEM idle change:cached procs:1 seq(0,0,0)}
88
+ return;
89
+ }
90
+
91
applyCrashFixes(e);
92
//e = wrapWithAdditionalInfo(e);
93
0 commit comments