[core] Prevent binder from dying
This commit is contained in:
parent
db18cfcb60
commit
2e58c6a3e7
|
|
@ -62,6 +62,10 @@ public class ServiceManager {
|
|||
Log.e(TAG, Log.getStackTraceString(e));
|
||||
}
|
||||
|
||||
Thread.setDefaultUncaughtExceptionHandler((t, e)->{
|
||||
Log.e(TAG, Log.getStackTraceString(e));
|
||||
});
|
||||
|
||||
//noinspection InfiniteLoopStatement
|
||||
while (true) {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue