Skip to content

Commit 02b1043

Browse files
committed
Add SealedX dependencies
1 parent 2781700 commit 02b1043

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ object Versions {
2020
internal const val APP_STARTUP = "1.1.1"
2121
internal const val LIFECYCLE = "2.6.0-alpha01"
2222
internal const val ROOM = "2.4.2"
23+
internal const val SEALEDX = "1.0.0"
2324

2425
internal const val LANDSCAPIST_GLIDE = "1.6.0"
2526
internal const val ACCOMPANIST = "0.25.0"
@@ -86,6 +87,8 @@ object Dependencies {
8687
const val roomRuntime = "androidx.room:room-runtime:${Versions.ROOM}"
8788
const val roomKtx = "androidx.room:room-ktx:${Versions.ROOM}"
8889
const val roomCompiler = "androidx.room:room-compiler:${Versions.ROOM}"
90+
const val sealedXCore = "com.github.skydoves:sealedx-core:${Versions.SEALEDX}"
91+
const val sealedXProcessor = "com.github.skydoves:sealedx-processor:${Versions.SEALEDX}"
8992

9093
const val okHttp = "com.squareup.okhttp3:okhttp:${Versions.OKHTTP}"
9194
const val retrofit = "com.squareup.retrofit2:retrofit:${Versions.RETROFIT}"

core-data/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ dependencies {
4343
api(Dependencies.hiltAndroid)
4444
kapt(Dependencies.hiltCompiler)
4545

46-
api("com.github.skydoves:sealedx-core:1.0.1-SNAPSHOT")
47-
ksp("com.github.skydoves:sealedx-processor:1.0.1-SNAPSHOT")
46+
implementation(Dependencies.sealedXCore)
47+
ksp(Dependencies.sealedXProcessor)
4848
}

0 commit comments

Comments
 (0)