Add support for proxies - 3/3

This commit is contained in:
Rahul Patel
2023-10-22 14:34:12 +05:30
parent f19631ad6a
commit 47f1edc922
4 changed files with 6 additions and 3 deletions

View File

@@ -23,7 +23,6 @@ import android.os.Handler
import android.os.Looper
fun runAsync(action: () -> Unit) = Thread(Runnable(action)).start()
fun runAsyncResult(action: () -> Boolean) = Thread { action() }.apply { start() }
fun runOnUiThread(action: () -> Unit) {
when {