diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-01-11 17:57:49 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-01-11 17:57:49 +0530 |
commit | baa197bd0f8bab01785f889ecd0fec05406d382c (patch) | |
tree | 6d2d25f3810e273844a7a09855557cb026ec6289 /format-common | |
parent | d6c55910408b2528d90a4f656bcc18c1780ab21d (diff) |
fix(deps): avoid classpath clashes due to `androidx.annotation`
Diffstat (limited to 'format-common')
-rw-r--r-- | format-common/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/format-common/build.gradle.kts b/format-common/build.gradle.kts index 34b5c69e..487d0bc1 100644 --- a/format-common/build.gradle.kts +++ b/format-common/build.gradle.kts @@ -18,9 +18,9 @@ android { dependencies { api(libs.kotlin.coroutines.core) api(libs.thirdparty.kotlinResult) - compileOnly(libs.androidx.annotation) coreLibraryDesugaring(libs.android.desugarJdkLibs) implementation(projects.coroutineUtils) + implementation(libs.androidx.annotation) implementation(libs.dagger.hilt.core) implementation(libs.thirdparty.commons.codec) testImplementation(projects.coroutineUtilsTesting) |