File tree Expand file tree Collapse file tree 6 files changed +5
-3
lines changed
build-logic/src/main/kotlin
com/ninecraft/booket/convention
core/common/src/main/kotlin/com/ninecraft/booket/core/common/utils Expand file tree Collapse file tree 6 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
1413android {
Original file line number Diff line number Diff 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 > {
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -7,4 +7,3 @@ sealed interface ErrorType {
77 data object NetworkError : ErrorType
88 data object ServerError : ErrorType
99}
10-
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ androidx-compose-material3 = "1.4.0-alpha18"
2424compose-stable-marker = " 1.0.6"
2525compose-effects = " 0.1.1"
2626compose-shadow = " 2.0.4"
27- compose-stability-analyzer = " 0.2.20 "
27+ compose-stability-analyzer = " 0.3.0 "
2828
2929# # Kotlin Symbol Processing
3030ksp = " 2.2.0-2.0.2"
You can’t perform that action at this time.
0 commit comments