<Does StrictMode.detectNetwork/Disk still apply in...
# stackoverflow
u
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...