Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit af1de2f

Browse files
committed
Remove dep of kotlin-parcelize
1 parent 423d675 commit af1de2f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

buildSrc/src/main/kotlin/Extensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ inline fun <reified T : BaseExtension> Project.setupCommon(
158158
}
159159
dependencies {
160160
implementations(Libs.hilt, *Libs.room, *Libs.moshi)
161-
kapts(Libs.moshiCompiler, Libs.roomCompiler, Libs.hiltCompiler)
161+
kapts(Libs.hiltCompiler, Libs.roomCompiler, Libs.moshiCompiler)
162162
}
163-
applyPlugins(Plugins.kotlinParcelize, Plugins.hilt)
163+
applyPlugins(Plugins.hilt)
164164
kapt {
165165
correctErrorTypes = true
166166
arguments {

buildSrc/src/main/kotlin/Libs.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const val ktlintVersion = "0.44.0"
2323
object Plugins {
2424
const val kotlinAndroid = "kotlin-android"
2525
const val kotlinKapt = "kotlin-kapt"
26-
const val kotlinParcelize = "kotlin-parcelize"
2726
const val androidLibrary = "com.android.library"
2827
const val androidApplication = "com.android.application"
2928
const val hilt = "com.google.dagger.hilt.android"

0 commit comments

Comments
 (0)