secant-android-wallet/spackle-android-lib/src/main/kotlin/co/electriccoin/zcash/spackle/ContextExt.kt

12 lines
308 B
Kotlin

@file:Suppress("ktlint:filename")
package co.electriccoin.zcash.spackle
import android.content.Context
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
suspend fun Context.getExternalFilesDirSuspend(type: String?) = withContext(Dispatchers.IO) {
getExternalFilesDir(type)
}