From cd9e4ac27871f60078276a414c911e81f7d4f037 Mon Sep 17 00:00:00 2001 From: Sungyong An Date: Fri, 10 Jun 2022 01:36:18 +0900 Subject: [PATCH] Make :core-model to pure kotlin module --- core-model/build.gradle.kts | 13 +------------ core-model/src/main/AndroidManifest.xml | 20 -------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 core-model/src/main/AndroidManifest.xml diff --git a/core-model/build.gradle.kts b/core-model/build.gradle.kts index a413b36c4..34a905c6c 100644 --- a/core-model/build.gradle.kts +++ b/core-model/build.gradle.kts @@ -16,21 +16,10 @@ // TODO: Remove once https://youtrack.jetbrains.com/issue/KTIJ-19369 is fixed @Suppress("DSL_SCOPE_VIOLATION") plugins { - id("nowinandroid.android.library") - id("nowinandroid.android.library.jacoco") - id("kotlinx-serialization") - alias(libs.plugins.ksp) + id("kotlin") id("nowinandroid.spotless") } dependencies { - testImplementation(project(":core-testing")) - - implementation(libs.room.runtime) - implementation(libs.room.ktx) - ksp(libs.room.compiler) - - implementation(libs.kotlinx.coroutines.android) implementation(libs.kotlinx.datetime) - implementation(libs.kotlinx.serialization.json) } \ No newline at end of file diff --git a/core-model/src/main/AndroidManifest.xml b/core-model/src/main/AndroidManifest.xml deleted file mode 100644 index e04125b63..000000000 --- a/core-model/src/main/AndroidManifest.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - \ No newline at end of file