-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] #91 kotlin serialization 디펜던시 코드 변경
- Loading branch information
Showing
4 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
object Plugins { | ||
object ClassPathPlugins { | ||
const val gradle = "com.android.tools.build:gradle:${Versions.gradleVersion}" | ||
const val kotlinGradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlinVersion}" | ||
// const val kotlinSerialization = "org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlinVersion}" | ||
const val hilt = "com.google.dagger:hilt-android-gradle-plugin:${Versions.hiltVersion}" | ||
const val oss = "com.google.android.gms:oss-licenses-plugin:${Versions.ossPluginVersion}" | ||
} | ||
|
||
object ProjectPlugins { | ||
const val ktlint = "org.jlleitschuh.gradle.ktlint" | ||
const val kotlinSerialization = "org.jetbrains.kotlin.plugin.serialization" | ||
} | ||
|
||
object ModulePlugins { | ||
const val androidApplication = "com.android.application" | ||
const val kotlinAndroid = "org.jetbrains.kotlin.android" | ||
const val kotlinKapt = "kotlin-kapt" | ||
const val kotlinParcelize = "kotlin-parcelize" | ||
const val kotlinSerialization = "kotlinx-serialization" | ||
const val hilt = "dagger.hilt.android.plugin" | ||
const val oss = "com.google.android.gms.oss-licenses-plugin" | ||
const val ktlint = "org.jlleitschuh.gradle.ktlint" | ||
} | ||
} |