refact(utils): Check current thread and dispatch only if needed

This commit is contained in:
Martin Bektchiev
2019-05-08 14:22:06 +03:00
parent c60f74d4eb
commit a2ef6cbb4b
5 changed files with 29 additions and 5 deletions

View File

@@ -373,7 +373,7 @@ Please ensure you have your manifest correctly configured with the FileProvider.
}
}
export function executeOnMainThread(func: () => void) {
export function dispatchToMainThread(func: () => void) {
new android.os.Handler(android.os.Looper.getMainLooper())
.post(new java.lang.Runnable({
run: func