diff options
author | Aditya Wasan <adityawasan55@gmail.com> | 2022-03-23 18:18:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 12:48:06 +0000 |
commit | 9c9616d04752e5b47966917f8648fdbb62e05ba9 (patch) | |
tree | 25ec60c1fcbe1b8e47e387d3c766fbfa06370b95 /crypto-pgpainless/build.gradle.kts | |
parent | cf3ae17b8461d9c94e38760e582950f7f26da855 (diff) |
fix: ignore `CancellationException` in suspend functions (#1794)
* fix: ignore `CancellationException` in suspend functions
Signed-off-by: Aditya Wasan <adityawasan55@gmail.com>
* build(coroutine-utils): use `api` instead of `implementation`
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'crypto-pgpainless/build.gradle.kts')
-rw-r--r-- | crypto-pgpainless/build.gradle.kts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto-pgpainless/build.gradle.kts b/crypto-pgpainless/build.gradle.kts index ee55f349..b3ace3d9 100644 --- a/crypto-pgpainless/build.gradle.kts +++ b/crypto-pgpainless/build.gradle.kts @@ -10,6 +10,7 @@ plugins { dependencies { api(projects.cryptoCommon) + implementation(projects.coroutineUtils) implementation(libs.androidx.annotation) implementation(libs.dagger.hilt.core) implementation(libs.kotlin.coroutines.core) |