update dependencies

This commit is contained in:
MM20
2026-01-03 19:38:52 +01:00
parent e2520b91d1
commit 720ea787a9
3 changed files with 5 additions and 5 deletions

View File

@@ -109,7 +109,7 @@ abstract class AppDatabase : RoomDatabase() {
db.execSQL(
"INSERT INTO `SearchAction` (`position`, `type`, `data`, `label`, `color`, `icon`, `customIcon`, `options`) " +
"VALUES (?, ?, ?, ?, ?, ?, ?, ?), (?, ?, ?, ?, ?, ?, ?, ?)",
arrayOf(
arrayOf<Any?>(
9,
"url",
context.getString(R.string.default_websearch_2_url),

View File

@@ -36,7 +36,7 @@ class Migration_18_19 : Migration(18, 19) {
database.execSQL(
"INSERT INTO `SearchAction` (`position`, `type`, `data`, `label`, `color`, `icon`, `customIcon`, `options`)" +
"VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
arrayOf(
arrayOf<Any?>(
position,
"url",
data,

View File

@@ -9,10 +9,10 @@ targetSdk = "36"
pluginSdk = "2.2.0"
gradle = "8.1.2"
android-gradle-plugin = "8.13.0"
ksp-gradle-plugin = "2.3.2"
android-gradle-plugin = "8.13.2"
ksp-gradle-plugin = "2.3.4"
kotlin = "2.2.21"
kotlin = "2.3.0"
kotlinx-coroutines = "1.10.2"
kotlinx-immutable = "0.4.0"
kotlinx-serialization = "1.9.0"