r-z
08/20/2017, 7:31 PMkingsley
08/20/2017, 9:46 PMcalled from wrong thread exception
, and the coroutine in async terminates immediately. And with async
, the error will only propagate if you use the result of the coroutine (via await
and co)
To solve this, you need to make sure your UI is modified only from the UI thread.r-z
08/21/2017, 3:19 PMkingsley
08/21/2017, 3:54 PM