Join Slack
Powered by
<Does StrictMode.detectNetwork/Disk still apply in...
# stackoverflow
u
user
10/14/2018, 10:56 AM
Does StrictMode.detectNetwork/Disk still apply in the world of coroutine?
I am following
this official guide on coroutine
, and StrickMode keeps complaining that the disk read/write is being done on MainThread(isSignedIn uses SharedPreference), even though I have specified it to run on
Dispatchers.IO
. override fun onStart() { super.onStart() launch { val...
Open in Slack
Previous
Next