Skip to content

Commit 11859b2

Browse files
committed
[BOOK-378] chore: compose-stability-analyzer plugin 컨벤션 플러그인 내에 추가
1 parent b3df085 commit 11859b2

File tree

6 files changed

+5
-3
lines changed

6 files changed

+5
-3
lines changed

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ plugins {
88
alias(libs.plugins.booket.android.application.compose)
99
alias(libs.plugins.booket.android.hilt)
1010
alias(libs.plugins.booket.android.firebase)
11-
alias(libs.plugins.compose.stability.analyzer)
1211
}
1312

1413
android {

build-logic/src/main/kotlin/AndroidLibraryComposeConventionPlugin.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class AndroidLibraryComposeConventionPlugin : Plugin<Project> {
1212
applyPlugins(
1313
Plugins.ANDROID_LIBRARY,
1414
Plugins.KOTLIN_COMPOSE,
15+
Plugins.COMPOSE_STABILITY_ANALYZER,
1516
)
1617

1718
extensions.configure<LibraryExtension> {

build-logic/src/main/kotlin/com/ninecraft/booket/convention/Plugins.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ object Plugins {
1111
const val ANDROID_APPLICATION = "com.android.application"
1212
const val ANDROID_LIBRARY = "com.android.library"
1313

14+
const val COMPOSE_STABILITY_ANALYZER = "com.github.skydoves.compose.stability.analyzer"
15+
1416
const val HILT = "dagger.hilt.android.plugin"
1517
const val KSP = "com.google.devtools.ksp"
1618
const val GOOGLE_SERVICES = "com.google.gms.google-services"

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
alias(libs.plugins.gradle.dependency.handler.extensions)
66
alias(libs.plugins.kotlin.detekt)
77
alias(libs.plugins.kotlin.ktlint)
8+
alias(libs.plugins.compose.stability.analyzer) apply false
89
alias(libs.plugins.kotlin.parcelize) apply false
910
alias(libs.plugins.kotlin.android) apply false
1011
alias(libs.plugins.kotlin.compose) apply false

core/common/src/main/kotlin/com/ninecraft/booket/core/common/utils/ErrorType.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ sealed interface ErrorType {
77
data object NetworkError : ErrorType
88
data object ServerError : ErrorType
99
}
10-

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ androidx-compose-material3 = "1.4.0-alpha18"
2424
compose-stable-marker = "1.0.6"
2525
compose-effects = "0.1.1"
2626
compose-shadow = "2.0.4"
27-
compose-stability-analyzer = "0.2.20"
27+
compose-stability-analyzer = "0.3.0"
2828

2929
## Kotlin Symbol Processing
3030
ksp = "2.2.0-2.0.2"

0 commit comments

Comments
 (0)