Update Kotlin to 1.9.25, Compose Compiler to 1.5.15

This commit is contained in:
KeatonTheBot 2025-09-12 21:01:15 -05:00
parent 07ae239130
commit ab6ccb3d0b
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ android {
buildConfig true buildConfig true
} }
composeOptions { composeOptions {
kotlinCompilerExtensionVersion '1.5.13' kotlinCompilerExtensionVersion '1.5.15'
} }
packagingOptions { packagingOptions {
jniLibs { jniLibs {
@ -120,7 +120,7 @@ dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0'
implementation platform('androidx.compose:compose-bom:2024.08.00') implementation platform('androidx.compose:compose-bom:2024.08.00')
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.9.24') implementation platform('org.jetbrains.kotlin:kotlin-bom:1.9.25')
androidTestImplementation 'androidx.compose.ui:ui-test-junit4' androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
androidTestImplementation 'androidx.test.ext:junit:1.3.0' androidTestImplementation 'androidx.test.ext:junit:1.3.0'

View file

@ -2,5 +2,5 @@
plugins { plugins {
id 'com.android.application' version '8.13.0' apply false id 'com.android.application' version '8.13.0' apply false
id 'com.android.library' version '8.13.0' apply false id 'com.android.library' version '8.13.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false id 'org.jetbrains.kotlin.android' version '1.9.25' apply false
} }