Change @Background Dispatcher from Dispatchers.Default to Dispatchers.IO

Bug: 231957192
Change-Id: Ie57de3db8cca53d90a21dd29c83d7e5ea92d4eaf
This commit is contained in:
Mark Renouf
2022-08-04 15:06:19 +00:00
parent 930b8b78b6
commit 3f8163f234

View File

@@ -37,5 +37,5 @@ object CoroutinesModule {
@Provides
@SysUISingleton
@Background
fun bgDispatcher(): CoroutineDispatcher = Dispatchers.Default
fun bgDispatcher(): CoroutineDispatcher = Dispatchers.IO
}