diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4b018c3..63a6902 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -9,10 +9,10 @@ val keystoreProperties = Properties () keystoreProperties . load ( FileInputStream ( rootProject . file ("keystore.properties") ) ) plugins { - id ("com.android.application") . version ("8.7.3") - id ("org.jetbrains.kotlin.android") . version ("2.1.0") - id ("org.jetbrains.kotlin.plugin.compose") . version ("2.1.0") - id ("org.jetbrains.kotlin.plugin.serialization") . version ("2.1.0") + id ("com.android.application") . version ("8.8.0") + id ("org.jetbrains.kotlin.android") . version ("2.1.10") + id ("org.jetbrains.kotlin.plugin.compose") . version ("2.1.10") + id ("org.jetbrains.kotlin.plugin.serialization") . version ("2.1.10") } android { @@ -61,18 +61,18 @@ android { dependencies { // Android runtime libraries implementation ( "com.google.android.material" , "material" , "1.12.0" ) - implementation ( "androidx.activity" , "activity-compose" , "1.9.3" ) + implementation ( "androidx.activity" , "activity-compose" , "1.10.0" ) implementation ( "androidx.core" , "core-ktx" , "1.15.0" ) implementation ( "androidx.compose.material3" , "material3" , "1.3.1" ) - implementation ( "androidx.compose.ui" , "ui" , "1.7.6" ) - implementation ( "androidx.compose.ui" , "ui-graphics" , "1.7.6" ) - debugImplementation ( "androidx.compose.ui" , "ui-tooling" , "1.7.6" ) + implementation ( "androidx.compose.ui" , "ui" , "1.7.7" ) + implementation ( "androidx.compose.ui" , "ui-graphics" , "1.7.7" ) + debugImplementation ( "androidx.compose.ui" , "ui-tooling" , "1.7.7" ) implementation ( "androidx.lifecycle" , "lifecycle-runtime-ktx" , "2.8.7" ) implementation ( "org.jetbrains.kotlinx" , "kotlinx-coroutines-android" , "1.10.1" ) implementation ( "org.jetbrains.kotlinx" , "kotlinx-serialization-json" , "1.8.0" ) // Other libraries - implementation ( "io.github.davidepianca98" , "kmqtt-common-jvm" , "1.0.0" ) - implementation ( "io.github.davidepianca98" , "kmqtt-client-jvm" , "1.0.0" ) + implementation ( "io.github.davidepianca98" , "kmqtt-common" , "1.0.0" ) + implementation ( "io.github.davidepianca98" , "kmqtt-client" , "1.0.0" ) } tasks . withType ( KotlinCompile :: class ) . all {