diff --git a/Gemfile.lock b/Gemfile.lock index 8d3e07090..4daa4cc47 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,26 +10,26 @@ GEM public_suffix (>= 2.0.2, < 7.0) artifactory (3.0.17) atomos (0.1.3) - aws-eventstream (1.3.2) - aws-partitions (1.1107.0) - aws-sdk-core (3.224.0) + aws-eventstream (1.4.0) + aws-partitions (1.1122.0) + aws-sdk-core (3.226.1) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) base64 jmespath (~> 1, >= 1.6.1) logger - aws-sdk-kms (1.101.0) - aws-sdk-core (~> 3, >= 3.216.0) + aws-sdk-kms (1.106.0) + aws-sdk-core (~> 3, >= 3.225.0) aws-sigv4 (~> 1.5) - aws-sdk-s3 (1.186.1) - aws-sdk-core (~> 3, >= 3.216.0) + aws-sdk-s3 (1.191.0) + aws-sdk-core (~> 3, >= 3.225.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.5) - aws-sigv4 (1.11.0) + aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) - base64 (0.2.0) + base64 (0.3.0) claide (1.1.0) colored (1.2) colored2 (3.1.2) @@ -58,10 +58,10 @@ GEM faraday (>= 0.8.0) http-cookie (~> 1.0.0) faraday-em_http (1.0.0) - faraday-em_synchrony (1.0.0) + faraday-em_synchrony (1.0.1) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.1.0) + faraday-multipart (1.1.1) multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) @@ -71,7 +71,7 @@ GEM faraday_middleware (1.2.1) faraday (~> 1.0) fastimage (2.4.0) - fastlane (2.227.2) + fastlane (2.228.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -159,7 +159,7 @@ GEM mutex_m jmespath (1.6.2) json (2.12.2) - jwt (2.10.1) + jwt (2.10.2) base64 logger (1.7.0) mini_magick (4.13.2) @@ -168,13 +168,13 @@ GEM multipart-post (2.4.1) mutex_m (0.3.0) nanaimo (0.4.0) - naturally (2.2.1) + naturally (2.3.0) nkf (0.2.0) optparse (0.6.0) os (1.1.4) plist (3.7.2) public_suffix (6.0.2) - rake (13.2.1) + rake (13.3.0) representable (3.2.0) declarative (< 0.1.0) trailblazer-option (>= 0.1.1, < 0.2.0) diff --git a/app/proguard.pro b/app/proguard.pro index 14e6556af..6ccbb322c 100644 --- a/app/proguard.pro +++ b/app/proguard.pro @@ -26,6 +26,8 @@ -dontwarn net.fortuna.ical4j.model.** -dontwarn org.codehaus.groovy.** -dontwarn org.apache.log4j.** # ignore warnings from log4j dependency +-dontwarn com.github.erosb.jsonsKema.** # ical4android +-dontwarn org.jparsec.** # ical4android -keep class net.fortuna.ical4j.** { *; } # keep all model classes (properties/factories, created at runtime) -keep class at.bitfire.** { *; } # all DAVdroid code is required diff --git a/app/src/main/java/com/todoroo/andlib/utility/AndroidUtilities.kt b/app/src/main/java/com/todoroo/andlib/utility/AndroidUtilities.kt index e47f1990b..76d7bad57 100644 --- a/app/src/main/java/com/todoroo/andlib/utility/AndroidUtilities.kt +++ b/app/src/main/java/com/todoroo/andlib/utility/AndroidUtilities.kt @@ -75,6 +75,10 @@ object AndroidUtilities { return Build.VERSION.SDK_INT >= VERSION_CODES.TIRAMISU } + fun atLeastAndroid16(): Boolean { + return Build.VERSION.SDK_INT >= VERSION_CODES.BAKLAVA + } + fun assertMainThread() { check(!(BuildConfig.DEBUG && !isMainThread)) { "Should be called from main thread" } } diff --git a/app/src/main/java/org/tasks/preferences/Device.kt b/app/src/main/java/org/tasks/preferences/Device.kt index 7d39c2ff6..a8bf8d33f 100644 --- a/app/src/main/java/org/tasks/preferences/Device.kt +++ b/app/src/main/java/org/tasks/preferences/Device.kt @@ -5,9 +5,11 @@ import android.content.Context import android.content.Intent import android.content.pm.PackageManager import android.os.Build +import android.provider.Settings import android.speech.RecognizerIntent import dagger.hilt.android.qualifiers.ApplicationContext import org.tasks.BuildConfig +import timber.log.Timber import java.util.Locale import javax.inject.Inject @@ -27,6 +29,15 @@ class Device @Inject constructor( return (activities.size != 0) } + private fun isDontKeepActivitiesEnabled(): Boolean { + return try { + Settings.Global.getInt(context.contentResolver, Settings.Global.ALWAYS_FINISH_ACTIVITIES) == 1 + } catch (e: Exception) { + Timber.e(e) + false + } + } + val debugInfo: String get() = """ ---------- @@ -43,5 +54,7 @@ class Device @Inject constructor( foreground location: ${permissionChecker.canAccessForegroundLocation()} calendar: ${permissionChecker.canAccessCalendars()} ---------- + dont keep activities: ${isDontKeepActivitiesEnabled()} + ---------- """.trimIndent() } diff --git a/app/src/main/java/org/tasks/widget/AppWidgetManager.kt b/app/src/main/java/org/tasks/widget/AppWidgetManager.kt index cb90673e3..a55a3a62b 100644 --- a/app/src/main/java/org/tasks/widget/AppWidgetManager.kt +++ b/app/src/main/java/org/tasks/widget/AppWidgetManager.kt @@ -8,6 +8,7 @@ import dagger.hilt.android.qualifiers.ApplicationContext import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch +import kotlinx.coroutines.withContext import org.tasks.R import org.tasks.injection.ApplicationScope import timber.log.Timber @@ -25,18 +26,21 @@ class AppWidgetManager @Inject constructor( ?: intArrayOf() fun reconfigureWidgets(vararg appWidgetIds: Int) = scope.launch(Dispatchers.IO) { + Timber.d("reconfigureWidgets(${appWidgetIds.joinToString()})") val intent = Intent(context, TasksWidget::class.java) intent.action = AppWidgetManager.ACTION_APPWIDGET_UPDATE intent.putExtra( AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds.takeIf { it.isNotEmpty() } ?: widgetIds) context.sendBroadcast(intent) - updateWidgets() } fun updateWidgets() = scope.launch(Dispatchers.IO) { - Timber.d("Updating widgets") - appWidgetManager?.notifyAppWidgetViewDataChanged(widgetIds, R.id.list_view) + val appWidgetIds = widgetIds + Timber.d("updateWidgets: ${appWidgetIds.joinToString()}") + withContext(Dispatchers.Main) { + appWidgetManager?.notifyAppWidgetViewDataChanged(appWidgetIds, R.id.list_view) + } } fun exists(id: Int) = appWidgetManager?.getAppWidgetInfo(id) != null diff --git a/app/src/main/java/org/tasks/widget/RequestPinWidgetReceiver.kt b/app/src/main/java/org/tasks/widget/RequestPinWidgetReceiver.kt index d30722a6f..c5d13013e 100644 --- a/app/src/main/java/org/tasks/widget/RequestPinWidgetReceiver.kt +++ b/app/src/main/java/org/tasks/widget/RequestPinWidgetReceiver.kt @@ -24,7 +24,7 @@ class RequestPinWidgetReceiver : BroadcastReceiver() { val widgetPreferences = WidgetPreferences(context, preferences, widgetId) widgetPreferences.setFilter(filter) widgetPreferences.setColor(color) - appWidgetManager.reconfigureWidgets() + appWidgetManager.reconfigureWidgets(widgetId) } companion object { diff --git a/app/src/main/java/org/tasks/widget/TasksWidgetViewFactory.kt b/app/src/main/java/org/tasks/widget/TasksWidgetViewFactory.kt index 52bdd9d8e..33c5900af 100644 --- a/app/src/main/java/org/tasks/widget/TasksWidgetViewFactory.kt +++ b/app/src/main/java/org/tasks/widget/TasksWidgetViewFactory.kt @@ -5,6 +5,7 @@ import android.content.Intent import android.view.View import android.widget.RemoteViews import android.widget.RemoteViewsService.RemoteViewsFactory +import com.todoroo.andlib.utility.AndroidUtilities.atLeastAndroid16 import com.todoroo.astrid.core.SortHelper import com.todoroo.astrid.subtasks.SubtasksHelper import kotlinx.coroutines.runBlocking @@ -50,6 +51,7 @@ internal class TasksWidgetViewFactory( private val markdown: Markdown, private val headerFormatter: HeaderFormatter, ) : RemoteViewsFactory { + private val taskLimit = if (atLeastAndroid16()) 25 + 1 else Int.MAX_VALUE private val indentPadding = (20 * context.resources.displayMetrics.density).toInt() private val settings = widgetPreferences.getWidgetListSettings() private val hPad = context.resources.getDimension(R.dimen.widget_padding).toInt() @@ -87,10 +89,11 @@ internal class TasksWidgetViewFactory( override fun onDestroy() {} - override fun getCount() = tasks.size + override fun getCount() = tasks.size.coerceAtMost(taskLimit) override fun getViewAt(position: Int): RemoteViews? = tasks.let { when { + position == taskLimit - 1 && it.size > taskLimit -> buildFooter() it.isHeader(position) -> buildHeader(it.getSection(position)) position < it.size -> buildUpdate(it.getItem(position)) else -> null @@ -99,10 +102,11 @@ internal class TasksWidgetViewFactory( override fun getLoadingView(): RemoteViews = newRemoteView() - override fun getViewTypeCount(): Int = 2 + override fun getViewTypeCount(): Int = 3 override fun getItemId(position: Int) = tasks.let { when { + position == taskLimit - 1 && it.size > taskLimit -> 0 it.isHeader(position) -> it.getSection(position).value position < it.size -> it.getItem(position).id else -> 0 @@ -113,6 +117,16 @@ internal class TasksWidgetViewFactory( private fun newRemoteView() = RemoteViews(BuildConfig.APPLICATION_ID, R.layout.widget_row) + private fun buildFooter(): RemoteViews { + return RemoteViews(BuildConfig.APPLICATION_ID, R.layout.widget_footer).apply { + setOnClickFillInIntent( + R.id.widget_view_more, + Intent(WidgetClickActivity.OPEN_TASK_LIST) + .putExtra(WidgetClickActivity.EXTRA_FILTER, filter) + ) + } + } + private fun buildHeader(section: AdapterSection): RemoteViews { val sortGroup = section.value val header: String? = if (filter.supportsSorting()) { diff --git a/app/src/main/java/org/tasks/widget/WidgetClickActivity.kt b/app/src/main/java/org/tasks/widget/WidgetClickActivity.kt index a26ab28e7..e6cf9b9d6 100644 --- a/app/src/main/java/org/tasks/widget/WidgetClickActivity.kt +++ b/app/src/main/java/org/tasks/widget/WidgetClickActivity.kt @@ -57,6 +57,16 @@ class WidgetClickActivity : AppCompatActivity(), OnDismissHandler { ) finish() } + OPEN_TASK_LIST -> { + val filter = intent.getParcelableExtra(EXTRA_FILTER) + Timber.tag("$action filter=$filter") + startActivity( + TaskIntents + .getTaskListIntent(this, filter) + .putExtra(FINISH_AFFINITY, true) + ) + finish() + } TOGGLE_SUBTASKS -> { val task = task val collapsed = intent.getBooleanExtra(EXTRA_COLLAPSED, false) @@ -110,6 +120,7 @@ class WidgetClickActivity : AppCompatActivity(), OnDismissHandler { companion object { const val COMPLETE_TASK = "COMPLETE_TASK" const val EDIT_TASK = "EDIT_TASK" + const val OPEN_TASK_LIST = "OPEN_TASK_LIST" const val TOGGLE_SUBTASKS = "TOGGLE_SUBTASKS" const val RESCHEDULE_TASK = "RESCHEDULE_TASK" const val TOGGLE_GROUP = "TOGGLE_GROUP" diff --git a/app/src/main/java/org/tasks/widget/WidgetPreferences.kt b/app/src/main/java/org/tasks/widget/WidgetPreferences.kt index 8de1e9c57..ecf41dc4c 100644 --- a/app/src/main/java/org/tasks/widget/WidgetPreferences.kt +++ b/app/src/main/java/org/tasks/widget/WidgetPreferences.kt @@ -264,7 +264,7 @@ class WidgetPreferences( setBoolean(R.string.p_widget_sort_ascending, ascending) } override var groupAscending: Boolean - get() = getBoolean(R.string.p_widget_group_ascending, false) + get() = getBoolean(R.string.p_widget_group_ascending, true) set(ascending) { setBoolean(R.string.p_widget_group_ascending, ascending) } diff --git a/app/src/main/res/layout/widget_footer.xml b/app/src/main/res/layout/widget_footer.xml new file mode 100644 index 000000000..0f7a4302a --- /dev/null +++ b/app/src/main/res/layout/widget_footer.xml @@ -0,0 +1,16 @@ + + + + + + diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 438a65489..b8fb8032f 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -564,7 +564,7 @@ Synchronisiere deine Aufgaben mit Tasks.org Abonnement Nicht gestartet - Noch nicht gestartete anzeigen + Nicht gestartete anzeigen Titel anzeigen Jedes Startdatum Kein Startdatum diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml index f54d00006..d99c50a17 100644 --- a/app/src/main/res/values-hr/strings.xml +++ b/app/src/main/res/values-hr/strings.xml @@ -736,4 +736,11 @@ Dodaj prečac na početni ekran Dodaj widget na početni ekran Komentar + Postavke aplikacije + Nastavi bez sinkronizacije + Pomogni mi odabrati + %s će se izbrisati. Ovo se ne može opozvati! + Aplikacija je aktualizirana + Aplikacija Tasks je upravo aktualizirana na %s. Želiš li vidjeti bilješke o izdanju? + Pritisni „Gotovo” za spremanje zadatka diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml index a8c10d1ea..63be29fad 100644 --- a/app/src/main/res/values-sr/strings.xml +++ b/app/src/main/res/values-sr/strings.xml @@ -31,4 +31,716 @@ Учитавам задатак %d… Подешавања Е-пошта - \ No newline at end of file + Датотека %1$s садржи %2$s.\n\n %3$s увезених,\n %4$s већ постојећих\n %5$s са грешкама + Подразумевана листа + Помоћ и повратне информације + Да ли желиш да одбациш промене? + Настави уређивање + Обрисати задатак? + Време (сати : минути) + Поништи + Кликни да поставиш + Нема задатака. + Сортирај + Сутра + Претражи + Подешавања апликације + Преправи + Јуче + Превуци и пусти за прерасподелу ставки менија + Данас + Позив + Отвори + Мој редослед + Прикажи незапочете + Астрид ручно сортирање + Прикажи завршене + Омогући Астрид ручни мод сортирања за ,,Моји задаци\'\', ,,Данас\'\' и тагове. Овај мод сортирања ће бити замењен ,,Мој редослед\'\' модом у будућем ажурирању + По датуму почетка + По времену креирања + По листи + По времену завршетка + Поклапање \'%s\' + Креирај нови филтер + Додај подзадатак + Опис + Колико ће трајати? + Утрошено време + Сачувај + Процена %s + Протекло %s + Датум доспећа + Време доспећа + Датум почетка + Дан пре доспећа + Седмица пре доспећа + Понови + Календар + Приоритет + Локација + Опис + Датотеке + Подсетници + Подешавања тајмера + ----Увек сакриј---- + Датум креирања + Празно + Измени подешавања екрана + Ресетуј на подразумевано + Прикажи пуно име задатка + Подешавања листе задатака + Време догађаја календара + Прикажи пун датум + Подешавања ресета + Подешавања ће бити ресетована на подразумевано + Обриши податке задатка + Сви задаци ће бити обрисани + Подразумевани приоритет + Подразумевани датум почетка + Подразумевани датум доспећа + Подразумевани подсетници + Подразумевани тип звона/вибрације + Подразумевана локација + Дан после сутра + Следећа седмица + Нема подсетника + Моји задаци + Недавно модификовани + Доспеће до… + Без датума доспећа + Без датума почетка + Било који датум почетка + Следећи месец + Приоритет… + Таг: ? + Таг… + Наслов садржи… + Грешка при додавању задатка! + Брисање завршено + Аутентификација… + Грешка при комуникацији са Гугл серверима. Молимо покушај касније. + Гугл Задаци + Налог %s није пронађен—одјави се и пријави се поново из подешавања Гугл Задатака. + Зазвони једном + Зазвони пет пута + Звони непрестано + Заврши + Одложи + Одложи све + Почетак режима без узнемиравања + Завршетак режима без узнемиравања + Обавештења за задатке без времена доспећа ће се појавити у %s + Перзистентна обавештења + Перзистентна обавештења се не могу брисати + Превуци за одлагање + Време одлагања + одмах + након 15 минута + након 30 минута + након 1 часа + након 24 часа + Онемогућено + Часовно + Дневно + Седмично + Без понављања + Сваки дан + Сваке седмице + Сваког месеца + Сваке године + + понављање + понављања + понављања + + + %d задатак + %d задатка + %d задатака + + + %d подзадатак + %d подзадатка + %d подзадатака + + + %d листа + %d листе + %d листи + + + време + времена + времена + + + минут + минута + минута + + + Минут + Минута + Минута + + + %d минут + %d минута + %d минута + + + час + часа + часова + + + Час + Часа + Часова + + + %d час + %d часа + %d часова + + + дан + дана + дана + + + Дан + Дана + Дана + + + %d дан + %d дана + %d дана + + + седмица + седмице + седмица + + + Седмица + Седмице + Седмица + + + %d седмица + %d седмице + %d седмица + + + месец + месеца + месеци + + + %d месец + %d месеца + %d месеци + + + година + године + година + + + %d година + %d године + %d година + + датум доспећа + датум завршетка + Датум завршетка + %1$s одложен за %2$s + Креирај нови таг + Креирај нову листу + Обриши %s? + коментар + Коментар + Тајмер + Гласовни улаз + Гласовни подсетници + Додат задатак + + 1 задатак + %d задатка + %d задатака + + Сада + Следеће недеље + Следећег понедељка + Следећег уторка + Следеће среде + Следећег четвртка + Следећег петка + Следеће суботе + Прикажи подешавања + Прикажи назив + Прикажи мени + Обавештења + Директоријум резерви + Гугл Драјв резерве + Разно + Подзадаци + Омогућено + Величина фонта + Размак + Размак између редова + Премести или обриши поља + Изворни кôд + Додај подсетник + Додај локацију + Избриши + Насумично сваки %s + Насумично + Одабери датум и време + Тагови + Промени приоритет + Филтери + Јутро + Подне + Вече + Ноћ + Сутра ујутру + Сутра поподне + Сутра увече + Одбаци измене? + Одбаци измене + Обустави + Подешавања тагова + Подешавања листе + Обриши + Копирај + Премести + Додај прилог + Направи фотографију + Одабери из галерије + Одабери из меморије + Полиса приватности + Побољшај Задатке + Пошаљи анонимне статистике коришћења и извештаје падова апликације ради побољшања. Лични подаци неће бити прикупљени. + Таг већ постоји + Поље имена не може бити празно + Корисничко име је неопходно + Шифра је неопходна + URL је неопходан + Мора почети са http(s):// + (Без назива) + Подразумевани тагови + Подразумевано враћање + Филтер + Непрозирност + Непрозирност заглавља + Непрозирност редова + Непрозирност подножја + Тема + Боја + Иконица + Црно + Светло + Тамно + Позадина + Дан/Ноћ + Системски подразумевано + Динамично + Језик + Рестартуј Задатке како би се промене виделе + Рестартуј сада + Касније + Подешавања виџета + Подешавања заглавља + Подешавања редова + Отвори листу + Испод назива + Скривено + Обрисати завршене задатке? + %s копирано + %s избрисано + Избрисати одабране задатке? + Копирати одабране задатке? + Време и датум + Додај налог + Настави без синхронизације + Помоћ при одабиру + Корисник + Шифра + URL + Грешка: %s + Оптимизација батерије може одложити обавештења + Подразумевани подсетник + Беџеви + Листа + Понавља се од + Понављање %s + по минуту + по часу + дневно + седмично + месечно + годишње + Понавља се сваког + Понавља се + Никада + На + Након + Не додавати у календар + Подразумевани календар + Прикажи обавештења за задатке без времена доспећа + Споји неколико обавештења у једно + Месечно на дан %1d + Месечно на %1$s %2$s + први + други + трећи + четврти + пети + последњи + Креирај задатак + Помоћ + Повезивање безуспешно + Претплате + Модификуј претплате + Претплати се + Откажи претплату + О нама + ,,Задаци\'\' је софтвер отвореног карактера, са лиценцом ,,GNU General Public License v3.0\'\' + Захтева претплату + Ова функционалност захтева претплату + Одјави се + %s ће бити избрисан. Ово се не може опозвати! + Сви подаци везани за овај налог ће бити обрисани са уређаја + Не може се приступити налогу + Поново иницијализуј + Креирај нови задатак + Нови задатак + Прикажи опис + Прикажи потпун опис + Прикажи линкове + Додај линкове до веб сајтова, адреса и бројева телефона + Посети веб сајт + Одабери локацију + Одабери ову локацију + Или бирај локацију + ,,Задаци\'\' скупља податке о локацији како би локационо везани подсетници радили, чак и када је апликација угашена или се не користи. + Потребна је локациона дозвола за налажење тренутне локације + Отвори мапу + Одабери нову локацију + Апликација је ажурирана + Шта је ново + Верзија %s + Невалидна датотека резерве + Нови задаци на врх + Прошири подзадатке + Унеси назив тага + Одабери платформу + Синхронизуј задатке са Tasks.org + Основни сервис који се синхронизује са Гугл налогом + End-to-end енкриптована синхронизација + Синхронизација базирана на датотеци + Синхронизуј са личним Мајкрософт налогом + Синхронизуј своје задатке са DAVx⁵ апликацијом + Прикажи напредна подешавања + Напредно + Документација + Обавештења ,,Wearable\'\' уређаја + Прикажи обавештења на ,,Wearable\'\' уређају + Онемогући оптимизацију батерије + Додатна подешавања + Звук звона, вибрација и додатно + Невалидно корисничко име или шифра + Здраво! Моје име је Алекс. Ја сам независни развојни инжењер у ,,Задаци\'\' апликацији + Провео сам хиљаде часова радећи на апликацији, коју објављујем онлајн бесплатно. Како бисте подржали мој рад, неке функционалности захтевају претплату + Назад + Места + Подешавања места + Сакриј некоришћене тагове + Сакриј некоришћена места + Текст и иконица + Само текст + Само иконица + Без датума + Без времена + Одабери време + Аутоматски затвори прозор за одабир датума и времена + Листа задатака + Виџет + Затвори прозор за одабир након бирања датума или времена + Одабери све + Подели + Обриши слику + Прикажи име + Прилагоди навигациони мени + Прикажи коментаре у екрану за измене + Стартуј догађаје календара у време доспећа + Обриши догађаје календара за завршене задатке + Обрисати све догађаје за завршене задатке? + Обрисано %d догађаја календара! + Обриши све догађаје календара за задатке + Обрисати све догађаје за задатке? + Подразумевани подсетник локације + Висок + Средњи + Низак + У тренутку доласка + У тренутку одласка + У тренутку доласка и одласка + Крени од: ? + Крени од… + Назив тага садржи… + Назив тага садржи: ? + Назив садржи: ? + Отвори догађај у календару + Догађај у календару није нађен + У листи: ? + У листи… + Сними белешку + Време подсетника + Обрисано обавештење ће бити одложено и поново креирано %s + Једном у две седмице + Друго… + Тајмери активни за %s! + започет задатак: + заустављен задатак: + Време утрошено: + Причај како би креирао задатак + Апликација ће изговорити назив задатка приликом подсећања + Прикажи чекирана поља + Прикажи заглавље + Прикажи разделнике + Време без узнемиравања + Време без узнемиравања је активно + Директоријум са прилозима + Подеси екран измене + Допринеси преводима + Пошаљи извештај апликације + Након доспећа + До доспећа + Након стартовања + Радијус геоограде + %s м + За час + Сутра у току ноћи + %1$s мора бити пре %2$s + %1$s мора бити након %2$s + Није започето + Ниједна апликација не може извршити захтев + Назив уређаја на мрежи је неопходан + Дугме ,,назад\'\' чува задатак + Прикажи екран измене без откључавања + Омогућава коришћење брзих подешавања без откључавања уређаја + Иконица за покретање + Локализација + Након назива + Пакет обавештења + Понавља се %1$s на %2$s + Понавља се %1$s, завршава се %2$s + Понавља се %1$s, појављује се %2$d %3$s + Понавља се %1$s на %2$s, завршава се %3$s + Понавља се %1$s на %2$s, појављује се %3$d %4$s + Прилагођено понављање + Завршава се + Понавља се сваких %s + Понавља се сваких %1$s на %2$s + Понавља се сваких %1$s, завршава се %2$s + Понавља се сваких %1$s, појављује се %2$d %3$s + Понавља се сваких %1$s на %2$s, завршава се %3$s + Понавља се сваких%1$s на %2$s, појављује се %3$d %4$s + ", " + Прикажи број задатака на иконици за покретање. Неки покретачи не подржавају беџеве. + сваки %1$s %2$s + Обавештење листе + Пређи на претплату + Освежи уплате + Екстензија ,,Dashclock\'\' + Подсети при доласку + Подсети при одласку + Долазак у %s + Одлазак у %s + Генерисање обавештења + Недостају дозволе + Лиценце треће стране + Апликација је ажурирана на %s. Приказати белешке о ажурирању? + Наведи цену + Споји подзадатке + Подзадаци у више нивоа нису подржани од стране Гугл Задатака + Подзадаци у више нивоа нису подржани од стране ,,Microsoft To Do\'\' + Синхронизација заснована на стандардима отвореног интернета + Захтева налог код ,,CalDAV\'\' провајдера или приватни сервер. Пронађи провајдера на страници tasks.org/caldav + Захтева налог код ,,EteSync.com\'\' или приватни сервер + Изглед и персонализација + Решавање проблема + Тапни овде уколико постоје проблеми са обавештењима + Палета боја + Апликациони чипови + Изглед апликационих чипова + Навигациони мени + Аутоматско затварање након одабира из листе задатака + Измена задатка + Аутоматско затварање након бирања из измене задатка + Аутоматско затварање након бирања из виџета + Догађај у календару креиран на %s + Идентификација виџета: %d + Подразумевано + Компактно + Критеријум филтера + После доспећа + Само данас + Било који датум доспећа + Након данашњег дана + Без тагова + Додај тагове + Висок приоритет + Средњи приоритет + Низак приоритет + Без приоритета + Важно и ургентно + Важно и није ургентно + Није важно и ургентно + Није важно и није ургентно + Задовољни апликацијом? + Подржите нас донацијом! + Донирај данас + Можда касније + Откључај додатне функционалности и подржи софтвер отвореног кода + Јасно! + Старт %s + Доспеће %s + Креирано %s + Модификовано %s + Завршетак %s + При покретању + Отвори последње прегледану листу + Локална листа + Листе + Ресетуј редослед сортирања + Потпуни приступ бази података апликације + Аутоматске резервне копије + Андроид сервис резервних копија + Неопходна је пријава преко подешавања уређаја. Не подржавају сви уређаји сервисе резервних копија. + Последње резервно копирање: %s + никада + Подешавања уређаја + Кориснички налог + Предња локација + Задња локација + Игнориши упозорења + Игнориши упозорења уколико нису потребне резервне копије или постоји лично решење за резервне копије + УПОЗОРЕЊЕ: Датотеке на локацији %s ће бити обрисане уколико се апликација деинсталира! Молимо одабери локацију како би спречио брисање својих фајлова. + Поново закажи + Вишеструко + Садржи подзадатке + Јесте подзадатак + Садржи подсетник + Претплата је истекла. Претплати се поново за наставак сервиса. + Недовољан пакет претплате. Молимо за претплату на виши пакет за наставак сервиса. + Није пронађено одговарајуће спонзорство за ,,GitHub\'\' + Није пронађено одговарајуће спонзорство за ,,Google Play\'\' + $%s/годишње + $%s/месечно + %s/месечно + %s/годишње + Тренутна претплата: %s + Придружи се r/tasks + Запрати @tasks_org + Друштвене мреже + Подршка + Праћење проблема + Кôд отвореног типа + Приватност + Отказана ауторизација + ,,Google Play\'\' претплатници + ,,GitHub\'\' спонзори + Пријави се путем Гугла + Пријави се путем GitHub-а + Неопходна аутентикација + Спонзор + Мигрирај + Мигрирајући задаци + Премести %s на Tasks.org + Изнад просека + Усними %d%% + Пријави се на Tasks.org + Мејл адреса и идентификациони број ће бити послати и складиштени од стране Tasks.org. Ове информације ће се користити за аутентикацију и обезбеђење важних обавештења у вези сервиса. Ове информације се неће делити ни са ким. + Шифра апликације + Шифре апликације + Синхронизуј задатке и календар са десктоп и мобилним апликацијама треће стране. Тапни овде за додатне информације + Генериши нову шифру + Унеси име шифре (опционо) + Креирано: %s + Последњи пут коришћено: %s + Свака апликација која користи ову шифру ће бити одјављена + Користи ове креденцијале за конфигурацију апликације од треће стране. Они омогућавају потпуни приступ Tasks.org налогу, не записуј их нигде и не дели их ни са ким! + %s копирано у привремену меморију + Tasks.org налог + Неопходан налог на Tasks.org + Није укључено у ,,Задај цену\'\' тип претплате + Чланови листе + Уклонити корисника? + %1$s више нема приступ до %2$s + Подели листу + Позови + Позив одбијен + Чека се на одговор + Невалидан позив + Нови претплатници добијају 7-дневно бесплатно коришћење. Може се отказати у било ком тренутку + Додатно прилагоди + Откључај све теме, боје, и иконице + Синхронизуј са Tasks.org и сарађуј са другим корисницима + Приступ десктопу + Синхронизуј са апликацијама треће стране као што су ,,Outlook\'\' и ,,Apple Reminders\'\' + Ова претплата омогућава наставак развоја апликације + Додатне опције + Редукција + Омогући Редукцију у називу и опису + Произведи звук за завршетак + Завршено + Задатак завршен + Премести завршене задатке на дно + %d задатака завршено + %s пре почетка + %s након почетка + %s пре доспећа + %s након доспећа + Одложено до %s + Лична обавештења + Непознато + Друго + Тип сервера + Одбаци + Превише информација? + Персонализуј овај екран премештањем или брисањем поља + Омогући подсетнике + Подсетници су онемогућени у подешавањима уређаја + Обавести ме у право време + За могућност обавештења у право време, дозволи подешавања аларма и подсетника у подешавањима уређаја + Пријави се + Слажем се + Не сада + Сортирање + Груписање + Растући редослед + Опадајући редослед + Није доступно за тагове, филтере, или места + Додај пречицу на почетни екран + Додај виџет на почетни екран + Цена: Бесплатно + Цена: $ + Цена: $$$ + Омогући називе у више редова + Притисни Ентер за додавање размака између редова + Притисни ,,Готово\'\' за чување задатка + О ,,Microsoft To Do\'\' синхронизацији + Не синхронизују се сви детаљи задатка са ,,Microsoft To Do\'\'. + О ,,Google Tasks\'\' синхронизацији + Не синхронизују се сви детаљи задатка са ,,Google Tasks\'\' + Више информација + Окончај догађаје календара у време доспећа + Подразумевано за задатке + Минимум приоритета ? + Сет није пронађен + diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 02ebfc9ca..15577489f 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -427,7 +427,7 @@ Kräver ett konto hos EteSync.com eller en egen värdserver Kräver ett konto hos en CalDAV-tjänsteleverantör eller en egen server. Hitta en tjänsteleverantör genom att besöka tasks.org/caldav Ignorera ändringar - Slå på Astrids manuella sortering för \'Mina uppgifter\', \'Idag\', och taggar. Den här sorteringen kommer ersättas av \'Min sortering\' i en framtida uppdatering. + Aktivera Astrids manuella sorteringsläge för \"Mina uppgifter\", \"Idag\" och taggar. Detta sorteringsläge kommer att ersättas av \"Min sortering\" i en framtida uppdatering. Aktivera Markdown i titel och beskrivning Markdown Fler alternativ diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index cf0a943d2..2b2c9c6a0 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -718,4 +718,7 @@ பயன் புதுப்பிக்கப்பட்டது பணியைச் சேமிக்க முடிந்தது என்பதை அழுத்தவும் பணிகள் இப்போதுதான் %s ஆகப் புதுப்பிக்கப்பட்டது. வெளியீட்டுக் குறிப்புகளைப் பார்க்க விரும்புகிறீர்களா? + ஒத்திசைவு இல்லாமல் தொடரவும் + தேர்வு செய்ய எனக்கு உதவு + %s நீக்கப்படும். இதை செயல்தவிர்க்க முடியாது! diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index e2750ab24..ece4e9a0f 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -729,4 +729,5 @@ File %1$s contained %2$s.\n\n About Google Task sync Not all task details sync with Google Tasks Learn more + View more tasks diff --git a/build.gradle.kts b/build.gradle.kts index 1daf0a2fa..efbde947d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,7 +24,7 @@ buildscript { } tasks.getByName("wrapper") { - gradleVersion = "8.14.1" + gradleVersion = "8.14.2" distributionType = Wrapper.DistributionType.ALL } diff --git a/deps_fdroid.txt b/deps_fdroid.txt index d6d79a401..9c063db20 100644 --- a/deps_fdroid.txt +++ b/deps_fdroid.txt @@ -1,20 +1,20 @@ -++--- androidx.databinding:viewbinding:8.10.1 +++--- androidx.databinding:viewbinding:8.11.0 +| \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 +| \--- androidx.annotation:annotation-jvm:1.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 +| +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.21 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.21 (c) -++--- androidx.databinding:databinding-common:8.10.1 -++--- androidx.databinding:databinding-runtime:8.10.1 +++--- androidx.databinding:databinding-common:8.11.0 +++--- androidx.databinding:databinding-runtime:8.11.0 +| +--- androidx.collection:collection:1.0.0 -> 1.5.0 +| | \--- androidx.collection:collection-jvm:1.5.0 +| | +--- androidx.annotation:annotation:1.9.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- androidx.collection:collection-ktx:1.5.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| +--- androidx.databinding:databinding-common:8.10.1 -+| +--- androidx.databinding:viewbinding:8.10.1 (*) ++| +--- androidx.databinding:databinding-common:8.11.0 ++| +--- androidx.databinding:viewbinding:8.11.0 (*) +| \--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 +| \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -87,15 +87,12 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) +| \--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) -++--- androidx.databinding:databinding-adapters:8.10.1 -+| +--- androidx.databinding:databinding-runtime:8.10.1 (*) -+| \--- androidx.databinding:databinding-common:8.10.1 -++--- androidx.databinding:databinding-ktx:8.10.1 -+| +--- androidx.databinding:databinding-runtime:8.10.1 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -> 2.1.21 -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.21 -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +++--- androidx.databinding:databinding-adapters:8.11.0 ++| +--- androidx.databinding:databinding-runtime:8.11.0 (*) ++| \--- androidx.databinding:databinding-common:8.11.0 +++--- androidx.databinding:databinding-ktx:8.11.0 ++| +--- androidx.databinding:databinding-runtime:8.11.0 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1 -> 1.10.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 @@ -247,42 +244,42 @@ +| | \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations-jvm:1.13.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) -+| +--- androidx.room:room-runtime:2.7.1 -+| | \--- androidx.room:room-runtime-android:2.7.1 ++| +--- androidx.room:room-runtime:2.7.2 ++| | \--- androidx.room:room-runtime-android:2.7.2 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 2.1.21 (*) +| | +--- androidx.arch.core:core-runtime:2.2.0 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | +--- androidx.room:room-common:2.7.1 -+| | | \--- androidx.room:room-common-jvm:2.7.1 ++| | +--- androidx.room:room-common:2.7.2 ++| | | \--- androidx.room:room-common-jvm:2.7.2 +| | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.room:room-ktx:2.7.1 (c) -+| | | +--- androidx.room:room-runtime:2.7.1 (c) ++| | | +--- androidx.room:room-ktx:2.7.2 (c) ++| | | +--- androidx.room:room-runtime:2.7.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- androidx.sqlite:sqlite:2.5.0 -> 2.5.1 -+| | | \--- androidx.sqlite:sqlite-android:2.5.1 ++| | +--- androidx.sqlite:sqlite:2.5.1 -> 2.5.2 ++| | | \--- androidx.sqlite:sqlite-android:2.5.2 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.sqlite:sqlite-framework:2.5.1 (c) -+| | | +--- androidx.sqlite:sqlite-bundled:2.5.1 (c) ++| | | +--- androidx.sqlite:sqlite-framework:2.5.2 (c) ++| | | +--- androidx.sqlite:sqlite-bundled:2.5.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- androidx.sqlite:sqlite-framework:2.5.0 -> 2.5.1 -+| | | \--- androidx.sqlite:sqlite-framework-android:2.5.1 ++| | +--- androidx.sqlite:sqlite-framework:2.5.1 -> 2.5.2 ++| | | \--- androidx.sqlite:sqlite-framework-android:2.5.2 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | +--- androidx.sqlite:sqlite:2.5.1 (*) ++| | | +--- androidx.sqlite:sqlite:2.5.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.sqlite:sqlite:2.5.1 (c) -+| | | +--- androidx.sqlite:sqlite-bundled:2.5.1 (c) ++| | | +--- androidx.sqlite:sqlite:2.5.2 (c) ++| | | +--- androidx.sqlite:sqlite-bundled:2.5.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | +--- org.jspecify:jspecify:1.0.0 -+| | +--- androidx.room:room-common:2.7.1 (c) ++| | +--- androidx.room:room-common:2.7.2 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | \--- androidx.room:room-ktx:2.7.1 (c) ++| | \--- androidx.room:room-ktx:2.7.2 (c) +| +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.2 +| | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.2 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) @@ -308,56 +305,56 @@ +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) +| \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) ++--- project :kmp -+| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 ++| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.8.2 -+| | | \--- androidx.compose.runtime:runtime-android:1.8.2 ++| | +--- androidx.compose.runtime:runtime:1.8.3 ++| | | \--- androidx.compose.runtime:runtime-android:1.8.3 +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | +--- androidx.collection:collection:1.5.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | \--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | \--- androidx.compose.ui:ui-util:1.8.3 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| +--- project :data (*) -+| +--- org.jetbrains.compose.components:components-resources:1.8.1 -+| | \--- org.jetbrains.compose.components:components-resources-android:1.8.1 ++| +--- org.jetbrains.compose.components:components-resources:1.8.2 ++| | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 -+| | | +--- androidx.compose.runtime:runtime:1.8.1 -> 1.8.2 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 ++| | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 +| | | | \--- androidx.annotation:annotation:1.9.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 +| | | | +--- androidx.collection:collection:1.5.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | +--- org.jetbrains.compose.foundation:foundation:1.8.1 -+| | | +--- androidx.compose.foundation:foundation:1.8.1 -> 1.8.2 -+| | | | \--- androidx.compose.foundation:foundation-android:1.8.2 ++| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 ++| | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 ++| | | | \--- androidx.compose.foundation:foundation-android:1.8.3 +| | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation:1.8.2 -+| | | | | \--- androidx.compose.animation:animation-android:1.8.2 ++| | | | +--- androidx.compose.animation:animation:1.8.3 ++| | | | | \--- androidx.compose.animation:animation-android:1.8.3 +| | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | +--- androidx.compose.animation:animation-core:1.8.2 -+| | | | | | \--- androidx.compose.animation:animation-core-android:1.8.2 ++| | | | | +--- androidx.compose.animation:animation-core:1.8.3 ++| | | | | | \--- androidx.compose.animation:animation-core-android:1.8.3 +| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui:1.8.2 -+| | | | | | | \--- androidx.compose.ui:ui-android:1.8.2 ++| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui:1.8.3 ++| | | | | | | \--- androidx.compose.ui:ui-android:1.8.3 +| | | | | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 +| | | | | | | | +--- androidx.activity:activity:1.10.1 +| | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -462,88 +459,88 @@ +| | | | | | | | \--- androidx.core:core:1.1.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -+| | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 ++| | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -+| | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 ++| | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 +| | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) +| | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -+| | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 ++| | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 +| | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 +| | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) +| | | | | | | | | | \--- androidx.collection:collection:1.5.0 (c) -+| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | | +--- androidx.graphics:graphics-path:1.0.1 +| | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | | | | +--- androidx.emoji2:emoji2:1.4.0 +| | | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -554,15 +551,15 @@ +| | | | | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 +| | | | | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.13.1 (*) @@ -571,7 +568,7 @@ +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) @@ -596,169 +593,169 @@ +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | | | | | | +--- org.jspecify:jspecify:1.0.0 -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | | | | +--- androidx.compose.animation:animation:1.8.2 (c) ++| | | | | | +--- androidx.compose.animation:animation:1.8.3 (c) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -+| | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 ++| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 ++| | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 +| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -+| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) ++| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- androidx.compose.foundation:foundation:1.8.2 (c) ++| | | | | | +--- androidx.compose.foundation:foundation:1.8.3 (c) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- androidx.compose.animation:animation-core:1.8.2 (c) ++| | | | | +--- androidx.compose.animation:animation-core:1.8.3 (c) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-text:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | +--- androidx.core:core:1.13.1 (*) +| | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- org.jetbrains.compose.animation:animation:1.8.1 -+| | | | +--- androidx.compose.animation:animation:1.8.1 -> 1.8.2 (*) -+| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.1 -+| | | | | +--- androidx.compose.animation:animation-core:1.8.1 -> 1.8.2 (*) -+| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui:1.8.1 -+| | | | | | +--- androidx.compose.ui:ui:1.8.1 -> 1.8.2 (*) ++| | | +--- org.jetbrains.compose.animation:animation:1.8.2 ++| | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) ++| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 ++| | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) ++| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.5 -> 2.9.1 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 +| | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.5 -> 2.9.1 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.5 -> 2.9.1 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.5 -> 2.9.1 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 -+| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.1 -> 1.8.2 (*) -+| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) ++| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.1 -> 1.8.2 (*) -+| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) ++| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 -+| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.1 -> 1.8.2 (*) -+| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 ++| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) ++| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| +--- org.jetbrains.compose.material3:material3:1.8.1 ++| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| +--- org.jetbrains.compose.material3:material3:1.8.2 +| | +--- androidx.compose.material3:material3:1.3.2 +| | | \--- androidx.compose.material3:material3-android:1.3.2 +| | | +--- androidx.activity:activity-compose:1.8.2 -> 1.10.1 +| | | | +--- androidx.activity:activity-ktx:1.10.1 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) +| | | | +--- androidx.core:core-ktx:1.13.0 -> 1.13.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) @@ -772,26 +769,26 @@ +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) +| | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) +| | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.8 +| | | | \--- androidx.compose.material:material-icons-core-android:1.7.8 -+| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) ++| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) -+| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 -+| | | | \--- androidx.compose.material:material-ripple-android:1.8.2 ++| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.3 ++| | | | \--- androidx.compose.material:material-ripple-android:1.8.3 +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | \--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) @@ -809,33 +806,33 @@ +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) -+| | +--- org.jetbrains.compose.animation:animation-core:1.8.1 (*) -+| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | +--- org.jetbrains.compose.material:material-ripple:1.8.1 -+| | | +--- androidx.compose.material:material-ripple:1.8.1 -> 1.8.2 (*) -+| | | +--- org.jetbrains.compose.animation:animation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) ++| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | +--- org.jetbrains.compose.material:material-ripple:1.8.2 ++| | | +--- androidx.compose.material:material-ripple:1.8.2 -> 1.8.3 (*) ++| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.1 -+| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.1 ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.2 ++| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.2 +| | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (c) ++| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 +| | +--- androidx.compose.material:material-icons-extended:1.7.6 -> 1.7.8 @@ -843,12 +840,12 @@ +| | | \--- androidx.compose.material:material-icons-core:1.7.8 (*) +| | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 +| | | +--- androidx.compose.material:material-icons-core:1.7.6 -> 1.7.8 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| +--- androidx.datastore:datastore-preferences:1.1.7 +| | \--- androidx.datastore:datastore-preferences-android:1.1.7 +| | +--- androidx.datastore:datastore:1.1.7 @@ -926,8 +923,8 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) @@ -1024,33 +1021,36 @@ +| | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| | \--- androidx.appcompat:appcompat-resources:1.7.1 (c) -+| +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.1 (*) ++| +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.2 (*) +| +--- com.mikepenz:iconics-typeface-api:5.5.0-b01 -+| | +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.1 (*) ++| | +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.2 (*) +| | +--- androidx.core:core-ktx:1.10.1 -> 1.13.1 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0 -> 2.1.21 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0 -> 2.1.21 ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.21 ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| | \--- androidx.startup:startup-runtime:1.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -++--- androidx.navigation:navigation-compose:2.9.0 -+| \--- androidx.navigation:navigation-compose-android:2.9.0 +++--- androidx.navigation:navigation-compose:2.9.1 ++| \--- androidx.navigation:navigation-compose-android:2.9.1 +| +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) +| +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) +| +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -+| +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) ++| +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) -+| +--- androidx.navigation:navigation-common:2.9.0 -+| | \--- androidx.navigation:navigation-common-android:2.9.0 ++| +--- androidx.navigation:navigation-common:2.9.1 ++| | \--- androidx.navigation:navigation-common-android:2.9.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | +--- androidx.core:core-ktx:1.1.0 -> 1.13.1 (*) @@ -1060,14 +1060,13 @@ +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | +--- androidx.profileinstaller:profileinstaller:1.4.0 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (*) -+| | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| | +--- androidx.navigation:navigation-compose:2.9.0 (c) -+| | +--- androidx.navigation:navigation-runtime:2.9.0 (c) ++| | +--- androidx.navigation:navigation-compose:2.9.1 (c) ++| | +--- androidx.navigation:navigation-runtime:2.9.1 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -+| +--- androidx.navigation:navigation-runtime:2.9.0 -+| | \--- androidx.navigation:navigation-runtime-android:2.9.0 ++| +--- androidx.navigation:navigation-runtime:2.9.1 ++| | \--- androidx.navigation:navigation-runtime-android:2.9.1 +| | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) @@ -1077,18 +1076,18 @@ +| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) -+| | +--- androidx.navigation:navigation-common:2.9.0 (*) ++| | +--- androidx.navigation:navigation-common:2.9.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| | +--- androidx.navigation:navigation-common:2.9.0 (c) -+| | +--- androidx.navigation:navigation-compose:2.9.0 (c) ++| | +--- androidx.navigation:navigation-common:2.9.1 (c) ++| | +--- androidx.navigation:navigation-compose:2.9.1 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) +| +--- androidx.savedstate:savedstate:1.3.0 (*) +| +--- androidx.savedstate:savedstate-compose:1.3.0 +| | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | +--- androidx.annotation:annotation:1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) +| | +--- androidx.core:core-ktx:1.13.1 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (c) @@ -1096,28 +1095,28 @@ +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| +--- androidx.navigation:navigation-common:2.9.0 (c) -+| +--- androidx.navigation:navigation-runtime:2.9.0 (c) ++| +--- androidx.navigation:navigation-common:2.9.1 (c) ++| +--- androidx.navigation:navigation-runtime:2.9.1 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) ++--- androidx.compose.material3.adaptive:adaptive-navigation-android:1.1.0 +| +--- androidx.activity:activity-compose:1.8.2 -> 1.10.1 (*) +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) ++| +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) +| +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 +| | \--- androidx.compose.material3.adaptive:adaptive-layout-android:1.1.0 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.animation:animation-core:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation-layout:1.6.5 -> 1.8.2 (*) ++| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.animation:animation-core:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation-layout:1.6.5 -> 1.8.3 (*) +| | +--- androidx.compose.material3.adaptive:adaptive:1.1.0 +| | | \--- androidx.compose.material3.adaptive:adaptive-android:1.1.0 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| | | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.2 (*) ++| | | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.3 (*) +| | | +--- androidx.window:window:1.3.0 +| | | | +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) @@ -1136,16 +1135,16 @@ +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -+| | +--- androidx.compose.runtime:runtime:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.3 (*) +| | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | +--- androidx.window:window-core:1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- androidx.compose.material3.adaptive:adaptive:1.1.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -+| +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.2 (*) ++| +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.3 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) @@ -1156,25 +1155,15 @@ +| \--- com.squareup.okhttp3:okhttp:4.10.0 -> 4.12.0 +| +--- com.squareup.okio:okio:3.6.0 -> 3.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 2.1.21 (*) -++--- com.github.tasks:ical4android:12fe73a -+| +--- org.mnode.ical4j:ical4j:3.2.7 -+| | +--- javax.cache:cache-api:1.1.1 -+| | +--- org.threeten:threeten-extra:1.7.0 -+| | +--- org.jparsec:jparsec:3.1 -+| | +--- com.github.erosb:everit-json-schema:1.14.1 -+| | | +--- commons-validator:commons-validator:1.7 -+| | | | +--- commons-beanutils:commons-beanutils:1.9.4 -+| | | | | \--- commons-collections:commons-collections:3.2.2 -+| | | | +--- commons-digester:commons-digester:2.1 -+| | | | \--- commons-collections:commons-collections:3.2.2 -+| | | +--- com.damnhandy:handy-uri-templates:2.1.8 -+| | | | \--- joda-time:joda-time:2.10.2 -+| | | \--- com.google.re2j:re2j:1.6 -+| | +--- org.slf4j:slf4j-api:1.7.36 -> 2.0.16 +++--- com.github.tasks:ical4android:2fe63dd ++| +--- org.mnode.ical4j:ical4j:3.2.19 ++| | +--- org.slf4j:slf4j-api:2.0.9 -> 2.0.16 +| | +--- commons-codec:commons-codec:1.15 -> 1.17.1 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.apache.commons:commons-collections4:4.4 -+| | \--- commons-validator:commons-validator:1.7 (*) ++| | \--- commons-validator:commons-validator:1.7 ++| | +--- commons-beanutils:commons-beanutils:1.9.4 ++| | \--- commons-digester:commons-digester:2.1 +| +--- org.apache.commons:commons-collections4:4.2 -> 4.4 +| +--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.21 -> 2.1.21 (*) @@ -1183,10 +1172,10 @@ +| | \--- org.slf4j:slf4j-api:2.0.3 -> 2.0.16 +| \--- androidx.core:core-ktx:1.9.0 -> 1.13.1 (*) ++--- com.github.bitfireAT:cert4android:7814052 -+| +--- androidx.databinding:databinding-common:7.2.0 -> 8.10.1 -+| +--- androidx.databinding:databinding-runtime:7.2.0 -> 8.10.1 (*) -+| +--- androidx.databinding:databinding-adapters:7.2.0 -> 8.10.1 (*) -+| +--- androidx.databinding:databinding-ktx:7.2.0 -> 8.10.1 (*) ++| +--- androidx.databinding:databinding-common:7.2.0 -> 8.11.0 ++| +--- androidx.databinding:databinding-runtime:7.2.0 -> 8.11.0 (*) ++| +--- androidx.databinding:databinding-adapters:7.2.0 -> 8.11.0 (*) ++| +--- androidx.databinding:databinding-ktx:7.2.0 -> 8.11.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 2.1.21 (*) +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.7.1 (*) +| +--- androidx.cardview:cardview:1.0.0 @@ -1309,21 +1298,21 @@ +| +--- javax.inject:javax.inject:1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (*) ++--- androidx.hilt:hilt-navigation-compose:1.2.0 -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) +| +--- androidx.hilt:hilt-navigation:1.2.0 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -+| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.9.0 (*) ++| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.9.1 (*) +| | +--- com.google.dagger:hilt-android:2.49 -> 2.56.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.9.1 (*) -+| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.9.0 (*) ++| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) ++--- androidx.hilt:hilt-work:1.2.0 +| +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| +--- androidx.hilt:hilt-common:1.2.0 +| | \--- com.google.dagger:hilt-core:2.49 -> 2.56.2 (*) -+| +--- androidx.work:work-runtime:2.3.4 -> 2.10.1 ++| +--- androidx.work:work-runtime:2.3.4 -> 2.10.2 +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | +--- androidx.concurrent:concurrent-futures-ktx:1.1.0 +| | | +--- androidx.concurrent:concurrent-futures:1.1.0 (*) @@ -1332,13 +1321,13 @@ +| | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | +--- androidx.lifecycle:lifecycle-livedata:2.6.2 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-service:2.6.2 -> 2.9.1 (*) -+| | +--- androidx.room:room-ktx:2.6.1 -> 2.7.1 -+| | | +--- androidx.room:room-common:2.7.1 (*) -+| | | +--- androidx.room:room-runtime:2.7.1 (*) ++| | +--- androidx.room:room-ktx:2.6.1 -> 2.7.2 ++| | | +--- androidx.room:room-common:2.7.2 (*) ++| | | +--- androidx.room:room-runtime:2.7.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) -+| | | +--- androidx.room:room-common:2.7.1 (c) -+| | | +--- androidx.room:room-runtime:2.7.1 (c) ++| | | +--- androidx.room:room-common:2.7.2 (c) ++| | | +--- androidx.room:room-runtime:2.7.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | +--- androidx.startup:startup-runtime:1.1.1 (*) +| | +--- androidx.tracing:tracing-ktx:1.2.0 @@ -1348,7 +1337,7 @@ +| | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) -+| | +--- androidx.work:work-runtime-ktx:2.10.1 (c) ++| | +--- androidx.work:work-runtime-ktx:2.10.2 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) +| \--- com.google.dagger:hilt-android:2.49 -> 2.56.2 (*) ++--- androidx.core:core-splashscreen:1.0.1 @@ -1356,8 +1345,8 @@ +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) ++--- androidx.datastore:datastore-preferences:1.1.7 (*) ++--- androidx.fragment:fragment-compose:1.8.8 -+| +--- androidx.compose.runtime:runtime:1.5.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.5.4 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.5.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.5.4 -> 1.8.3 (*) +| +--- androidx.core:core-ktx:1.12.0 -> 1.13.1 (*) +| +--- androidx.fragment:fragment-ktx:1.8.8 +| | +--- androidx.activity:activity-ktx:1.8.1 -> 1.10.1 (*) @@ -1376,13 +1365,13 @@ ++--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) ++--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) ++--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) -++--- androidx.room:room-runtime:2.7.1 (*) -++--- androidx.sqlite:sqlite-bundled:2.5.1 -+| \--- androidx.sqlite:sqlite-bundled-android:2.5.1 -+| +--- androidx.sqlite:sqlite:2.5.1 (*) +++--- androidx.room:room-runtime:2.7.2 (*) +++--- androidx.sqlite:sqlite-bundled:2.5.2 ++| \--- androidx.sqlite:sqlite-bundled-android:2.5.2 ++| +--- androidx.sqlite:sqlite:2.5.2 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| +--- androidx.sqlite:sqlite:2.5.1 (c) -+| +--- androidx.sqlite:sqlite-framework:2.5.1 (c) ++| +--- androidx.sqlite:sqlite:2.5.2 (c) ++| +--- androidx.sqlite:sqlite-framework:2.5.2 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) ++--- androidx.appcompat:appcompat:1.7.1 (*) ++--- com.mikepenz:iconics-core:5.5.0-b01 (*) @@ -1457,10 +1446,10 @@ +| | | +--- com.google.http-client:google-http-client:1.47.0 (*) +| | | \--- com.google.code.gson:gson:2.11.0 -> 2.12.1 +| | \--- com.google.guava:guava:31.1-android -> 33.4.0-android (*) -+| +--- com.google.auth:google-auth-library-credentials:1.30.0 -> 1.37.0 -+| +--- com.google.auth:google-auth-library-oauth2-http:1.30.0 -> 1.37.0 ++| +--- com.google.auth:google-auth-library-credentials:1.30.0 -> 1.37.1 ++| +--- com.google.auth:google-auth-library-oauth2-http:1.30.0 -> 1.37.1 +| | +--- com.google.auto.value:auto-value-annotations:1.11.0 -+| | +--- com.google.auth:google-auth-library-credentials:1.37.0 ++| | +--- com.google.auth:google-auth-library-credentials:1.37.1 +| | +--- com.google.http-client:google-http-client:1.47.0 (*) +| | +--- com.google.http-client:google-http-client-gson:1.47.0 (*) +| | +--- com.google.guava:guava:33.4.0-android (*) @@ -1468,12 +1457,12 @@ +| +--- com.google.http-client:google-http-client-gson:1.45.2 -> 1.47.0 (*) +| +--- com.google.guava:guava:33.1.0-jre -> 33.4.0-android (*) +| \--- com.google.http-client:google-http-client:1.45.2 -> 1.47.0 (*) -++--- com.google.apis:google-api-services-drive:v3-rev20250511-2.0.0 +++--- com.google.apis:google-api-services-drive:v3-rev20250701-2.0.0 +| \--- com.google.api-client:google-api-client:2.7.2 (*) -++--- com.google.auth:google-auth-library-oauth2-http:1.37.0 (*) -++--- androidx.work:work-runtime-ktx:2.10.1 -+| +--- androidx.work:work-runtime:2.10.1 (*) -+| \--- androidx.work:work-runtime:2.10.1 (c) +++--- com.google.auth:google-auth-library-oauth2-http:1.37.1 (*) +++--- androidx.work:work-runtime-ktx:2.10.2 ++| +--- androidx.work:work-runtime:2.10.2 (*) ++| \--- androidx.work:work-runtime:2.10.2 (c) ++--- com.etebase:client:2.3.2 +| +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| \--- com.squareup.okhttp3:logging-interceptor:3.12.1 @@ -1492,88 +1481,88 @@ +| \--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava ++--- org.osmdroid:osmdroid-android:6.1.20 ++--- androidx.recyclerview:recyclerview:1.4.0 (*) -++--- androidx.compose:compose-bom:2025.06.00 -+| +--- androidx.compose.animation:animation:1.8.2 (c) -+| +--- androidx.compose.animation:animation-core:1.8.2 (c) -+| +--- androidx.compose.foundation:foundation:1.8.2 (c) -+| +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) -+| +--- androidx.compose.material:material:1.8.2 (c) +++--- androidx.compose:compose-bom:2025.06.01 ++| +--- androidx.compose.animation:animation:1.8.3 (c) ++| +--- androidx.compose.animation:animation-core:1.8.3 (c) ++| +--- androidx.compose.foundation:foundation:1.8.3 (c) ++| +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) ++| +--- androidx.compose.material:material:1.8.3 (c) +| +--- androidx.compose.material:material-icons-extended:1.7.8 (c) +| +--- androidx.compose.material3:material3:1.3.2 (c) +| +--- androidx.compose.material3.adaptive:adaptive:1.1.0 (c) +| +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| +--- androidx.compose.material3.adaptive:adaptive-layout-android:1.1.0 (c) +| +--- androidx.compose.material3.adaptive:adaptive-navigation-android:1.1.0 (c) -+| +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) -+| +--- androidx.compose.ui:ui:1.8.2 (c) -+| +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) ++| +--- androidx.compose.ui:ui:1.8.3 (c) ++| +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| +--- androidx.compose.material3.adaptive:adaptive-android:1.1.0 (c) -+| +--- androidx.compose.animation:animation-android:1.8.2 (c) -+| +--- androidx.compose.animation:animation-core-android:1.8.2 (c) -+| +--- androidx.compose.foundation:foundation-android:1.8.2 (c) -+| +--- androidx.compose.foundation:foundation-layout-android:1.8.2 (c) -+| +--- androidx.compose.material:material-android:1.8.2 (c) ++| +--- androidx.compose.animation:animation-android:1.8.3 (c) ++| +--- androidx.compose.animation:animation-core-android:1.8.3 (c) ++| +--- androidx.compose.foundation:foundation-android:1.8.3 (c) ++| +--- androidx.compose.foundation:foundation-layout-android:1.8.3 (c) ++| +--- androidx.compose.material:material-android:1.8.3 (c) +| +--- androidx.compose.material:material-icons-extended-android:1.7.8 (c) +| +--- androidx.compose.material3:material3-android:1.3.2 (c) -+| +--- androidx.compose.runtime:runtime-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-geometry-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-util-android:1.8.2 (c) -+| +--- androidx.compose.runtime:runtime-saveable-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| +--- androidx.compose.material:material-ripple:1.8.2 (c) -+| +--- androidx.compose.ui:ui-graphics:1.8.2 (c) ++| +--- androidx.compose.runtime:runtime-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-geometry-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-util-android:1.8.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| +--- androidx.compose.material:material-ripple:1.8.3 (c) ++| +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| +--- androidx.compose.material:material-icons-core:1.7.8 (c) -+| +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| +--- androidx.compose.ui:ui-text-android:1.8.2 (c) -+| +--- androidx.compose.material:material-ripple-android:1.8.2 (c) -+| +--- androidx.compose.ui:ui-graphics-android:1.8.2 (c) ++| +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| +--- androidx.compose.ui:ui-text-android:1.8.3 (c) ++| +--- androidx.compose.material:material-ripple-android:1.8.3 (c) ++| +--- androidx.compose.ui:ui-graphics-android:1.8.3 (c) +| +--- androidx.compose.material:material-icons-core-android:1.7.8 (c) -+| \--- androidx.compose.ui:ui-unit-android:1.8.2 (c) -++--- androidx.compose.ui:ui -> 1.8.2 (*) -++--- androidx.compose.foundation:foundation -> 1.8.2 (*) -++--- androidx.compose.material:material -> 1.8.2 -+| \--- androidx.compose.material:material-android:1.8.2 ++| \--- androidx.compose.ui:ui-unit-android:1.8.3 (c) +++--- androidx.compose.ui:ui -> 1.8.3 (*) +++--- androidx.compose.foundation:foundation -> 1.8.3 (*) +++--- androidx.compose.material:material -> 1.8.3 ++| \--- androidx.compose.material:material-android:1.8.3 +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.material:material-ripple:1.8.2 (*) -+| +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) ++| +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.material:material-ripple:1.8.3 (*) ++| +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -++--- androidx.compose.runtime:runtime-livedata -> 1.8.2 -+| +--- androidx.compose.runtime:runtime:1.8.2 (*) +++--- androidx.compose.runtime:runtime-livedata -> 1.8.3 ++| +--- androidx.compose.runtime:runtime:1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.3 -> 2.9.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) ++--- androidx.activity:activity-compose:1.10.1 (*) ++--- androidx.compose.material:material-icons-extended -> 1.7.8 (*) ++--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) -++--- androidx.compose.ui:ui-tooling-preview -> 1.8.2 -+| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 (*) +++--- androidx.compose.ui:ui-tooling-preview -> 1.8.3 ++| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 (*) ++--- io.coil-kt:coil-compose:2.7.0 +| +--- io.coil-kt:coil-compose-base:2.7.0 +| | +--- androidx.core:core-ktx:1.12.0 -> 1.13.1 (*) +| | +--- com.google.accompanist:accompanist-drawablepainter:0.32.0 -+| | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.3 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 2.1.21 (*) +| | +--- io.coil-kt:coil-base:2.7.0 @@ -1589,7 +1578,7 @@ +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) +| | | +--- com.squareup.okhttp3:okhttp:4.12.0 (*) +| | | \--- com.squareup.okio:okio:3.9.0 (*) -+| | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.2 (*) ++| | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.3 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) +| +--- io.coil-kt:coil:2.7.0 +| | +--- io.coil-kt:coil-base:2.7.0 (*) @@ -1725,6 +1714,6 @@ +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +\--- com.google.accompanist:accompanist-permissions:0.37.3 + +--- androidx.activity:activity-compose:1.9.0 -> 1.10.1 (*) -+ +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) ++ +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) + +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.2 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) diff --git a/deps_googleplay.txt b/deps_googleplay.txt index 2ea4e573d..0f239fe0a 100644 --- a/deps_googleplay.txt +++ b/deps_googleplay.txt @@ -1,20 +1,20 @@ -++--- androidx.databinding:viewbinding:8.10.1 +++--- androidx.databinding:viewbinding:8.11.0 +| \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 +| \--- androidx.annotation:annotation-jvm:1.9.1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 +| +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 2.1.21 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 2.1.21 (c) -++--- androidx.databinding:databinding-common:8.10.1 -++--- androidx.databinding:databinding-runtime:8.10.1 +++--- androidx.databinding:databinding-common:8.11.0 +++--- androidx.databinding:databinding-runtime:8.11.0 +| +--- androidx.collection:collection:1.0.0 -> 1.5.0 +| | \--- androidx.collection:collection-jvm:1.5.0 +| | +--- androidx.annotation:annotation:1.9.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- androidx.collection:collection-ktx:1.5.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| +--- androidx.databinding:databinding-common:8.10.1 -+| +--- androidx.databinding:viewbinding:8.10.1 (*) ++| +--- androidx.databinding:databinding-common:8.11.0 ++| +--- androidx.databinding:viewbinding:8.11.0 (*) +| \--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 +| \--- androidx.lifecycle:lifecycle-runtime-android:2.9.1 +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -88,15 +88,12 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) +| \--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) -++--- androidx.databinding:databinding-adapters:8.10.1 -+| +--- androidx.databinding:databinding-runtime:8.10.1 (*) -+| \--- androidx.databinding:databinding-common:8.10.1 -++--- androidx.databinding:databinding-ktx:8.10.1 -+| +--- androidx.databinding:databinding-runtime:8.10.1 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0 -> 2.1.21 -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.21 -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +++--- androidx.databinding:databinding-adapters:8.11.0 ++| +--- androidx.databinding:databinding-runtime:8.11.0 (*) ++| \--- androidx.databinding:databinding-common:8.11.0 +++--- androidx.databinding:databinding-ktx:8.11.0 ++| +--- androidx.databinding:databinding-runtime:8.11.0 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1 -> 1.10.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 +| | \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.1 @@ -239,17 +236,17 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) +| \--- androidx.lifecycle:lifecycle-common-java8:2.9.1 (c) -++--- com.google.firebase:firebase-bom:33.14.0 -+| +--- com.google.firebase:firebase-analytics:22.4.0 (c) +++--- com.google.firebase:firebase-bom:33.16.0 ++| +--- com.google.firebase:firebase-analytics:22.5.0 (c) +| +--- com.google.firebase:firebase-config-ktx:22.1.2 (c) -+| +--- com.google.firebase:firebase-crashlytics:19.4.3 (c) ++| +--- com.google.firebase:firebase-crashlytics:19.4.4 (c) +| +--- com.google.firebase:firebase-config:22.1.2 (c) +| +--- com.google.firebase:firebase-common:21.0.0 (c) +| +--- com.google.firebase:firebase-common-ktx:21.0.0 (c) +| +--- com.google.firebase:firebase-installations:18.0.0 (c) +| \--- com.google.firebase:firebase-encoders:17.0.0 (c) -++--- com.google.firebase:firebase-crashlytics -> 19.4.3 -+| +--- com.google.firebase:firebase-sessions:2.1.1 +++--- com.google.firebase:firebase-crashlytics -> 19.4.4 ++| +--- com.google.firebase:firebase-sessions:2.1.2 +| | +--- com.google.firebase:firebase-common:21.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.6.4 -> 1.10.2 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*) @@ -376,7 +373,10 @@ +| | | \--- com.google.android.gms:play-services-tasks:18.1.0 -> 18.2.0 (*) +| | +--- com.google.firebase:firebase-common-ktx:21.0.0 +| | | +--- com.google.firebase:firebase-common:21.0.0 (*) -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 2.1.21 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 2.1.21 ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.21 ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| | | +--- com.google.firebase:firebase-components:18.0.0 (*) +| | | \--- com.google.firebase:firebase-annotations:16.2.0 (*) +| | +--- com.google.firebase:firebase-components:18.0.0 (*) @@ -518,8 +518,8 @@ +| +--- com.google.android.datatransport:transport-backend-cct:3.3.0 (*) +| +--- com.google.android.datatransport:transport-runtime:3.3.0 (*) +| \--- androidx.annotation:annotation:1.5.0 -> 1.9.1 (*) -++--- com.google.firebase:firebase-analytics -> 22.4.0 -+| +--- com.google.android.gms:play-services-measurement:22.4.0 +++--- com.google.firebase:firebase-analytics -> 22.5.0 ++| +--- com.google.android.gms:play-services-measurement:22.5.0 +| | +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 +| | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) @@ -532,9 +532,9 @@ +| | | \--- androidx.print:print:1.0.0 +| | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) +| | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-base:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-base:22.5.0 +| | | \--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-impl:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-impl:22.5.0 +| | | +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| | | +--- androidx.core:core:1.9.0 -> 1.13.1 (*) +| | | +--- androidx.privacysandbox.ads:ads-adservices:1.1.0-beta11 @@ -559,7 +559,7 @@ +| | | | +--- com.google.android.gms:play-services-basement:18.4.0 -> 18.5.0 (*) +| | | | \--- com.google.android.gms:play-services-tasks:18.2.0 (*) +| | | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | | +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) ++| | | +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) +| | | +--- com.google.android.gms:play-services-stats:17.0.2 +| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*) +| | | | \--- com.google.android.gms:play-services-basement:18.0.0 -> 18.5.0 (*) @@ -567,14 +567,14 @@ +| | | \--- com.google.guava:guava:31.1-android -> 33.4.0-android +| | | +--- com.google.guava:failureaccess:1.0.2 +| | | \--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -+| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.5.0 +| | | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | | \--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) ++| | | \--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) +| | \--- com.google.android.gms:play-services-stats:17.0.2 (*) -+| +--- com.google.android.gms:play-services-measurement-api:22.4.0 ++| +--- com.google.android.gms:play-services-measurement-api:22.5.0 +| | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.4.0 (*) ++| | +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) ++| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.5.0 (*) +| | +--- com.google.android.gms:play-services-tasks:18.2.0 (*) +| | +--- com.google.firebase:firebase-common:21.0.0 (*) +| | +--- com.google.firebase:firebase-common-ktx:21.0.0 (*) @@ -584,11 +584,11 @@ +| | +--- com.google.firebase:firebase-measurement-connector:19.0.0 -> 20.0.1 (*) +| | +--- com.google.guava:guava:31.1-android -> 33.4.0-android (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 -> 2.1.21 (*) -+| \--- com.google.android.gms:play-services-measurement-sdk:22.4.0 ++| \--- com.google.android.gms:play-services-measurement-sdk:22.5.0 +| +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) -+| \--- com.google.android.gms:play-services-measurement-impl:22.4.0 (*) ++| +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) ++| \--- com.google.android.gms:play-services-measurement-impl:22.5.0 (*) ++--- com.google.firebase:firebase-config-ktx -> 22.1.2 +| +--- com.google.firebase:firebase-config:22.1.2 +| | +--- com.google.firebase:firebase-config-interop:16.0.1 (*) @@ -722,49 +722,49 @@ +| +--- com.google.android.horologist:horologist-annotations:0.6.23 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| +--- com.google.android.horologist:horologist-datalayer:0.6.23 -+| | +--- androidx.compose:compose-bom:2025.02.00 -> 2025.06.00 -+| | | +--- androidx.compose.animation:animation:1.8.2 (c) -+| | | +--- androidx.compose.animation:animation-core:1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation:1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) -+| | | +--- androidx.compose.material:material:1.8.2 (c) ++| | +--- androidx.compose:compose-bom:2025.02.00 -> 2025.06.01 ++| | | +--- androidx.compose.animation:animation:1.8.3 (c) ++| | | +--- androidx.compose.animation:animation-core:1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation:1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) ++| | | +--- androidx.compose.material:material:1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.7.8 (c) +| | | +--- androidx.compose.material3:material3:1.3.2 (c) +| | | +--- androidx.compose.material3.adaptive:adaptive:1.1.0 (c) +| | | +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| | | +--- androidx.compose.material3.adaptive:adaptive-layout-android:1.1.0 (c) +| | | +--- androidx.compose.material3.adaptive:adaptive-navigation-android:1.1.0 (c) -+| | | +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| | | +--- androidx.compose.material3.adaptive:adaptive-android:1.1.0 (c) -+| | | +--- androidx.compose.animation:animation-android:1.8.2 (c) -+| | | +--- androidx.compose.animation:animation-core-android:1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation-android:1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation-layout-android:1.8.2 (c) -+| | | +--- androidx.compose.material:material-android:1.8.2 (c) ++| | | +--- androidx.compose.animation:animation-android:1.8.3 (c) ++| | | +--- androidx.compose.animation:animation-core-android:1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation-android:1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation-layout-android:1.8.3 (c) ++| | | +--- androidx.compose.material:material-android:1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-extended-android:1.7.8 (c) +| | | +--- androidx.compose.material3:material3-android:1.3.2 (c) -+| | | +--- androidx.compose.runtime:runtime-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-geometry-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-util-android:1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | +--- androidx.compose.material:material-ripple:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-geometry-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-util-android:1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | +--- androidx.compose.material:material-ripple:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-core:1.7.8 (c) -+| | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-text-android:1.8.2 (c) -+| | | +--- androidx.compose.material:material-ripple-android:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-graphics-android:1.8.2 (c) ++| | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-text-android:1.8.3 (c) ++| | | +--- androidx.compose.material:material-ripple-android:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-graphics-android:1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-core-android:1.7.8 (c) -+| | | \--- androidx.compose.ui:ui-unit-android:1.8.2 (c) ++| | | \--- androidx.compose.ui:ui-unit-android:1.8.3 (c) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.8.1 -> 1.10.2 (*) +| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) @@ -918,41 +918,41 @@ +| | \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations-jvm:1.13.0 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) -+| +--- androidx.room:room-runtime:2.7.1 -+| | \--- androidx.room:room-runtime-android:2.7.1 ++| +--- androidx.room:room-runtime:2.7.2 ++| | \--- androidx.room:room-runtime-android:2.7.2 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | +--- androidx.arch.core:core-runtime:2.2.0 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | +--- androidx.room:room-common:2.7.1 -+| | | \--- androidx.room:room-common-jvm:2.7.1 ++| | +--- androidx.room:room-common:2.7.2 ++| | | \--- androidx.room:room-common-jvm:2.7.2 +| | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.room:room-ktx:2.7.1 (c) -+| | | +--- androidx.room:room-runtime:2.7.1 (c) ++| | | +--- androidx.room:room-ktx:2.7.2 (c) ++| | | +--- androidx.room:room-runtime:2.7.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- androidx.sqlite:sqlite:2.5.0 -> 2.5.1 -+| | | \--- androidx.sqlite:sqlite-android:2.5.1 ++| | +--- androidx.sqlite:sqlite:2.5.1 -> 2.5.2 ++| | | \--- androidx.sqlite:sqlite-android:2.5.2 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.sqlite:sqlite-framework:2.5.1 (c) -+| | | +--- androidx.sqlite:sqlite-bundled:2.5.1 (c) ++| | | +--- androidx.sqlite:sqlite-framework:2.5.2 (c) ++| | | +--- androidx.sqlite:sqlite-bundled:2.5.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- androidx.sqlite:sqlite-framework:2.5.0 -> 2.5.1 -+| | | \--- androidx.sqlite:sqlite-framework-android:2.5.1 ++| | +--- androidx.sqlite:sqlite-framework:2.5.1 -> 2.5.2 ++| | | \--- androidx.sqlite:sqlite-framework-android:2.5.2 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | +--- androidx.sqlite:sqlite:2.5.1 (*) ++| | | +--- androidx.sqlite:sqlite:2.5.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.sqlite:sqlite:2.5.1 (c) -+| | | +--- androidx.sqlite:sqlite-bundled:2.5.1 (c) ++| | | +--- androidx.sqlite:sqlite:2.5.2 (c) ++| | | +--- androidx.sqlite:sqlite-bundled:2.5.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | +--- org.jspecify:jspecify:1.0.0 -+| | +--- androidx.room:room-common:2.7.1 (c) ++| | +--- androidx.room:room-common:2.7.2 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | \--- androidx.room:room-ktx:2.7.1 (c) ++| | \--- androidx.room:room-ktx:2.7.2 (c) +| +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.2 +| | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.2 +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) @@ -969,56 +969,56 @@ +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) +| \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) ++--- project :kmp -+| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 ++| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.8.2 -+| | | \--- androidx.compose.runtime:runtime-android:1.8.2 ++| | +--- androidx.compose.runtime:runtime:1.8.3 ++| | | \--- androidx.compose.runtime:runtime-android:1.8.3 +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | +--- androidx.collection:collection:1.5.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | \--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | \--- androidx.compose.ui:ui-util:1.8.3 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| +--- project :data (*) -+| +--- org.jetbrains.compose.components:components-resources:1.8.1 -+| | \--- org.jetbrains.compose.components:components-resources-android:1.8.1 ++| +--- org.jetbrains.compose.components:components-resources:1.8.2 ++| | \--- org.jetbrains.compose.components:components-resources-android:1.8.2 +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 -+| | | +--- androidx.compose.runtime:runtime:1.8.1 -> 1.8.2 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 ++| | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 +| | | | \--- androidx.annotation:annotation:1.9.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 +| | | | +--- androidx.collection:collection:1.5.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | +--- org.jetbrains.compose.foundation:foundation:1.8.1 -+| | | +--- androidx.compose.foundation:foundation:1.8.1 -> 1.8.2 -+| | | | \--- androidx.compose.foundation:foundation-android:1.8.2 ++| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 ++| | | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 ++| | | | \--- androidx.compose.foundation:foundation-android:1.8.3 +| | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation:1.8.2 -+| | | | | \--- androidx.compose.animation:animation-android:1.8.2 ++| | | | +--- androidx.compose.animation:animation:1.8.3 ++| | | | | \--- androidx.compose.animation:animation-android:1.8.3 +| | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | +--- androidx.compose.animation:animation-core:1.8.2 -+| | | | | | \--- androidx.compose.animation:animation-core-android:1.8.2 ++| | | | | +--- androidx.compose.animation:animation-core:1.8.3 ++| | | | | | \--- androidx.compose.animation:animation-core-android:1.8.3 +| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui:1.8.2 -+| | | | | | | \--- androidx.compose.ui:ui-android:1.8.2 ++| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui:1.8.3 ++| | | | | | | \--- androidx.compose.ui:ui-android:1.8.3 +| | | | | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 +| | | | | | | | +--- androidx.activity:activity:1.10.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.1 (*) @@ -1055,101 +1055,101 @@ +| | | | | | | | \--- androidx.core:core:1.1.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -+| | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 ++| | | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.runtime:runtime-livedata:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.runtime:runtime-livedata:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -+| | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 ++| | | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 +| | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) +| | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -+| | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 ++| | | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 +| | | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 +| | | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) +| | | | | | | | | | \--- androidx.collection:collection:1.5.0 (c) -+| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | | +--- androidx.graphics:graphics-path:1.0.1 +| | | | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | | | | +--- androidx.emoji2:emoji2:1.4.0 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 +| | | | | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.13.1 (*) @@ -1158,7 +1158,7 @@ +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) @@ -1183,169 +1183,169 @@ +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | | | | | | +--- org.jspecify:jspecify:1.0.0 -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| | | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) -+| | | | | | +--- androidx.compose.animation:animation:1.8.2 (c) ++| | | | | | +--- androidx.compose.animation:animation:1.8.3 (c) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -+| | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 ++| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 ++| | | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 +| | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -+| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) ++| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- androidx.compose.foundation:foundation:1.8.2 (c) ++| | | | | | +--- androidx.compose.foundation:foundation:1.8.3 (c) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- androidx.compose.animation:animation-core:1.8.2 (c) ++| | | | | +--- androidx.compose.animation:animation-core:1.8.3 (c) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-text:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | +--- androidx.core:core:1.13.1 (*) +| | | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- org.jetbrains.compose.animation:animation:1.8.1 -+| | | | +--- androidx.compose.animation:animation:1.8.1 -> 1.8.2 (*) -+| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.1 -+| | | | | +--- androidx.compose.animation:animation-core:1.8.1 -> 1.8.2 (*) -+| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui:1.8.1 -+| | | | | | +--- androidx.compose.ui:ui:1.8.1 -> 1.8.2 (*) ++| | | +--- org.jetbrains.compose.animation:animation:1.8.2 ++| | | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) ++| | | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 ++| | | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) ++| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.5 -> 2.9.1 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 +| | | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.5 -> 2.9.1 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.5 -> 2.9.1 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) +| | | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 +| | | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.5 -> 2.9.1 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 -+| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.1 -> 1.8.2 (*) -+| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) ++| | | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.1 -> 1.8.2 (*) -+| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) ++| | | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 -+| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.1 -> 1.8.2 (*) -+| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 ++| | | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) ++| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| +--- org.jetbrains.compose.material3:material3:1.8.1 ++| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| +--- org.jetbrains.compose.material3:material3:1.8.2 +| | +--- androidx.compose.material3:material3:1.3.2 +| | | \--- androidx.compose.material3:material3-android:1.3.2 +| | | +--- androidx.activity:activity-compose:1.8.2 -> 1.10.1 +| | | | +--- androidx.activity:activity-ktx:1.10.1 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) +| | | | +--- androidx.core:core-ktx:1.13.0 -> 1.13.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) @@ -1359,26 +1359,26 @@ +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) +| | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) +| | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.8 +| | | | \--- androidx.compose.material:material-icons-core-android:1.7.8 -+| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) ++| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) -+| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 -+| | | | \--- androidx.compose.material:material-ripple-android:1.8.2 ++| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.3 ++| | | | \--- androidx.compose.material:material-ripple-android:1.8.3 +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | \--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) @@ -1396,33 +1396,33 @@ +| | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) -+| | +--- org.jetbrains.compose.animation:animation-core:1.8.1 (*) -+| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | +--- org.jetbrains.compose.material:material-ripple:1.8.1 -+| | | +--- androidx.compose.material:material-ripple:1.8.1 -> 1.8.2 (*) -+| | | +--- org.jetbrains.compose.animation:animation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) ++| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | +--- org.jetbrains.compose.material:material-ripple:1.8.2 ++| | | +--- androidx.compose.material:material-ripple:1.8.2 -> 1.8.3 (*) ++| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.1 -+| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.1 ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.2 ++| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.2 +| | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (c) ++| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 +| | +--- androidx.compose.material:material-icons-extended:1.7.6 -> 1.7.8 @@ -1430,18 +1430,18 @@ +| | | \--- androidx.compose.material:material-icons-core:1.7.8 (*) +| | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 +| | | +--- androidx.compose.material:material-icons-core:1.7.6 -> 1.7.8 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| +--- androidx.datastore:datastore-preferences:1.1.7 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) @@ -1473,33 +1473,33 @@ +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| \--- com.mikepenz:iconics-core:5.5.0-b01 +| +--- androidx.appcompat:appcompat:1.7.0 -> 1.7.1 (*) -+| +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.1 (*) ++| +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.2 (*) +| +--- com.mikepenz:iconics-typeface-api:5.5.0-b01 -+| | +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.1 (*) ++| | +--- org.jetbrains.compose.runtime:runtime:1.6.10 -> 1.8.2 (*) +| | +--- androidx.core:core-ktx:1.10.1 -> 1.13.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0 -> 2.1.21 (*) +| | \--- androidx.startup:startup-runtime:1.1.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) -++--- androidx.navigation:navigation-compose:2.9.0 -+| \--- androidx.navigation:navigation-compose-android:2.9.0 +++--- androidx.navigation:navigation-compose:2.9.1 ++| \--- androidx.navigation:navigation-compose-android:2.9.1 +| +--- androidx.activity:activity:1.8.0 -> 1.10.1 (*) +| +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) +| +--- androidx.annotation:annotation:1.8.0 -> 1.9.1 (*) +| +--- androidx.collection:collection:1.4.5 -> 1.5.0 (*) -+| +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) ++| +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.animation:animation-core:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-common:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime-compose:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) -+| +--- androidx.navigation:navigation-common:2.9.0 -+| | \--- androidx.navigation:navigation-common-android:2.9.0 ++| +--- androidx.navigation:navigation-common:2.9.1 ++| | \--- androidx.navigation:navigation-common-android:2.9.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | +--- androidx.core:core-ktx:1.1.0 -> 1.13.1 (*) @@ -1509,14 +1509,13 @@ +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.0 -> 2.9.1 (*) +| | +--- androidx.profileinstaller:profileinstaller:1.4.0 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (*) -+| | +--- androidx.savedstate:savedstate-ktx:1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| | +--- androidx.navigation:navigation-compose:2.9.0 (c) -+| | +--- androidx.navigation:navigation-runtime:2.9.0 (c) ++| | +--- androidx.navigation:navigation-compose:2.9.1 (c) ++| | +--- androidx.navigation:navigation-runtime:2.9.1 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) -+| +--- androidx.navigation:navigation-runtime:2.9.0 -+| | \--- androidx.navigation:navigation-runtime-android:2.9.0 ++| +--- androidx.navigation:navigation-runtime:2.9.1 ++| | \--- androidx.navigation:navigation-runtime-android:2.9.1 +| | +--- androidx.activity:activity-ktx:1.7.1 -> 1.10.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) @@ -1526,18 +1525,18 @@ +| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.8.7 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.7 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7 -> 2.9.1 (*) -+| | +--- androidx.navigation:navigation-common:2.9.0 (*) ++| | +--- androidx.navigation:navigation-common:2.9.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| | +--- androidx.navigation:navigation-common:2.9.0 (c) -+| | +--- androidx.navigation:navigation-compose:2.9.0 (c) ++| | +--- androidx.navigation:navigation-common:2.9.1 (c) ++| | +--- androidx.navigation:navigation-compose:2.9.1 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) +| +--- androidx.savedstate:savedstate:1.3.0 (*) +| +--- androidx.savedstate:savedstate-compose:1.3.0 +| | \--- androidx.savedstate:savedstate-compose-android:1.3.0 +| | +--- androidx.annotation:annotation:1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.5 -> 1.8.3 (*) +| | +--- androidx.core:core-ktx:1.13.1 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (*) +| | +--- androidx.savedstate:savedstate:1.3.0 (c) @@ -1545,28 +1544,28 @@ +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*) +| +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3 -> 1.8.1 (*) -+| +--- androidx.navigation:navigation-common:2.9.0 (c) -+| +--- androidx.navigation:navigation-runtime:2.9.0 (c) ++| +--- androidx.navigation:navigation-common:2.9.1 (c) ++| +--- androidx.navigation:navigation-runtime:2.9.1 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (c) ++--- androidx.compose.material3.adaptive:adaptive-navigation-android:1.1.0 +| +--- androidx.activity:activity-compose:1.8.2 -> 1.10.1 (*) +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) ++| +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) +| +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 +| | \--- androidx.compose.material3.adaptive:adaptive-layout-android:1.1.0 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.animation:animation-core:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation-layout:1.6.5 -> 1.8.2 (*) ++| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.animation:animation-core:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation-layout:1.6.5 -> 1.8.3 (*) +| | +--- androidx.compose.material3.adaptive:adaptive:1.1.0 +| | | \--- androidx.compose.material3.adaptive:adaptive-android:1.1.0 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| | | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.2 (*) ++| | | +--- androidx.compose.foundation:foundation:1.6.5 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.3 (*) +| | | +--- androidx.window:window:1.3.0 +| | | | +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.5.0 (*) @@ -1585,16 +1584,16 @@ +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -+| | +--- androidx.compose.runtime:runtime:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-geometry:1.6.5 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.3 (*) +| | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | +--- androidx.window:window-core:1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- androidx.compose.material3.adaptive:adaptive:1.1.0 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) -+| +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.2 (*) ++| +--- androidx.compose.ui:ui-util:1.6.5 -> 1.8.3 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- androidx.compose.material3.adaptive:adaptive-layout:1.1.0 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) @@ -1605,25 +1604,15 @@ +| \--- com.squareup.okhttp3:okhttp:4.10.0 -> 4.12.0 +| +--- com.squareup.okio:okio:3.6.0 -> 3.9.0 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 2.1.21 (*) -++--- com.github.tasks:ical4android:12fe73a -+| +--- org.mnode.ical4j:ical4j:3.2.7 -+| | +--- javax.cache:cache-api:1.1.1 -+| | +--- org.threeten:threeten-extra:1.7.0 -+| | +--- org.jparsec:jparsec:3.1 -+| | +--- com.github.erosb:everit-json-schema:1.14.1 -+| | | +--- commons-validator:commons-validator:1.7 -+| | | | +--- commons-beanutils:commons-beanutils:1.9.4 -+| | | | | \--- commons-collections:commons-collections:3.2.2 -+| | | | +--- commons-digester:commons-digester:2.1 -+| | | | \--- commons-collections:commons-collections:3.2.2 -+| | | +--- com.damnhandy:handy-uri-templates:2.1.8 -+| | | | \--- joda-time:joda-time:2.10.2 -+| | | \--- com.google.re2j:re2j:1.6 -+| | +--- org.slf4j:slf4j-api:1.7.36 -> 2.0.16 +++--- com.github.tasks:ical4android:2fe63dd ++| +--- org.mnode.ical4j:ical4j:3.2.19 ++| | +--- org.slf4j:slf4j-api:2.0.9 -> 2.0.16 +| | +--- commons-codec:commons-codec:1.15 -> 1.17.1 +| | +--- org.apache.commons:commons-lang3:3.12.0 +| | +--- org.apache.commons:commons-collections4:4.4 -+| | \--- commons-validator:commons-validator:1.7 (*) ++| | \--- commons-validator:commons-validator:1.7 ++| | +--- commons-beanutils:commons-beanutils:1.9.4 ++| | \--- commons-digester:commons-digester:2.1 +| +--- org.apache.commons:commons-collections4:4.2 -> 4.4 +| +--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.21 -> 2.1.21 (*) @@ -1632,10 +1621,10 @@ +| | \--- org.slf4j:slf4j-api:2.0.3 -> 2.0.16 +| \--- androidx.core:core-ktx:1.9.0 -> 1.13.1 (*) ++--- com.github.bitfireAT:cert4android:7814052 -+| +--- androidx.databinding:databinding-common:7.2.0 -> 8.10.1 -+| +--- androidx.databinding:databinding-runtime:7.2.0 -> 8.10.1 (*) -+| +--- androidx.databinding:databinding-adapters:7.2.0 -> 8.10.1 (*) -+| +--- androidx.databinding:databinding-ktx:7.2.0 -> 8.10.1 (*) ++| +--- androidx.databinding:databinding-common:7.2.0 -> 8.11.0 ++| +--- androidx.databinding:databinding-runtime:7.2.0 -> 8.11.0 (*) ++| +--- androidx.databinding:databinding-adapters:7.2.0 -> 8.11.0 (*) ++| +--- androidx.databinding:databinding-ktx:7.2.0 -> 8.11.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 2.1.21 (*) +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.7.1 (*) +| +--- androidx.cardview:cardview:1.0.0 @@ -1744,33 +1733,33 @@ +| +--- javax.inject:javax.inject:1 +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (*) ++--- androidx.hilt:hilt-navigation-compose:1.2.0 -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) +| +--- androidx.hilt:hilt-navigation:1.2.0 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) -+| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.9.0 (*) ++| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.9.1 (*) +| | +--- com.google.dagger:hilt-android:2.49 -> 2.56.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.9.1 (*) -+| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.9.0 (*) ++| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.9.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) ++--- androidx.hilt:hilt-work:1.2.0 +| +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| +--- androidx.hilt:hilt-common:1.2.0 +| | \--- com.google.dagger:hilt-core:2.49 -> 2.56.2 (*) -+| +--- androidx.work:work-runtime:2.3.4 -> 2.10.1 ++| +--- androidx.work:work-runtime:2.3.4 -> 2.10.2 +| | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | +--- androidx.concurrent:concurrent-futures-ktx:1.1.0 (*) +| | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | +--- androidx.lifecycle:lifecycle-livedata:2.6.2 -> 2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-service:2.6.2 -> 2.9.1 (*) -+| | +--- androidx.room:room-ktx:2.6.1 -> 2.7.1 -+| | | +--- androidx.room:room-common:2.7.1 (*) -+| | | +--- androidx.room:room-runtime:2.7.1 (*) ++| | +--- androidx.room:room-ktx:2.6.1 -> 2.7.2 ++| | | +--- androidx.room:room-common:2.7.2 (*) ++| | | +--- androidx.room:room-runtime:2.7.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) -+| | | +--- androidx.room:room-common:2.7.1 (c) -+| | | +--- androidx.room:room-runtime:2.7.1 (c) ++| | | +--- androidx.room:room-common:2.7.2 (c) ++| | | +--- androidx.room:room-runtime:2.7.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | +--- androidx.startup:startup-runtime:1.1.1 (*) +| | +--- androidx.tracing:tracing-ktx:1.2.0 @@ -1780,7 +1769,7 @@ +| | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.10.2 (*) -+| | +--- androidx.work:work-runtime-ktx:2.10.1 (c) ++| | +--- androidx.work:work-runtime-ktx:2.10.2 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) +| \--- com.google.dagger:hilt-android:2.49 -> 2.56.2 (*) ++--- androidx.core:core-splashscreen:1.0.1 @@ -1788,8 +1777,8 @@ +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) ++--- androidx.datastore:datastore-preferences:1.1.7 (*) ++--- androidx.fragment:fragment-compose:1.8.8 -+| +--- androidx.compose.runtime:runtime:1.5.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.5.4 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.5.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.5.4 -> 1.8.3 (*) +| +--- androidx.core:core-ktx:1.12.0 -> 1.13.1 (*) +| +--- androidx.fragment:fragment-ktx:1.8.8 +| | +--- androidx.activity:activity-ktx:1.8.1 -> 1.10.1 (*) @@ -1808,13 +1797,13 @@ ++--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) ++--- androidx.lifecycle:lifecycle-runtime-compose:2.9.1 (*) ++--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) -++--- androidx.room:room-runtime:2.7.1 (*) -++--- androidx.sqlite:sqlite-bundled:2.5.1 -+| \--- androidx.sqlite:sqlite-bundled-android:2.5.1 -+| +--- androidx.sqlite:sqlite:2.5.1 (*) +++--- androidx.room:room-runtime:2.7.2 (*) +++--- androidx.sqlite:sqlite-bundled:2.5.2 ++| \--- androidx.sqlite:sqlite-bundled-android:2.5.2 ++| +--- androidx.sqlite:sqlite:2.5.2 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| +--- androidx.sqlite:sqlite:2.5.1 (c) -+| +--- androidx.sqlite:sqlite-framework:2.5.1 (c) ++| +--- androidx.sqlite:sqlite:2.5.2 (c) ++| +--- androidx.sqlite:sqlite-framework:2.5.2 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) ++--- androidx.appcompat:appcompat:1.7.1 (*) ++--- com.mikepenz:iconics-core:5.5.0-b01 (*) @@ -1886,10 +1875,10 @@ +| | | +--- com.google.http-client:google-http-client:1.47.0 (*) +| | | \--- com.google.code.gson:gson:2.11.0 -> 2.12.1 +| | \--- com.google.guava:guava:31.1-android -> 33.4.0-android (*) -+| +--- com.google.auth:google-auth-library-credentials:1.30.0 -> 1.37.0 -+| +--- com.google.auth:google-auth-library-oauth2-http:1.30.0 -> 1.37.0 ++| +--- com.google.auth:google-auth-library-credentials:1.30.0 -> 1.37.1 ++| +--- com.google.auth:google-auth-library-oauth2-http:1.30.0 -> 1.37.1 +| | +--- com.google.auto.value:auto-value-annotations:1.11.0 -+| | +--- com.google.auth:google-auth-library-credentials:1.37.0 ++| | +--- com.google.auth:google-auth-library-credentials:1.37.1 +| | +--- com.google.http-client:google-http-client:1.47.0 (*) +| | +--- com.google.http-client:google-http-client-gson:1.47.0 (*) +| | +--- com.google.guava:guava:33.4.0-android (*) @@ -1897,12 +1886,12 @@ +| +--- com.google.http-client:google-http-client-gson:1.45.2 -> 1.47.0 (*) +| +--- com.google.guava:guava:33.1.0-jre -> 33.4.0-android (*) +| \--- com.google.http-client:google-http-client:1.45.2 -> 1.47.0 (*) -++--- com.google.apis:google-api-services-drive:v3-rev20250511-2.0.0 +++--- com.google.apis:google-api-services-drive:v3-rev20250701-2.0.0 +| \--- com.google.api-client:google-api-client:2.7.2 (*) -++--- com.google.auth:google-auth-library-oauth2-http:1.37.0 (*) -++--- androidx.work:work-runtime-ktx:2.10.1 -+| +--- androidx.work:work-runtime:2.10.1 (*) -+| \--- androidx.work:work-runtime:2.10.1 (c) +++--- com.google.auth:google-auth-library-oauth2-http:1.37.1 (*) +++--- androidx.work:work-runtime-ktx:2.10.2 ++| +--- androidx.work:work-runtime:2.10.2 (*) ++| \--- androidx.work:work-runtime:2.10.2 (c) ++--- com.etebase:client:2.3.2 +| +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| \--- com.squareup.okhttp3:logging-interceptor:3.12.1 @@ -1915,46 +1904,46 @@ +| \--- androidx.browser:browser:1.3.0 (*) ++--- org.osmdroid:osmdroid-android:6.1.20 ++--- androidx.recyclerview:recyclerview:1.4.0 (*) -++--- androidx.compose:compose-bom:2025.06.00 (*) -++--- androidx.compose.ui:ui -> 1.8.2 (*) -++--- androidx.compose.foundation:foundation -> 1.8.2 (*) -++--- androidx.compose.material:material -> 1.8.2 -+| \--- androidx.compose.material:material-android:1.8.2 +++--- androidx.compose:compose-bom:2025.06.01 (*) +++--- androidx.compose.ui:ui -> 1.8.3 (*) +++--- androidx.compose.foundation:foundation -> 1.8.3 (*) +++--- androidx.compose.material:material -> 1.8.3 ++| \--- androidx.compose.material:material-android:1.8.3 +| +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| +--- androidx.compose.animation:animation:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.material:material-ripple:1.8.2 (*) -+| +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.2 (*) ++| +--- androidx.compose.animation:animation:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.animation:animation-core:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation-layout:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.material:material-ripple:1.8.3 (*) ++| +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-text:1.7.4 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-util:1.7.4 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -++--- androidx.compose.runtime:runtime-livedata -> 1.8.2 -+| +--- androidx.compose.runtime:runtime:1.8.2 (*) +++--- androidx.compose.runtime:runtime-livedata -> 1.8.3 ++| +--- androidx.compose.runtime:runtime:1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.3 -> 2.9.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| +--- androidx.compose.runtime:runtime:1.8.2 (c) -+| +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| +--- androidx.compose.runtime:runtime:1.8.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) ++--- androidx.activity:activity-compose:1.10.1 (*) ++--- androidx.compose.material:material-icons-extended -> 1.7.8 (*) ++--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 (*) -++--- androidx.compose.ui:ui-tooling-preview -> 1.8.2 -+| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 (*) +++--- androidx.compose.ui:ui-tooling-preview -> 1.8.3 ++| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 (*) ++--- io.coil-kt:coil-compose:2.7.0 +| +--- io.coil-kt:coil-compose-base:2.7.0 +| | +--- androidx.core:core-ktx:1.12.0 -> 1.13.1 (*) +| | +--- com.google.accompanist:accompanist-drawablepainter:0.32.0 -+| | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.3 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 2.1.21 (*) +| | +--- io.coil-kt:coil-base:2.7.0 @@ -1970,7 +1959,7 @@ +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) +| | | +--- com.squareup.okhttp3:okhttp:4.12.0 (*) +| | | \--- com.squareup.okio:okio:3.9.0 (*) -+| | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.2 (*) ++| | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.3 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) +| +--- io.coil-kt:coil:2.7.0 +| | +--- io.coil-kt:coil-base:2.7.0 (*) @@ -2106,6 +2095,6 @@ +| \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +\--- com.google.accompanist:accompanist-permissions:0.37.3 + +--- androidx.activity:activity-compose:1.9.0 -> 1.10.1 (*) -+ +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) ++ +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) + +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.2 (*) + \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.1.21 (*) diff --git a/deps_wear.txt b/deps_wear.txt index 5e0fe6e70..526ee12ab 100644 --- a/deps_wear.txt +++ b/deps_wear.txt @@ -2,12 +2,12 @@ +| +--- org.jetbrains:annotations:13.0 -> 23.0.0 +| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.9.0 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.9.0 (c) -++--- org.jetbrains.compose.components:components-resources:1.8.1 -+| \--- org.jetbrains.compose.components:components-resources-android:1.8.1 +++--- org.jetbrains.compose.components:components-resources:1.8.2 ++| \--- org.jetbrains.compose.components:components-resources-android:1.8.2 +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.1.21 (*) -+| +--- org.jetbrains.compose.runtime:runtime:1.8.1 -+| | +--- androidx.compose.runtime:runtime:1.8.1 -> 1.8.2 -+| | | \--- androidx.compose.runtime:runtime-android:1.8.2 ++| +--- org.jetbrains.compose.runtime:runtime:1.8.2 ++| | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 ++| | | \--- androidx.compose.runtime:runtime-android:1.8.3 +| | | +--- androidx.annotation:annotation-experimental:1.4.1 +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 2.1.21 (*) +| | | +--- androidx.collection:collection:1.5.0 @@ -33,33 +33,33 @@ +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) -+| | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 ++| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 +| | | \--- androidx.annotation:annotation:1.9.1 (*) -+| | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 ++| | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 +| | | +--- androidx.collection:collection:1.5.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| +--- org.jetbrains.compose.foundation:foundation:1.8.1 -+| | +--- androidx.compose.foundation:foundation:1.8.1 -> 1.8.2 -+| | | \--- androidx.compose.foundation:foundation-android:1.8.2 ++| +--- org.jetbrains.compose.foundation:foundation:1.8.2 ++| | +--- androidx.compose.foundation:foundation:1.8.2 -> 1.8.3 ++| | | \--- androidx.compose.foundation:foundation-android:1.8.3 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | +--- androidx.collection:collection:1.5.0 (*) -+| | | +--- androidx.compose.animation:animation:1.8.2 -+| | | | \--- androidx.compose.animation:animation-android:1.8.2 ++| | | +--- androidx.compose.animation:animation:1.8.3 ++| | | | \--- androidx.compose.animation:animation-android:1.8.3 +| | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation-core:1.8.2 -+| | | | | \--- androidx.compose.animation:animation-core-android:1.8.2 ++| | | | +--- androidx.compose.animation:animation-core:1.8.3 ++| | | | | \--- androidx.compose.animation:animation-core-android:1.8.3 +| | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui:1.8.2 -+| | | | | | \--- androidx.compose.ui:ui-android:1.8.2 ++| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui:1.8.3 ++| | | | | | \--- androidx.compose.ui:ui-android:1.8.3 +| | | | | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.10.1 +| | | | | | | +--- androidx.activity:activity:1.10.1 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -283,95 +283,95 @@ +| | | | | | | \--- androidx.core:core:1.1.0 -> 1.13.1 (*) +| | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -+| | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.2 ++| | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 ++| | | | | | | \--- androidx.compose.runtime:runtime-saveable-android:1.8.3 +| | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (c) ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -+| | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 ++| | | | | | | \--- androidx.compose.ui:ui-geometry-android:1.8.3 +| | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-util-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.3 -> 1.5.0 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (c) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -+| | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 ++| | | | | | | \--- androidx.compose.ui:ui-graphics-android:1.8.3 +| | | | | | | +--- androidx.annotation:annotation:1.7.0 -> 1.9.1 (*) +| | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -+| | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.2 ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 ++| | | | | | | | \--- androidx.compose.ui:ui-unit-android:1.8.3 +| | | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) +| | | | | | | | +--- androidx.collection:collection-ktx:1.4.2 -> 1.5.0 +| | | | | | | | | +--- androidx.collection:collection:1.5.0 (*) +| | | | | | | | | \--- androidx.collection:collection:1.5.0 (c) -+| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | | | \--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | | \--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.graphics:graphics-path:1.0.1 +| | | | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -+| | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-text:1.8.3 ++| | | | | | | \--- androidx.compose.ui:ui-text-android:1.8.3 +| | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | | | +--- androidx.emoji2:emoji2:1.4.0 +| | | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*) @@ -400,17 +400,17 @@ +| | | | | | | | \--- androidx.emoji2:emoji2-views-helper:1.4.0 (c) +| | | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) -+| | | | | | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | | | | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | | | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 +| | | | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.13.1 (*) @@ -419,7 +419,7 @@ +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.7 -> 2.9.1 +| | | | | | | \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.9.1 +| | | | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.2 (*) ++| | | | | | | +--- androidx.compose.runtime:runtime:1.7.1 -> 1.8.3 (*) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.9.1 (*) +| | | | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.9.1 (*) +| | | | | | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (c) @@ -443,160 +443,160 @@ +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.8.1 (*) +| | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) +| | | | | | +--- org.jspecify:jspecify:1.0.0 -+| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | | | | +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (c) ++| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | | | | +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| | | | | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (c) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) -+| | | | | +--- androidx.compose.animation:animation:1.8.2 (c) ++| | | | | +--- androidx.compose.animation:animation:1.8.3 (c) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -+| | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.2 ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.3 ++| | | | | \--- androidx.compose.foundation:foundation-layout-android:1.8.3 +| | | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.2 (*) -+| | | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-unit:1.8.2 (*) -+| | | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.8.3 (*) ++| | | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-unit:1.8.3 (*) ++| | | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | | +--- androidx.core:core:1.7.0 -> 1.13.1 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- androidx.compose.foundation:foundation:1.8.2 (c) ++| | | | | +--- androidx.compose.foundation:foundation:1.8.3 (c) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-geometry:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-graphics:1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-geometry:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-graphics:1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.compose.animation:animation-core:1.8.2 (c) ++| | | | +--- androidx.compose.animation:animation-core:1.8.3 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (*) -+| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-text:1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-util:1.8.2 (*) ++| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (*) ++| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-text:1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.8.3 (*) +| | | +--- androidx.core:core:1.13.1 (*) +| | | +--- androidx.emoji2:emoji2:1.3.0 -> 1.4.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.compose.foundation:foundation-layout:1.8.2 (c) ++| | | +--- androidx.compose.foundation:foundation-layout:1.8.3 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | +--- org.jetbrains.compose.animation:animation:1.8.1 -+| | | +--- androidx.compose.animation:animation:1.8.1 -> 1.8.2 (*) -+| | | +--- org.jetbrains.compose.animation:animation-core:1.8.1 -+| | | | +--- androidx.compose.animation:animation-core:1.8.1 -> 1.8.2 (*) -+| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui:1.8.1 -+| | | | | +--- androidx.compose.ui:ui:1.8.1 -> 1.8.2 (*) ++| | +--- org.jetbrains.compose.animation:animation:1.8.2 ++| | | +--- androidx.compose.animation:animation:1.8.2 -> 1.8.3 (*) ++| | | +--- org.jetbrains.compose.animation:animation-core:1.8.2 ++| | | | +--- androidx.compose.animation:animation-core:1.8.2 -> 1.8.3 (*) ++| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui:1.8.2 ++| | | | | +--- androidx.compose.ui:ui:1.8.2 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 +| | | | | | +--- androidx.lifecycle:lifecycle-common:2.8.5 -> 2.9.1 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 +| | | | | | +--- androidx.arch.core:core-common:2.2.0 (*) +| | | | | | +--- androidx.lifecycle:lifecycle-runtime:2.8.5 -> 2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 +| | | | | | +--- androidx.lifecycle:lifecycle-runtime-compose:2.8.5 -> 2.9.1 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.4 (*) +| | | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.4 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.6.11 -> 1.8.2 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | +--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.4 +| | | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.8.5 -> 2.9.1 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.6.11 -> 1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 -+| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.1 -> 1.8.2 (*) -+| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 ++| | | | | | +--- androidx.compose.runtime:runtime-saveable:1.8.2 -> 1.8.3 (*) ++| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 -+| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.1 -> 1.8.2 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-util:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-geometry:1.8.2 -> 1.8.3 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-util:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 -+| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.1 -> 1.8.2 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 -+| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.1 -> 1.8.2 (*) -+| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-graphics:1.8.2 -> 1.8.3 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 ++| | | | | | | +--- androidx.compose.ui:ui-unit:1.8.2 -> 1.8.3 (*) ++| | | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.1 -+| | | | | | +--- androidx.compose.ui:ui-text:1.8.1 -> 1.8.2 (*) -+| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-text:1.8.2 ++| | | | | | +--- androidx.compose.ui:ui-text:1.8.2 -> 1.8.3 (*) ++| | | | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.runtime:runtime-saveable:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-unit:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 -+| | | | +--- androidx.compose.foundation:foundation-layout:1.8.1 -> 1.8.2 (*) -+| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 ++| | | | +--- androidx.compose.foundation:foundation-layout:1.8.2 -> 1.8.3 (*) ++| | | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-geometry:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) ++--- project :wear-datalayer @@ -646,46 +646,46 @@ +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| +--- com.google.android.horologist:horologist-datalayer:0.6.23 +| | +--- androidx.compose:compose-bom:2025.02.00 -+| | | +--- androidx.compose.animation:animation:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation-layout:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.animation:animation:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation-layout:1.7.8 -> 1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-core:1.7.8 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.7.8 (c) -+| | | +--- androidx.compose.material:material-ripple:1.7.8 -> 1.8.1 (c) ++| | | +--- androidx.compose.material:material-ripple:1.7.8 -> 1.8.2 (c) +| | | +--- androidx.compose.material3:material3:1.3.1 -> 1.3.2 (c) -+| | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-graphics:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-text:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-preview:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-preview-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-unit:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-util:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-unit-android:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-graphics:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-text:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-preview:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-preview-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-unit:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-util:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-unit-android:1.7.8 -> 1.8.3 (c) +| | | +--- androidx.compose.material3:material3-android:1.3.1 -> 1.3.2 (c) -+| | | +--- androidx.compose.animation:animation-core:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.animation:animation-core:1.7.8 -> 1.8.3 (c) +| | | +--- androidx.compose.material:material-icons-core-android:1.7.8 (c) +| | | +--- androidx.compose.material:material-icons-extended-android:1.7.8 (c) -+| | | +--- androidx.compose.ui:ui-geometry:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-text-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-util-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.material:material-ripple-android:1.7.8 -> 1.8.1 (c) -+| | | +--- androidx.compose.ui:ui-graphics-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.runtime:runtime-android:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.ui:ui-geometry:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-text-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-util-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.material:material-ripple-android:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.ui:ui-graphics-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.runtime:runtime-android:1.7.8 -> 1.8.3 (c) +| | | +--- androidx.compose.material:material:1.7.8 (c) -+| | | +--- androidx.compose.ui:ui-tooling-data:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-geometry-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.animation:animation-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-data-android:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.ui:ui-tooling-data:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-geometry-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.animation:animation-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-data-android:1.7.8 -> 1.8.3 (c) +| | | +--- androidx.compose.material:material-android:1.7.8 (c) -+| | | +--- androidx.compose.runtime:runtime-saveable-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.animation:animation-core-android:1.7.8 -> 1.8.2 (c) -+| | | +--- androidx.compose.foundation:foundation-layout-android:1.7.8 -> 1.8.2 (c) -+| | | \--- androidx.compose.foundation:foundation-android:1.7.8 -> 1.8.2 (c) ++| | | +--- androidx.compose.runtime:runtime-saveable-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.animation:animation-core-android:1.7.8 -> 1.8.3 (c) ++| | | +--- androidx.compose.foundation:foundation-layout-android:1.7.8 -> 1.8.3 (c) ++| | | \--- androidx.compose.foundation:foundation-android:1.7.8 -> 1.8.3 (c) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 (*) +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.8.1 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 (*) @@ -881,53 +881,53 @@ +| +--- androidx.datastore:datastore-preferences:1.1.7 (*) +| \--- com.google.protobuf:protobuf-kotlin-lite:4.31.1 (*) ++--- project :kmp -+| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 ++| +--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-util:1.8.2 (c) -+| | \--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) ++| | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-util:1.8.3 (c) ++| | \--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) +| +--- project :data +| | +--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations:1.13.0 +| | | \--- dev.zacsweers.redacted:redacted-compiler-plugin-annotations-jvm:1.13.0 +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.1.21 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (*) -+| | +--- androidx.room:room-runtime:2.7.1 -+| | | \--- androidx.room:room-runtime-android:2.7.1 ++| | +--- androidx.room:room-runtime:2.7.2 ++| | | \--- androidx.room:room-runtime-android:2.7.2 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) +| | | +--- androidx.arch.core:core-runtime:2.2.0 (*) +| | | +--- androidx.collection:collection:1.4.2 -> 1.5.0 (*) -+| | | +--- androidx.room:room-common:2.7.1 -+| | | | \--- androidx.room:room-common-jvm:2.7.1 ++| | | +--- androidx.room:room-common:2.7.2 ++| | | | \--- androidx.room:room-common-jvm:2.7.2 +| | | | +--- androidx.annotation:annotation:1.9.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.room:room-runtime:2.7.1 (c) ++| | | | +--- androidx.room:room-runtime:2.7.2 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | | +--- androidx.sqlite:sqlite:2.5.0 -+| | | | \--- androidx.sqlite:sqlite-android:2.5.0 ++| | | +--- androidx.sqlite:sqlite:2.5.1 ++| | | | \--- androidx.sqlite:sqlite-android:2.5.1 +| | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.sqlite:sqlite-framework:2.5.0 (c) ++| | | | +--- androidx.sqlite:sqlite-framework:2.5.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | | +--- androidx.sqlite:sqlite-framework:2.5.0 -+| | | | \--- androidx.sqlite:sqlite-framework-android:2.5.0 ++| | | +--- androidx.sqlite:sqlite-framework:2.5.1 ++| | | | \--- androidx.sqlite:sqlite-framework-android:2.5.1 +| | | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | | | +--- androidx.sqlite:sqlite:2.5.0 (*) ++| | | | +--- androidx.sqlite:sqlite:2.5.1 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | | +--- androidx.sqlite:sqlite:2.5.0 (c) ++| | | | +--- androidx.sqlite:sqlite:2.5.1 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 -> 1.8.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) +| | | +--- org.jspecify:jspecify:1.0.0 -+| | | +--- androidx.room:room-common:2.7.1 (c) ++| | | +--- androidx.room:room-common:2.7.2 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) +| | +--- org.jetbrains.kotlinx:kotlinx-datetime:0.6.2 +| | | \--- org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.6.2 @@ -944,16 +944,16 @@ +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.1.21 (*) +| | \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.1.21 (*) -+| +--- org.jetbrains.compose.components:components-resources:1.8.1 (*) -+| +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| +--- org.jetbrains.compose.material3:material3:1.8.1 ++| +--- org.jetbrains.compose.components:components-resources:1.8.2 (*) ++| +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| +--- org.jetbrains.compose.material3:material3:1.8.2 +| | +--- androidx.compose.material3:material3:1.3.2 +| | | \--- androidx.compose.material3:material3-android:1.3.2 +| | | +--- androidx.activity:activity-compose:1.8.2 -> 1.10.1 +| | | | +--- androidx.activity:activity-ktx:1.10.1 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui:1.0.1 -> 1.8.3 (*) +| | | | +--- androidx.core:core-ktx:1.13.0 -> 1.13.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) @@ -967,26 +967,26 @@ +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) +| | | +--- androidx.collection:collection:1.4.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.animation:animation-core:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) +| | | +--- androidx.compose.material:material-icons-core:1.6.0 -> 1.7.8 +| | | | \--- androidx.compose.material:material-icons-core-android:1.7.8 -+| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) ++| | | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) -+| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.1 -+| | | | \--- androidx.compose.material:material-ripple-android:1.8.1 ++| | | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 ++| | | | \--- androidx.compose.material:material-ripple-android:1.8.2 +| | | | +--- androidx.collection:collection:1.5.0 (*) -+| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.runtime:runtime:1.8.1 -> 1.8.2 (*) -+| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.2 (*) ++| | | | +--- androidx.compose.animation:animation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.foundation:foundation:1.7.1 -> 1.8.3 (*) ++| | | | +--- androidx.compose.runtime:runtime:1.8.2 -> 1.8.3 (*) ++| | | | +--- androidx.compose.ui:ui-util:1.7.1 -> 1.8.3 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.2 (*) ++| | | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-text:1.6.0 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.6.0 -> 1.8.3 (*) +| | | \--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.9.1 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) @@ -1003,33 +1003,33 @@ +| | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1 (c) +| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (c) +| | | \--- androidx.lifecycle:lifecycle-process:2.9.1 (c) -+| | +--- org.jetbrains.compose.animation:animation-core:1.8.1 (*) -+| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.1 (*) -+| | +--- org.jetbrains.compose.material:material-ripple:1.8.1 -+| | | +--- androidx.compose.material:material-ripple:1.8.1 (*) -+| | | +--- org.jetbrains.compose.animation:animation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.1 (*) -+| | | +--- org.jetbrains.compose.foundation:foundation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | +--- org.jetbrains.compose.animation:animation-core:1.8.2 (*) ++| | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | +--- org.jetbrains.compose.foundation:foundation-layout:1.8.2 (*) ++| | +--- org.jetbrains.compose.material:material-ripple:1.8.2 ++| | | +--- androidx.compose.material:material-ripple:1.8.2 (*) ++| | | +--- org.jetbrains.compose.animation:animation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.collection-internal:collection:1.8.2 (*) ++| | | +--- org.jetbrains.compose.foundation:foundation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.1 -+| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.1 ++| | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-backhandler:1.8.2 ++| | | \--- org.jetbrains.compose.ui:ui-backhandler-android:1.8.2 +| | | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) +| | | +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.4 (*) -+| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.1 (*) -+| | | +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | +--- org.jetbrains.compose.annotation-internal:annotation:1.8.2 (*) ++| | | +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.8.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.10 -> 2.1.21 (c) -+| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-text:1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui-util:1.8.1 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 (c) ++| | +--- org.jetbrains.compose.ui:ui-graphics:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-text:1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui-util:1.8.2 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) +| +--- org.jetbrains.compose.material:material-icons-extended:1.7.3 +| | +--- androidx.compose.material:material-icons-extended:1.7.6 -> 1.7.8 @@ -1037,18 +1037,18 @@ +| | | \--- androidx.compose.material:material-icons-core:1.7.8 (*) +| | +--- org.jetbrains.compose.material:material-icons-core:1.7.3 +| | | +--- androidx.compose.material:material-icons-core:1.7.6 -> 1.7.8 (*) -+| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.1 (*) -+| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.1 (*) -+| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.1 (*) -+| +--- org.jetbrains.compose.runtime:runtime:1.8.1 (*) ++| | | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | | +--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| | | \--- org.jetbrains.compose.ui:ui-unit:1.7.3 -> 1.8.2 (*) ++| | +--- org.jetbrains.compose.ui:ui:1.7.3 -> 1.8.2 (*) ++| | \--- org.jetbrains.compose.ui:ui-graphics:1.7.3 -> 1.8.2 (*) ++| +--- org.jetbrains.compose.runtime:runtime:1.8.2 (*) +| +--- androidx.datastore:datastore-preferences:1.1.7 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.9.1 +| | \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.9.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.9.1 (*) @@ -1078,8 +1078,8 @@ ++--- com.google.android.gms:play-services-wearable:19.0.0 (*) ++--- androidx.paging:paging-compose:3.3.6 +| \--- androidx.paging:paging-compose-android:3.3.6 -+| +--- androidx.compose.foundation:foundation:1.5.0 -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime:1.5.0 -> 1.8.2 (*) ++| +--- androidx.compose.foundation:foundation:1.5.0 -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime:1.5.0 -> 1.8.3 (*) +| +--- androidx.paging:paging-common:3.3.6 +| | \--- androidx.paging:paging-common-android:3.3.6 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -1088,20 +1088,20 @@ +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.8.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| \--- androidx.paging:paging-common:3.3.6 (c) -++--- androidx.compose.ui:ui -> 1.8.2 (*) -++--- androidx.compose.ui:ui-graphics -> 1.8.2 (*) -++--- androidx.compose.ui:ui-tooling-preview -> 1.8.2 -+| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.2 (*) +++--- androidx.compose.ui:ui -> 1.8.3 (*) +++--- androidx.compose.ui:ui-graphics -> 1.8.3 (*) +++--- androidx.compose.ui:ui-tooling-preview -> 1.8.3 ++| \--- androidx.compose.ui:ui-tooling-preview-android:1.8.3 (*) ++--- androidx.compose.material:material-icons-extended -> 1.7.8 (*) -++--- com.google.firebase:firebase-bom:33.14.0 -+| +--- com.google.firebase:firebase-analytics:22.4.0 (c) -+| +--- com.google.firebase:firebase-crashlytics:19.4.3 (c) +++--- com.google.firebase:firebase-bom:33.16.0 ++| +--- com.google.firebase:firebase-analytics:22.5.0 (c) ++| +--- com.google.firebase:firebase-crashlytics:19.4.4 (c) +| +--- com.google.firebase:firebase-common:21.0.0 (c) +| +--- com.google.firebase:firebase-common-ktx:21.0.0 (c) +| +--- com.google.firebase:firebase-encoders:17.0.0 (c) +| \--- com.google.firebase:firebase-installations:18.0.0 (c) -++--- com.google.firebase:firebase-crashlytics -> 19.4.3 -+| +--- com.google.firebase:firebase-sessions:2.1.1 +++--- com.google.firebase:firebase-crashlytics -> 19.4.4 ++| +--- com.google.firebase:firebase-sessions:2.1.2 +| | +--- com.google.firebase:firebase-common:21.0.0 +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.6.4 -> 1.8.1 (*) +| | | +--- com.google.firebase:firebase-components:18.0.0 @@ -1186,8 +1186,8 @@ +| +--- com.google.android.datatransport:transport-backend-cct:3.3.0 (*) +| +--- com.google.android.datatransport:transport-runtime:3.3.0 (*) +| \--- androidx.annotation:annotation:1.5.0 -> 1.9.1 (*) -++--- com.google.firebase:firebase-analytics -> 22.4.0 -+| +--- com.google.android.gms:play-services-measurement:22.4.0 +++--- com.google.firebase:firebase-analytics -> 22.5.0 ++| +--- com.google.android.gms:play-services-measurement:22.5.0 +| | +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 +| | | +--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) @@ -1200,9 +1200,9 @@ +| | | \--- androidx.print:print:1.0.0 +| | | \--- androidx.annotation:annotation:1.0.0 -> 1.9.1 (*) +| | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-base:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-base:22.5.0 +| | | \--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-impl:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-impl:22.5.0 +| | | +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| | | +--- androidx.core:core:1.9.0 -> 1.13.1 (*) +| | | +--- androidx.privacysandbox.ads:ads-adservices:1.1.0-beta11 @@ -1222,20 +1222,20 @@ +| | | | \--- androidx.privacysandbox.ads:ads-adservices:1.1.0-beta11 (c) +| | | +--- com.google.android.gms:play-services-base:18.5.0 (*) +| | | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | | +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) ++| | | +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) +| | | +--- com.google.android.gms:play-services-stats:17.0.2 +| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*) +| | | | \--- com.google.android.gms:play-services-basement:18.0.0 -> 18.5.0 (*) +| | | +--- com.google.android.gms:play-services-tasks:18.2.0 (*) +| | | \--- com.google.guava:guava:31.1-android -> 33.3.1-android (*) -+| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.4.0 ++| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.5.0 +| | | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | | \--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) ++| | | \--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) +| | \--- com.google.android.gms:play-services-stats:17.0.2 (*) -+| +--- com.google.android.gms:play-services-measurement-api:22.4.0 ++| +--- com.google.android.gms:play-services-measurement-api:22.5.0 +| | +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) -+| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.4.0 (*) ++| | +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) ++| | +--- com.google.android.gms:play-services-measurement-sdk-api:22.5.0 (*) +| | +--- com.google.android.gms:play-services-tasks:18.2.0 (*) +| | +--- com.google.firebase:firebase-common:21.0.0 (*) +| | +--- com.google.firebase:firebase-common-ktx:21.0.0 (*) @@ -1245,29 +1245,29 @@ +| | +--- com.google.firebase:firebase-measurement-connector:19.0.0 -> 20.0.1 (*) +| | +--- com.google.guava:guava:31.1-android -> 33.3.1-android (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 -> 2.1.21 (*) -+| \--- com.google.android.gms:play-services-measurement-sdk:22.4.0 ++| \--- com.google.android.gms:play-services-measurement-sdk:22.5.0 +| +--- androidx.collection:collection:1.0.0 -> 1.5.0 (*) +| +--- com.google.android.gms:play-services-basement:18.5.0 (*) -+| +--- com.google.android.gms:play-services-measurement-base:22.4.0 (*) -+| \--- com.google.android.gms:play-services-measurement-impl:22.4.0 (*) ++| +--- com.google.android.gms:play-services-measurement-base:22.5.0 (*) ++| \--- com.google.android.gms:play-services-measurement-impl:22.5.0 (*) ++--- androidx.wear.compose:compose-material:1.4.1 -+| +--- androidx.compose.animation:animation:1.7.0 -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) ++| +--- androidx.compose.animation:animation:1.7.0 -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| +--- androidx.compose.material:material-icons-core:1.7.0 -> 1.7.8 (*) -+| +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.1 (*) -+| +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.2 (*) ++| +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-common:2.7.0 -> 2.9.1 (*) +| +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.0 (*) +| +--- androidx.wear.compose:compose-foundation:1.4.1 -+| | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.2 (*) ++| | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation-layout:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.3 (*) +| | +--- androidx.core:core:1.12.0 -> 1.13.1 (*) +| | +--- androidx.lifecycle:lifecycle-runtime-compose:2.7.0 -> 2.9.1 (*) +| | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.0 (*) @@ -1277,14 +1277,14 @@ +| | +--- androidx.wear.compose:compose-navigation:1.4.1 (c) +| | \--- androidx.wear.compose:compose-ui-tooling:1.4.1 (c) +| +--- androidx.wear.compose:compose-material-core:1.4.1 -+| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.2 (*) ++| | +--- androidx.compose.animation:animation:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation:1.7.0 -> 1.8.3 (*) +| | +--- androidx.compose.material:material-icons-core:1.7.0 -> 1.7.8 (*) -+| | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.2 (*) ++| | +--- androidx.compose.material:material-ripple:1.7.0 -> 1.8.2 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-text:1.7.0 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.7.0 -> 1.8.3 (*) +| | +--- androidx.profileinstaller:profileinstaller:1.3.1 -> 1.4.0 (*) +| | +--- androidx.wear.compose:compose-foundation:1.4.1 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) @@ -1300,8 +1300,8 @@ ++--- androidx.wear.compose:compose-foundation:1.4.1 (*) ++--- androidx.wear.compose:compose-navigation:1.4.1 +| +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 (*) -+| +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui:1.7.0 -> 1.8.2 (*) ++| +--- androidx.compose.runtime:runtime:1.7.0 -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui:1.7.0 -> 1.8.3 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0 -> 2.9.1 (*) +| +--- androidx.navigation:navigation-common:2.6.0 -> 2.8.8 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) @@ -1321,11 +1321,11 @@ +| | \--- androidx.navigation:navigation-common-ktx:2.8.8 (c) +| +--- androidx.navigation:navigation-compose:2.6.0 -> 2.8.8 +| | +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1 (*) -+| | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.2 (*) -+| | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.2 (*) -+| | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.2 (*) -+| | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.2 (*) ++| | +--- androidx.compose.animation:animation:1.7.2 -> 1.8.3 (*) ++| | +--- androidx.compose.foundation:foundation-layout:1.7.2 -> 1.8.3 (*) ++| | +--- androidx.compose.runtime:runtime:1.7.2 -> 1.8.3 (*) ++| | +--- androidx.compose.runtime:runtime-saveable:1.7.2 -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.7.2 -> 1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2 -> 2.9.1 (*) +| | +--- androidx.navigation:navigation-runtime-ktx:2.8.8 +| | | +--- androidx.navigation:navigation-common-ktx:2.8.8 @@ -1377,64 +1377,64 @@ +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.1.21 (*) ++--- com.google.android.horologist:horologist-compose-layout:0.6.23 +| +--- androidx.compose:compose-bom:2025.02.00 (*) -+| +--- androidx.compose.ui:ui-util -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-tooling -> 1.8.2 -+| | \--- androidx.compose.ui:ui-tooling-android:1.8.2 ++| +--- androidx.compose.ui:ui-util -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-tooling -> 1.8.3 ++| | \--- androidx.compose.ui:ui-tooling-android:1.8.3 +| | +--- androidx.activity:activity-compose:1.7.0 -> 1.10.1 (*) +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.animation:animation:1.8.2 (*) ++| | +--- androidx.compose.animation:animation:1.8.3 (*) +| | +--- androidx.compose.material:material:1.0.0 -> 1.7.8 +| | | \--- androidx.compose.material:material-android:1.7.8 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.0 -> 1.4.1 (*) -+| | | +--- androidx.compose.animation:animation:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.animation:animation-core:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.foundation:foundation-layout:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.material:material-ripple:1.7.8 -> 1.8.1 (*) -+| | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-text:1.7.8 -> 1.8.2 (*) -+| | | +--- androidx.compose.ui:ui-util:1.7.8 -> 1.8.2 (*) ++| | | +--- androidx.compose.animation:animation:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.animation:animation-core:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.foundation:foundation-layout:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.material:material-ripple:1.7.8 -> 1.8.2 (*) ++| | | +--- androidx.compose.runtime:runtime:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-text:1.7.8 -> 1.8.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.7.8 -> 1.8.3 (*) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.9.1 (*) +| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.1 (*) +| | | +--- androidx.savedstate:savedstate:1.2.1 -> 1.3.0 (*) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) -+| | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | +--- androidx.compose.ui:ui:1.8.2 (*) -+| | +--- androidx.compose.ui:ui-tooling-data:1.8.2 -+| | | \--- androidx.compose.ui:ui-tooling-data-android:1.8.2 ++| | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | +--- androidx.compose.ui:ui:1.8.3 (*) ++| | +--- androidx.compose.ui:ui-tooling-data:1.8.3 ++| | | \--- androidx.compose.ui:ui-tooling-data-android:1.8.3 +| | | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) +| | | +--- androidx.annotation:annotation-experimental:1.4.1 (*) -+| | | +--- androidx.compose.runtime:runtime:1.8.2 (*) -+| | | +--- androidx.compose.ui:ui:1.8.2 (*) ++| | | +--- androidx.compose.runtime:runtime:1.8.3 (*) ++| | | +--- androidx.compose.ui:ui:1.8.3 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) -+| | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (*) ++| | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (*) +| | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.9.1 (*) +| | +--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.1.21 (*) -+| | +--- androidx.compose.ui:ui:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-geometry:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-graphics:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-text:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-tooling-data:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-tooling-preview:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-unit:1.8.2 (c) -+| | +--- androidx.compose.ui:ui-util:1.8.2 (c) ++| | +--- androidx.compose.ui:ui:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-geometry:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-graphics:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-text:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-tooling-data:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-tooling-preview:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-unit:1.8.3 (c) ++| | +--- androidx.compose.ui:ui-util:1.8.3 (c) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (c) +| +--- androidx.wear:wear-tooling-preview:1.0.0 (*) +| +--- androidx.wear.compose:compose-ui-tooling:1.4.1 +| | +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*) -+| | +--- androidx.compose.ui:ui-tooling-preview:1.7.0 -> 1.8.2 (*) ++| | +--- androidx.compose.ui:ui-tooling-preview:1.7.0 -> 1.8.3 (*) +| | +--- androidx.wear:wear-tooling-preview:1.0.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.1.21 (*) +| | +--- androidx.wear.compose:compose-foundation:1.4.1 (c) @@ -1474,23 +1474,23 @@ +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 (*) +| +--- androidx.annotation:annotation:1.9.1 (*) +| +--- androidx.compose.material:material-icons-core -> 1.7.8 (*) -+| +--- androidx.compose.ui:ui-text -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-unit -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-util -> 1.8.2 (*) ++| +--- androidx.compose.ui:ui-text -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-unit -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-util -> 1.8.3 (*) +| +--- com.google.android.horologist:horologist-annotations:0.6.23 (*) +| +--- com.google.android.horologist:horologist-compose-layout:0.6.23 (*) +| +--- com.google.android.horologist:horologist-images-base:0.6.23 +| | +--- androidx.compose:compose-bom:2025.02.00 (*) +| | +--- com.google.android.horologist:horologist-annotations:0.6.23 (*) -+| | +--- androidx.compose.ui:ui-graphics -> 1.8.2 (*) -+| | +--- androidx.compose.runtime:runtime -> 1.8.2 (*) -+| | +--- androidx.compose.ui:ui -> 1.8.2 (*) ++| | +--- androidx.compose.ui:ui-graphics -> 1.8.3 (*) ++| | +--- androidx.compose.runtime:runtime -> 1.8.3 (*) ++| | +--- androidx.compose.ui:ui -> 1.8.3 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) -+| +--- androidx.compose.foundation:foundation -> 1.8.2 (*) -+| +--- androidx.compose.foundation:foundation-layout -> 1.8.2 (*) -+| +--- androidx.compose.runtime:runtime -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui -> 1.8.2 (*) -+| +--- androidx.compose.ui:ui-graphics -> 1.8.2 (*) ++| +--- androidx.compose.foundation:foundation -> 1.8.3 (*) ++| +--- androidx.compose.foundation:foundation-layout -> 1.8.3 (*) ++| +--- androidx.compose.runtime:runtime -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui -> 1.8.3 (*) ++| +--- androidx.compose.ui:ui-graphics -> 1.8.3 (*) +| +--- androidx.wear.compose:compose-material:1.4.1 (*) +| +--- androidx.wear.compose:compose-foundation:1.4.1 (*) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.1.21 (*) @@ -1507,7 +1507,7 @@ +| | | +--- io.coil-kt:coil-compose-base:2.7.0 +| | | | +--- androidx.core:core-ktx:1.12.0 -> 1.13.1 (*) +| | | | +--- com.google.accompanist:accompanist-drawablepainter:0.32.0 -+| | | | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.2 (*) ++| | | | | +--- androidx.compose.ui:ui:1.5.0 -> 1.8.3 (*) +| | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.8.1 (*) +| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 (*) +| | | | +--- io.coil-kt:coil-base:2.7.0 @@ -1537,7 +1537,7 @@ +| | | | | | +--- com.squareup.okio:okio:3.6.0 -> 3.9.0 (*) +| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.0 (*) +| | | | | \--- com.squareup.okio:okio:3.9.0 (*) -+| | | | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.2 (*) ++| | | | +--- androidx.compose.foundation:foundation:1.6.8 -> 1.8.3 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.1.21 (*) +| | | +--- io.coil-kt:coil:2.7.0 +| | | | +--- io.coil-kt:coil-base:2.7.0 (*) @@ -1769,7 +1769,7 @@ +| | +--- androidx.wear.tiles:tiles:1.5.0 (c) +| | +--- androidx.wear.tiles:tiles-proto:1.5.0 (c) +| | \--- androidx.wear.tiles:tiles-tooling-preview:1.5.0 (c) -+| +--- androidx.compose.ui:ui-tooling-preview -> 1.8.2 (*) ++| +--- androidx.compose.ui:ui-tooling-preview -> 1.8.3 (*) +| +--- androidx.wear:wear-tooling-preview:1.0.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.8.1 (*) +| +--- androidx.wear.tiles:tiles-tooling-preview:1.4.1 -> 1.5.0 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d0e4ce6ed..8317990dd 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,8 +1,8 @@ [versions] versionCode = "140710" # increment by 2 versionName = "14.7.3" -agp = "8.10.1" -android-compileSdk = "35" +agp = "8.11.0" +android-compileSdk = "36" android-minSdk = "26" android-targetSdk = "34" accompanist = "0.37.3" @@ -11,23 +11,23 @@ appauth = "0.11.1" appcompat = "1.7.1" cert4android = "7814052" coil = "2.7.0" -compose = "2025.06.00" +compose = "2025.06.01" constraintlayout = "2.2.1" dagger-hilt = "2.56.2" dashclock-api = "2.0.0" dav4jvm = "2.2.1" desugar_jdk_libs = "2.1.5" etebase = "2.3.2" -firebase = "33.14.0" +firebase = "33.16.0" firebase-crashlytics-gradle = "3.0.4" -google-oauth2 = "1.37.0" -google-api-drive = "v3-rev20250511-2.0.0" +google-oauth2 = "1.37.1" +google-api-drive = "v3-rev20250701-2.0.0" google-api-tasks = "v1-rev20250518-2.0.0" -google-services = "4.4.2" +google-services = "4.4.3" grpc = "1.73.0" hilt = "1.2.0" horologist = "0.6.23" -ical4android = "12fe73a" +ical4android = "2fe63dd" jchronic = "0.2.6" jems = "1.33" junit-junit = "4.13.2" @@ -55,11 +55,11 @@ preference = "1.2.1" protobuf = "4.31.1" recyclerview = "1.4.0" rfc5545-datetime = "0.2.4" -room = "2.7.1" +room = "2.7.2" shortcut-badger = "1.1.22" timber = "5.0.1" swiperefreshlayout = "1.1.0" -work = "2.10.1" +work = "2.10.2" androidx-test = "1.6.1" androidx-test-runner = "1.6.2" xpp3 = "1.1.6" @@ -86,13 +86,13 @@ androidx-lifecycle-runtime-compose = { module = "androidx.lifecycle:lifecycle-ru androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel", version.ref = "lifecycle" } androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycle" } androidx-material-icons-extended = { module = "androidx.compose.material:material-icons-extended" } -androidx-navigation = { module = "androidx.navigation:navigation-compose", version = "2.9.0" } +androidx-navigation = { module = "androidx.navigation:navigation-compose", version = "2.9.1" } androidx-paging-compose = { module = "androidx.paging:paging-compose", version = "3.3.6" } androidx-preference = { module = "androidx.preference:preference", version.ref = "preference" } androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" } androidx-room = { module = "androidx.room:room-runtime", version.ref = "room" } androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room"} -androidx-sqlite = { module = "androidx.sqlite:sqlite-bundled", version = "2.5.1" } +androidx-sqlite = { module = "androidx.sqlite:sqlite-bundled", version = "2.5.2" } androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "swiperefreshlayout" } androidx-test-core = { module = "androidx.test:core", version.ref = "androidx-test" } androidx-test-rules = { module = "androidx.test:rules", version.ref = "androidx-test" } @@ -175,7 +175,7 @@ play-services-oss-licenses = { module = "com.google.android.gms:play-services-os shortcut-badger = { module = "me.leolin:ShortcutBadger", version.ref = "shortcut-badger" } timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" } xpp3 = { module = "org.ogce:xpp3", version.ref = "xpp3" } -androidx-ui-tooling-preview-android = { group = "androidx.compose.ui", name = "ui-tooling-preview-android", version = "1.8.2" } +androidx-ui-tooling-preview-android = { group = "androidx.compose.ui", name = "ui-tooling-preview-android", version = "1.8.3" } iconics = { module = "com.mikepenz:iconics-core", version = "5.5.0-b01" } play-services-wearable = { group = "com.google.android.gms", name = "play-services-wearable", version = "19.0.0" } androidx-ui = { group = "androidx.compose.ui", name = "ui" } @@ -204,7 +204,7 @@ protobuf-kotlin-lite = { group = "com.google.protobuf", name = "protobuf-kotlin- [plugins] android-application = { id = "com.android.application", version.ref = "agp" } android-library = { id = "com.android.library", version.ref = "agp" } -jetbrains-compose = { id = "org.jetbrains.compose", version = "1.8.1" } +jetbrains-compose = { id = "org.jetbrains.compose", version = "1.8.2" } kotlin-compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6925085be..be2dc79a8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/kmp/src/commonMain/composeResources/values-sr/strings.xml b/kmp/src/commonMain/composeResources/values-sr/strings.xml index 3c7c1c2db..8b52bcbc2 100644 --- a/kmp/src/commonMain/composeResources/values-sr/strings.xml +++ b/kmp/src/commonMain/composeResources/values-sr/strings.xml @@ -1,4 +1,36 @@ Подешавања - \ No newline at end of file + Претражи + Нема резултата + Премијум функционалност + Откључај све функционалности за само 1 USD годишње + Претплати се + Моји задаци + Обавештења + Одложен + Данас + Недавно модификовани + Подразумевана листа + Помоћ и повратне информације + Филтери + Тагови + Места + Локална листа + Сутра + сутра + Сутра + сутра + Јуче + јуче + Јуче + јуче + Данас + данас + Додај задатак + Прикажи незапочете + Прикажи завршене + Инсталирај на уређају + Непозната грешка + Задаци са тајмером + diff --git a/kmp/src/commonMain/composeResources/values-sv/strings.xml b/kmp/src/commonMain/composeResources/values-sv/strings.xml index 434561083..2a3840bd6 100644 --- a/kmp/src/commonMain/composeResources/values-sv/strings.xml +++ b/kmp/src/commonMain/composeResources/values-sv/strings.xml @@ -27,10 +27,10 @@ idag Inga resultat Lås upp alla funktioner för så lite som 1$ USD/år - Pro funktion + Pro-funktion Lägg till uppgift Visa inte påbörjade Visa slutförda Installera på telefon Okänt fel - \ No newline at end of file + diff --git a/renovate.json b/renovate.json index ad2c4e6b5..e64ac3dc8 100644 --- a/renovate.json +++ b/renovate.json @@ -1,15 +1,15 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "packageRules": [ { - "matchPackagePatterns": [ - "^org.jetbrains.kotlin", - "^com.google.devtools.ksp" - ], - "groupName": "kotlin" + "groupName": "kotlin", + "matchPackageNames": [ + "/^org.jetbrains.kotlin/", + "/^com.google.devtools.ksp/" + ] } ] }