diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-02-27 21:26:21 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-02-27 21:26:21 +0530 |
commit | 3d47ecd698e582934cae7e54ecb42eb2fb4d8db9 (patch) | |
tree | 4101fe2944742b9f72d8ead4286aea4f74e5f08d /format-common/build.gradle.kts | |
parent | a6e845f461e1ed09d6ea34b6ecbf10327190e1b1 (diff) |
refactor(format-common): migrate to `uri-kmp` and convert to JVM library
Diffstat (limited to 'format-common/build.gradle.kts')
-rw-r--r-- | format-common/build.gradle.kts | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/format-common/build.gradle.kts b/format-common/build.gradle.kts index 487d0bc1..8382436c 100644 --- a/format-common/build.gradle.kts +++ b/format-common/build.gradle.kts @@ -5,27 +5,20 @@ @file:Suppress("DSL_SCOPE_VIOLATION", "UnstableApiUsage") plugins { - id("com.github.android-password-store.android-library") - id("com.github.android-password-store.kotlin-android") + kotlin("jvm") id("com.github.android-password-store.kotlin-library") } -android { - namespace = "app.passwordstore.format.common" - compileOptions { isCoreLibraryDesugaringEnabled = true } -} - dependencies { api(libs.kotlin.coroutines.core) api(libs.thirdparty.kotlinResult) - coreLibraryDesugaring(libs.android.desugarJdkLibs) implementation(projects.coroutineUtils) implementation(libs.androidx.annotation) implementation(libs.dagger.hilt.core) implementation(libs.thirdparty.commons.codec) + implementation(libs.thirdparty.uri) testImplementation(projects.coroutineUtilsTesting) testImplementation(libs.bundles.testDependencies) testImplementation(libs.kotlin.coroutines.test) - testImplementation(libs.testing.robolectric) testImplementation(libs.testing.turbine) } |