Skip to content

Commit dfdb456

Browse files
committed
라이브러리 버전 최신화
renovate bot 연동 해놓을걸..
1 parent 49c6012 commit dfdb456

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

app/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ android {
4949
}
5050

5151
dependencies {
52-
coreLibraryDesugaring(libs.desugar.jdk)
5352
implementations(
5453
projects.core.data,
5554
projects.core.datastore,

app/src/main/kotlin/com/nexters/bandalart/android/MainActivity.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ class MainActivity : ComponentActivity() {
1414

1515
override fun onCreate(savedInstanceState: Bundle?) {
1616
installSplashScreen()
17-
enableEdgeToEdge()
1817
super.onCreate(savedInstanceState)
18+
19+
enableEdgeToEdge()
20+
1921
setContent {
2022
BandalartTheme {
2123
BandalartApp()

build-logic/src/main/kotlin/internal/android.kt

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ internal fun Project.configureAndroid(extension: CommonExtension<*, *, *, *, *>)
4141
}
4242

4343
dependencies.add("detektPlugins", libs.findLibrary("detekt-plugin-formatting").get())
44+
dependencies.add("coreLibraryDesugaring", libs.findLibrary("desugar-jdk").get())
4445

4546
buildTypes {
4647
getByName("debug") {

core/ui/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ android {
1414
}
1515

1616
dependencies {
17-
coreLibraryDesugaring(libs.desugar.jdk)
1817
implementations(
1918
projects.core.designsystem,
2019
projects.core.util,

feature/home/build.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ android {
1515
}
1616

1717
dependencies {
18-
coreLibraryDesugaring(libs.desugar.jdk)
1918
implementations(
2019
projects.core.designsystem,
2120
projects.core.domain,

gradle/libs.versions.toml

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
11
[versions]
22

3-
android-gradle-plugin = "8.1.4"
3+
android-gradle-plugin = "8.2.2"
44
gradle-dependency-handler-extensions = "1.1.0"
55

66
google-secrets = "2.0.1"
7-
google-service = "4.4.0"
7+
google-service = "4.4.1"
88

9-
kotlin-core = "1.9.20"
10-
kotlin-detekt = "1.23.3"
9+
kotlin-core = "1.9.22"
10+
kotlin-detekt = "1.23.5"
1111
kotlin-ktlint-gradle = "11.6.1"
12-
kotlin-ktlint-source = "0.49.1"
12+
kotlin-ktlint-source = "0.50.0"
1313

14-
kotlinx-coroutines = "1.7.3"
14+
kotlinx-coroutines = "1.8.0"
1515
kotlinx-datetime = "0.4.0"
1616
kotlinx-serialization = "1.6.2"
1717
kotlinx-serialization-converter = "1.0.0"
18-
kotlinx-collections-immutable = "0.3.6"
18+
kotlinx-collections-immutable = "0.3.7"
1919

20-
android-hilt = "2.49"
20+
android-hilt = "2.50"
2121

2222
androidx-core = "1.12.0"
2323
androidx-datastore = "1.0.0"
24-
androidx-lifecycle-runtime = "2.6.2"
24+
androidx-lifecycle-runtime = "2.7.0"
2525
androidx-splash = "1.0.1"
2626
androidx-startup = "1.1.1"
27-
androidx-activity-compose = "1.8.1"
28-
androidx-compose-compiler = "1.5.4"
29-
androidx-compose-bom = "2023.10.01"
30-
androidx-compose-material3 = "1.2.0-alpha12"
27+
androidx-activity-compose = "1.8.2"
28+
androidx-compose-compiler = "1.5.8"
29+
androidx-compose-bom = "2024.02.00"
30+
androidx-compose-material3 = "1.2.0"
3131
androidx-compose-runtime-tracing = "1.0.0-beta01"
3232
androidx-compose-constraintlayout = "1.0.1"
33-
androidx-compose-navigation = "2.7.5"
33+
androidx-compose-navigation = "2.7.7"
3434
androidx-hilt-navigation-compose = "1.1.0"
3535

3636
desugar-jdk = "2.0.4"
3737
javax-inject = "1"
38-
ktor-client = "2.3.5"
38+
ktor-client = "2.3.8"
3939
retrofit = "2.9.0"
40-
okhttp = "5.0.0-alpha.11"
40+
okhttp = "5.0.0-alpha.12"
4141
lottie-compose = "5.2.0"
4242
timber = "5.0.1"
4343
facebook-shimmer = "0.5.0"
44-
firebase-bom = "32.6.0"
44+
firebase-bom = "32.7.2"
4545
firebase-crashlytics = "2.9.9"
46-
ksp = "1.9.20-1.0.14"
46+
ksp = "1.9.22-1.0.17"
4747

4848
test-kotest = "5.8.0"
4949

0 commit comments

Comments
 (0)