Forráskód Böngészése

Updated dependencies

Vadik Sirekanyan 2 éve
szülő
commit
965b7087db
3 módosított fájl, 10 hozzáadás és 9 törlés
  1. 6 6
      app/build.gradle.kts
  2. 1 0
      app/proguard.pro
  3. 3 3
      build.gradle.kts

+ 6 - 6
app/build.gradle.kts

@@ -61,7 +61,7 @@ android {
         compose = true
     }
     composeOptions {
-        kotlinCompilerExtensionVersion = "1.5.1"
+        kotlinCompilerExtensionVersion = "1.5.3"
     }
     packaging {
         resources {
@@ -77,17 +77,17 @@ dependencies {
     implementation("androidx.compose.material3:material3:1.1.1")
 
     // ktor
-    implementation("io.ktor:ktor-client-cio:2.3.3")
-    implementation("io.ktor:ktor-client-content-negotiation:2.3.3")
-    implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.3")
-    implementation("org.slf4j:slf4j-simple:2.0.7")
+    implementation("io.ktor:ktor-client-cio:2.3.4")
+    implementation("io.ktor:ktor-client-content-negotiation:2.3.4")
+    implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.4")
+    implementation("org.slf4j:slf4j-simple:2.0.9")
 
     // sqldelight
     implementation("app.cash.sqldelight:android-driver:2.0.0")
     implementation("app.cash.sqldelight:coroutines-extensions:2.0.0")
 
     // crash reporting
-    add("playImplementation", "ch.acra:acra-http:5.11.1")
+    add("playImplementation", "ch.acra:acra-http:5.11.2")
 
 }
 

+ 1 - 0
app/proguard.pro

@@ -0,0 +1 @@
+-dontwarn javax.annotation.processing.*

+ 3 - 3
build.gradle.kts

@@ -1,8 +1,8 @@
 plugins {
-    val kotlinVersion = "1.9.0"
-    id("com.android.application") version "8.1.0" apply false
+    val kotlinVersion = "1.9.10"
+    id("com.android.application") version "8.1.1" apply false
     kotlin("android") version kotlinVersion apply false
     kotlin("plugin.serialization") version kotlinVersion apply false
     id("app.cash.sqldelight") version "2.0.0" apply false
-    id("org.sirekanyan.version-checker") version "1.0.8" apply false
+    id("org.sirekanyan.version-checker") version "1.0.9" apply false
 }