Skip to content

Commit 81ab12d

Browse files
committed
gradle/#26 : 중복 코드 제거
1 parent fa737c0 commit 81ab12d

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ dependencies {
1717

1818
implementation(libs.androidx.activity.compose)
1919
implementation(libs.androidx.navigation.runtime.ktx)
20-
implementation(libs.navigation.compose)
2120
}

build-logic/src/main/java/com/yapp/ComposeAndroid.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ internal fun Project.configureCompose() {
2020
add("implementation", libs.findLibrary("androidx.material3").get())
2121
add("implementation", libs.findLibrary("androidx.ui").get())
2222
add("implementation", libs.findLibrary("androidx.ui.tooling.preview").get())
23-
add("implementation", libs.findLibrary("androidx.material3").get())
2423
add("implementation", libs.findLibrary("androidx.navigation.compose").get())
2524
add("androidTestImplementation", libs.findLibrary("androidx.junit").get())
2625
add("androidTestImplementation", libs.findLibrary("androidx.espresso.core").get())

gradle/libs.versions.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ espressoCore = "3.6.1"
1818

1919
hilt = "2.51.1"
2020
ksp = "2.0.0-1.0.22"
21-
navigationCompose = "2.8.4"
22-
navigationRuntimeKtx = "2.8.5"
23-
navigationComposeVersion = "2.8.5"
21+
navigationCompose = "2.8.5"
2422

2523

2624
[libraries]
@@ -52,8 +50,7 @@ androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-co
5250

5351
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
5452
hilt-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
55-
androidx-navigation-runtime-ktx = { group = "androidx.navigation", name = "navigation-runtime-ktx", version.ref = "navigationRuntimeKtx" }
56-
navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationComposeVersion" }
53+
androidx-navigation-runtime-ktx = { group = "androidx.navigation", name = "navigation-runtime-ktx", version.ref = "navigationCompose" }
5754

5855
[plugins]
5956
android-application = { id = "com.android.application", version.ref = "agp" }

0 commit comments

Comments
 (0)