use coroutines in the mesh service to move processing out of the GUI thread

This commit is contained in:
geeksville 2020-04-04 14:37:44 -07:00
parent 1e34e77fe9
commit 83c1bfda69
5 changed files with 77 additions and 34 deletions

View file

@ -19,3 +19,8 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
# per https://medium.com/@kenkyee/android-kotlin-coroutine-best-practices-bc033fed62e7
-keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
-keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
-keepclassmembernames class kotlinx.** { volatile <fields>; }