From 0f6013ceccc111cb9cb35f4a2e1ab9a167d627e7 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Wed, 1 Feb 2023 23:16:53 -0600 Subject: [PATCH] Compose BOM 2023.01.00, Kotlin 1.8.0 --- app/build.gradle.kts | 17 +- .../astrid/gtasks/GtasksListService.kt | 3 +- .../java/org/tasks/googleapis/BaseInvoker.kt | 2 - .../tasks/gtasks/GoogleTaskSynchronizer.kt | 1 - .../org/tasks/scheduling/RefreshScheduler.kt | 4 +- buildSrc/src/main/kotlin/Versions.kt | 6 +- deps_fdroid.txt | 297 +++++++++-------- deps_googleplay.txt | 305 ++++++++++-------- 8 files changed, 335 insertions(+), 300 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index bdfbc9e17..0fd432b56 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -201,7 +201,7 @@ dependencies { debugImplementation("com.facebook.flipper:flipper-network-plugin:${Versions.flipper}") debugImplementation("com.facebook.soloader:soloader:0.10.4") debugImplementation("com.squareup.leakcanary:leakcanary-android:${Versions.leakcanary}") - debugImplementation("androidx.compose.ui:ui-tooling:${Versions.compose}") + debugImplementation("androidx.compose.ui:ui-tooling") debugImplementation("org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlin}") @@ -233,20 +233,21 @@ dependencies { implementation("com.squareup.retrofit2:retrofit:${Versions.retrofit}") implementation("com.squareup.retrofit2:converter-moshi:${Versions.retrofit}") - implementation("androidx.compose.ui:ui:${Versions.compose}") - implementation("androidx.compose.foundation:foundation:${Versions.compose}") - implementation("androidx.compose.material:material:${Versions.compose}") - implementation("androidx.compose.runtime:runtime-livedata:${Versions.compose}") + implementation(platform("androidx.compose:compose-bom:${Versions.compose_bom}")) + implementation("androidx.compose.ui:ui") + implementation("androidx.compose.foundation:foundation") + implementation("androidx.compose.material:material") + implementation("androidx.compose.runtime:runtime-livedata") implementation("com.google.android.material:compose-theme-adapter:${Versions.compose_theme_adapter}") implementation("androidx.activity:activity-compose:1.6.1") - implementation("androidx.compose.material:material-icons-extended:${Versions.compose}") + implementation("androidx.compose.material:material-icons-extended") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1") - implementation("androidx.compose.ui:ui-viewbinding:${Versions.compose}") + implementation("androidx.compose.ui:ui-viewbinding") implementation("io.coil-kt:coil-compose:${Versions.coil}") implementation("io.coil-kt:coil-video:${Versions.coil}") implementation("io.coil-kt:coil-svg:${Versions.coil}") implementation("io.coil-kt:coil-gif:${Versions.coil}") - releaseCompileOnly("androidx.compose.ui:ui-tooling:${Versions.compose}") + releaseCompileOnly("androidx.compose.ui:ui-tooling") implementation("com.google.accompanist:accompanist-flowlayout:${Versions.accompanist}") implementation("com.google.accompanist:accompanist-permissions:${Versions.accompanist}") diff --git a/app/src/main/java/com/todoroo/astrid/gtasks/GtasksListService.kt b/app/src/main/java/com/todoroo/astrid/gtasks/GtasksListService.kt index 453c20c21..ab6d288da 100644 --- a/app/src/main/java/com/todoroo/astrid/gtasks/GtasksListService.kt +++ b/app/src/main/java/com/todoroo/astrid/gtasks/GtasksListService.kt @@ -25,7 +25,6 @@ class GtasksListService @Inject constructor( * * @param remoteLists remote information about your lists */ - @Synchronized suspend fun updateLists(account: GoogleTaskAccount, remoteLists: List) { val lists = googleTaskListDao.getLists(account.account!!) val previousLists: MutableSet = HashSet() @@ -66,4 +65,4 @@ class GtasksListService @Inject constructor( } localBroadcastManager.broadcastRefreshList() } -} \ No newline at end of file +} diff --git a/app/src/main/java/org/tasks/googleapis/BaseInvoker.kt b/app/src/main/java/org/tasks/googleapis/BaseInvoker.kt index e2c91f688..9f88c54be 100644 --- a/app/src/main/java/org/tasks/googleapis/BaseInvoker.kt +++ b/app/src/main/java/org/tasks/googleapis/BaseInvoker.kt @@ -19,11 +19,9 @@ abstract class BaseInvoker( private val preferences: Preferences, private val interceptor: DebugNetworkInterceptor ) { - @Synchronized @Throws(IOException::class) protected suspend fun execute(request: AbstractGoogleJsonClientRequest): T? = execute(request, false) - @Synchronized @Throws(IOException::class) private suspend fun execute(request: AbstractGoogleJsonClientRequest, retry: Boolean): T? = withContext(Dispatchers.IO) { diff --git a/app/src/main/java/org/tasks/gtasks/GoogleTaskSynchronizer.kt b/app/src/main/java/org/tasks/gtasks/GoogleTaskSynchronizer.kt index 6dff2bca6..a73fbf7ab 100644 --- a/app/src/main/java/org/tasks/gtasks/GoogleTaskSynchronizer.kt +++ b/app/src/main/java/org/tasks/gtasks/GoogleTaskSynchronizer.kt @@ -273,7 +273,6 @@ class GoogleTaskSynchronizer @Inject constructor( write(task, gtasksMetadata) } - @Synchronized @Throws(IOException::class) private suspend fun fetchAndApplyRemoteChanges( gtasksInvoker: GtasksInvoker, list: GoogleTaskList) { diff --git a/app/src/main/java/org/tasks/scheduling/RefreshScheduler.kt b/app/src/main/java/org/tasks/scheduling/RefreshScheduler.kt index 694268aed..8c28802ec 100644 --- a/app/src/main/java/org/tasks/scheduling/RefreshScheduler.kt +++ b/app/src/main/java/org/tasks/scheduling/RefreshScheduler.kt @@ -4,7 +4,8 @@ import com.todoroo.astrid.data.Task import org.tasks.data.TaskDao import org.tasks.jobs.WorkManager import org.tasks.time.DateTimeUtils -import java.util.* +import java.util.SortedSet +import java.util.TreeSet import javax.inject.Inject import javax.inject.Singleton @@ -16,7 +17,6 @@ class RefreshScheduler @Inject internal constructor( private val jobs: SortedSet = TreeSet() - @Synchronized suspend fun scheduleAll() { for (task in taskDao.needsRefresh()) { scheduleRefresh(task) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 824c2e378..11be09a3a 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -1,5 +1,5 @@ object Versions { - const val kotlin = "1.7.20" + const val kotlin = "1.8.0" const val compileSdk = 33 const val targetSdk = 33 const val minSdk = 24 @@ -18,8 +18,8 @@ object Versions { const val hilt_androidx = "1.0.0" const val lifecycle = "2.4.1" const val markwon = "4.6.2" - const val compose_compiler = "1.3.2" - const val compose = "1.3.1" + const val compose_compiler = "1.4.0" + const val compose_bom = "2023.01.00" const val compose_theme_adapter = "1.1.11" const val accompanist = "0.24.12-rc" const val coil = "2.2.0" diff --git a/deps_fdroid.txt b/deps_fdroid.txt index ece81a3b5..09cfeaf35 100644 --- a/deps_fdroid.txt +++ b/deps_fdroid.txt @@ -1,7 +1,7 @@ ++--- androidx.databinding:viewbinding:7.4.0 +| \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 -+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.20 ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 ++| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.0 +| \--- org.jetbrains:annotations:13.0 -> 20.1.0 ++--- androidx.databinding:databinding-common:7.4.0 ++--- androidx.databinding:databinding-runtime:7.4.0 @@ -30,17 +30,17 @@ +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (c) -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.20 (*) -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.20 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.7.20 ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.8.0 ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.8.0 (*) +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.4.0 -> 2.4.1 +| | +--- androidx.arch.core:core-common:2.1.0 (*) @@ -60,19 +60,19 @@ +| | \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.4.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (c) +| +--- androidx.databinding:databinding-runtime:7.4.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10 -> 1.8.0 (*) ++--- com.github.bitfireAT:dav4jvm:2.2 -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -> 1.8.0 (*) +| +--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- com.squareup.okhttp3:okhttp:4.10.0 +| | +--- com.squareup.okio:okio:3.0.0 -> 3.2.0 +| | | \--- com.squareup.okio:okio-jvm:3.2.0 -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.7.20 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 -> 1.7.20 -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.8.0 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 -> 1.8.0 ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) +| \--- org.ogce:xpp3:1.1.6 +| \--- jakarta-regexp:jakarta-regexp:1.4 ++--- com.github.tasks:ical4android:ce7919d @@ -96,7 +96,7 @@ +| | \--- commons-validator:commons-validator:1.7 (*) +| +--- 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.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -> 1.8.0 (*) +| +--- commons-io:commons-io:2.6 +| +--- org.slf4j:slf4j-jdk14:2.0.3 +| | \--- org.slf4j:slf4j-api:2.0.3 @@ -105,7 +105,7 @@ +| +--- androidx.core:core:1.9.0 +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | +--- androidx.annotation:annotation-experimental:1.3.0 -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | +--- androidx.concurrent:concurrent-futures:1.0.0 +| | | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava @@ -115,14 +115,14 @@ +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | \--- androidx.core:core-ktx:1.9.0 (c) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| \--- androidx.core:core:1.9.0 (c) ++--- com.github.bitfireAT:cert4android:7814052 +| +--- androidx.databinding:databinding-common:7.2.0 -> 7.4.0 +| +--- androidx.databinding:databinding-runtime:7.2.0 -> 7.4.0 (*) +| +--- androidx.databinding:databinding-adapters:7.2.0 -> 7.4.0 (*) +| +--- androidx.databinding:databinding-ktx:7.2.0 -> 7.4.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.8.0 (*) +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-rc01 +| | +--- androidx.activity:activity:1.6.0-rc02 -> 1.6.1 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) @@ -139,12 +139,12 @@ +| | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | | | | +--- androidx.arch.core:core-common:2.1.0 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.4.0 -> 2.5.1 (*) -+| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| | | +--- androidx.savedstate:savedstate:1.2.0 (*) +| | | +--- androidx.tracing:tracing:1.0.0 (*) -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | \--- androidx.activity:activity-ktx:1.6.1 (c) +| | +--- androidx.annotation:annotation:1.3.0 -> 1.5.0 (*) +| | +--- androidx.appcompat:appcompat-resources:1.6.0-rc01 @@ -202,13 +202,13 @@ +| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*) +| | | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*) +| | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*) +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*) +| | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 +| | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.savedstate:savedstate:1.2.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- androidx.appcompat:appcompat-resources:1.6.0-rc01 (c) +| +--- androidx.cardview:cardview:1.0.0 +| | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*) @@ -226,12 +226,12 @@ +| | +--- androidx.lifecycle:lifecycle-livedata:2.4.1 (*) +| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.4.1 -> 2.5.1 +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.6.4 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha02 +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) @@ -301,7 +301,7 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*) +| +--- androidx.savedstate:savedstate:1.2.0 (*) +| +--- javax.inject:javax.inject:1 -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.8.0 (*) ++--- androidx.hilt:hilt-work:1.0.0 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| +--- androidx.hilt:hilt-common:1.0.0 @@ -335,31 +335,31 @@ +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| | +--- androidx.savedstate:savedstate-ktx:1.2.0 +| | | +--- androidx.savedstate:savedstate:1.2.0 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- androidx.activity:activity:1.6.1 (c) +| +--- androidx.collection:collection-ktx:1.1.0 -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.8.0 (*) +| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*) +| +--- androidx.fragment:fragment:1.5.4 (*) +| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.1 -> 2.5.1 (*) ++--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.1 (*) ++--- androidx.room:room-ktx:2.4.2 +| +--- androidx.room:room-common:2.4.2 (*) +| +--- androidx.room:room-runtime:2.4.2 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.8.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) ++--- androidx.appcompat:appcompat:1.6.0-rc01 (*) ++--- androidx.paging:paging-runtime:3.1.1 +| +--- androidx.paging:paging-common:3.1.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.arch.core:core-common:2.1.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 -> 1.6.4 (*) +| +--- androidx.paging:paging-common-ktx:3.1.1 +| | \--- androidx.paging:paging-common:3.1.1 (*) @@ -367,7 +367,7 @@ +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.2.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0 -> 2.5.1 (*) +| +--- androidx.recyclerview:recyclerview:1.2.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.8.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) +| \--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*) ++--- io.noties.markwon:core:4.6.2 @@ -387,7 +387,7 @@ +| \--- com.atlassian.commonmark:commonmark:0.13.0 ++--- io.noties.markwon:linkify:4.6.2 +| \--- io.noties.markwon:core:4.6.2 (*) -++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20 (*) +++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 (*) ++--- com.squareup.okhttp3:okhttp:4.10.0 (*) ++--- com.github.franmontiel:PersistentCookieJar:v1.0.1 +| \--- com.squareup.okhttp3:okhttp:3.1.2 -> 4.10.0 (*) @@ -409,7 +409,7 @@ +| | +--- androidx.customview:customview:1.1.0 (*) +| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*) +| | +--- androidx.window:window:1.0.0 -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.8.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) +| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) @@ -417,7 +417,7 @@ +| | \--- androidx.transition:transition:1.4.1 (*) +| \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) ++--- com.jakewharton.timber:timber:5.0.1 -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.8.0 (*) +| \--- org.jetbrains:annotations:20.1.0 ++--- com.google.android.apps.dashclock:dashclock-api:2.0.0 ++--- com.github.twofortyfouram:android-plugin-api-for-locale:1.0.2 @@ -452,7 +452,7 @@ ++--- androidx.work:work-runtime:2.7.1 (*) ++--- androidx.work:work-runtime-ktx:2.7.1 +| +--- androidx.work:work-runtime:2.7.1 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.8.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0 -> 1.6.4 (*) ++--- com.etebase:client:2.3.2 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) @@ -477,55 +477,74 @@ +| +--- com.squareup.retrofit2:retrofit:2.9.0 (*) +| \--- com.squareup.moshi:moshi:1.8.0 +| \--- com.squareup.okio:okio:1.16.0 -> 3.2.0 (*) -++--- androidx.compose.ui:ui:1.3.1 +++--- androidx.compose:compose-bom:2023.01.00 ++| +--- androidx.compose.foundation:foundation:1.3.1 (c) ++| +--- androidx.compose.material:material:1.3.1 (c) ++| +--- androidx.compose.material:material-icons-extended:1.3.1 (c) ++| +--- androidx.compose.runtime:runtime-livedata:1.3.3 (c) ++| +--- androidx.compose.ui:ui:1.3.3 (c) ++| +--- androidx.compose.ui:ui-viewbinding:1.3.3 (c) ++| +--- androidx.compose.runtime:runtime:1.3.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable:1.3.3 (c) ++| +--- androidx.compose.ui:ui-util:1.3.3 (c) ++| +--- androidx.compose.animation:animation:1.3.3 (c) ++| +--- androidx.compose.foundation:foundation-layout:1.3.1 (c) ++| +--- androidx.compose.ui:ui-graphics:1.3.3 (c) ++| +--- androidx.compose.ui:ui-text:1.3.3 (c) ++| +--- androidx.compose.animation:animation-core:1.3.3 (c) ++| +--- androidx.compose.material:material-icons-core:1.3.1 (c) ++| +--- androidx.compose.material:material-ripple:1.3.1 (c) ++| +--- androidx.compose.ui:ui-geometry:1.3.3 (c) ++| \--- androidx.compose.ui:ui-unit:1.3.3 (c) +++--- androidx.compose.ui:ui -> 1.3.3 +| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.1 (*) +| +--- androidx.annotation:annotation:1.5.0 (*) +| +--- androidx.autofill:autofill:1.0.0 +| | \--- androidx.core:core:1.1.0 -> 1.9.0 (*) +| +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 ++| +--- androidx.compose.runtime:runtime:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.3.1 ++| +--- androidx.compose.runtime:runtime-saveable:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- androidx.compose.ui:ui-geometry:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- androidx.compose.ui:ui-geometry:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- androidx.compose.ui:ui-graphics:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- androidx.compose.ui:ui-graphics:1.3.3 +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-unit:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-unit:1.3.3 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-geometry:1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.3.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| +--- androidx.compose.ui:ui-text:1.3.1 ++| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-geometry:1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.3.3 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| +--- androidx.compose.ui:ui-text:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-graphics:1.3.1 (*) -+| | +--- androidx.compose.ui:ui-unit:1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-graphics:1.3.3 (*) ++| | +--- androidx.compose.ui:ui-unit:1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 (*) +| | +--- androidx.core:core:1.7.0 -> 1.9.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) -+| +--- androidx.compose.ui:ui-unit:1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| +--- androidx.compose.ui:ui-unit:1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.3.3 (*) +| +--- androidx.core:core:1.5.0 -> 1.9.0 (*) +| +--- androidx.customview:customview-poolingcontainer:1.0.0 +| | +--- androidx.core:core-ktx:1.5.0 -> 1.9.0 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.3.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*) @@ -535,110 +554,110 @@ +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | \--- androidx.startup:startup-runtime:1.1.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) -++--- androidx.compose.foundation:foundation:1.3.1 +++--- androidx.compose.foundation:foundation -> 1.3.1 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| +--- androidx.compose.animation:animation:1.1.1 ++| +--- androidx.compose.animation:animation:1.1.1 -> 1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.animation:animation-core:1.1.1 ++| | +--- androidx.compose.animation:animation-core:1.3.3 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 -> 1.6.4 (*) -+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.7.20 (*) ++| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.3.1 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.animation:animation-core:1.1.1 (*) -+| | | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) ++| | | +--- androidx.compose.animation:animation-core:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) +| | | +--- androidx.core:core:1.7.0 -> 1.9.0 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.10 -> 1.7.20 ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| +--- androidx.compose.foundation:foundation-layout:1.3.1 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.3.1 (*) -+| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -++--- androidx.compose.material:material:1.3.1 -+| +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*) -+| +--- androidx.compose.animation:animation-core:1.0.0 -> 1.1.1 (*) ++| +--- androidx.compose.runtime:runtime:1.3.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.3.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +++--- androidx.compose.material:material -> 1.3.1 ++| +--- androidx.compose.animation:animation:1.0.0 -> 1.3.3 (*) ++| +--- androidx.compose.animation:animation-core:1.0.0 -> 1.3.3 (*) +| +--- androidx.compose.foundation:foundation:1.2.0 -> 1.3.1 (*) +| +--- androidx.compose.foundation:foundation-layout:1.1.1 -> 1.3.1 (*) +| +--- androidx.compose.material:material-icons-core:1.3.1 -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| +--- androidx.compose.material:material-ripple:1.3.1 -+| | +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*) ++| | +--- androidx.compose.animation:animation:1.0.0 -> 1.3.3 (*) +| | +--- androidx.compose.foundation:foundation:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.1 (*) +| +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -++--- androidx.compose.runtime:runtime-livedata:1.3.1 -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +++--- androidx.compose.runtime:runtime-livedata -> 1.3.3 ++| +--- androidx.compose.runtime:runtime:1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++--- com.google.android.material:compose-theme-adapter:1.1.11 +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-rc01 (*) +| +--- androidx.core:core-ktx:1.8.0-rc02 -> 1.9.0 (*) -+| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.3 (*) +| +--- androidx.compose.material:material:1.2.0-beta03 -> 1.3.1 (*) +| +--- com.google.android.material:material:1.7.0-alpha02 -> 1.8.0-alpha02 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++--- androidx.activity:activity-compose:1.6.1 +| +--- androidx.activity:activity-ktx:1.6.1 (*) -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -++--- androidx.compose.material:material-icons-extended:1.3.1 ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +++--- androidx.compose.material:material-icons-extended -> 1.3.1 +| +--- androidx.compose.material:material-icons-core:1.3.1 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| +--- androidx.compose.runtime:runtime:1.3.1 -> 1.3.3 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++--- androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1 +| +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) -++--- androidx.compose.ui:ui-viewbinding:1.3.1 -+| +--- androidx.compose.ui:ui:1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +++--- androidx.compose.ui:ui-viewbinding -> 1.3.3 ++| +--- androidx.compose.ui:ui:1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.3.3 (*) +| +--- androidx.databinding:viewbinding:4.1.2 -> 7.4.0 (*) +| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.5.4 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++--- io.coil-kt:coil-compose:2.2.0 +| +--- io.coil-kt:coil-compose-base:2.2.0 +| | +--- io.coil-kt:coil-base:2.2.0 +| | | +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.7.10 -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.7.10 -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) +| | | +--- com.squareup.okhttp3:okhttp:4.10.0 (*) @@ -652,7 +671,7 @@ +| | +--- androidx.compose.foundation:foundation:1.2.1 -> 1.3.1 (*) +| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*) +| | \--- com.google.accompanist:accompanist-drawablepainter:0.25.1 -+| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.1 (*) ++| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.3 (*) +| \--- io.coil-kt:coil:2.2.0 +| \--- io.coil-kt:coil-base:2.2.0 (*) ++--- io.coil-kt:coil-video:2.2.0 @@ -668,12 +687,12 @@ +| \--- androidx.vectordrawable:vectordrawable-animated:1.1.0 (*) ++--- com.google.accompanist:accompanist-flowlayout:0.24.12-rc +| +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*) -+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.1 (*) ++| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.3 (*) +\--- com.google.accompanist:accompanist-permissions:0.24.12-rc + +--- androidx.activity:activity-compose:1.5.0-rc01 -> 1.6.1 (*) + +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*) + +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0 -> 1.6.4 (*) + \--- io.github.aakira:napier:1.4.1 + \--- io.github.aakira:napier-android:1.4.1 -+ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.7.20 (*) -+ \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32 -> 1.7.20 ++ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.8.0 (*) ++ \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32 -> 1.8.0 diff --git a/deps_googleplay.txt b/deps_googleplay.txt index 271eb8833..f86807b04 100644 --- a/deps_googleplay.txt +++ b/deps_googleplay.txt @@ -1,7 +1,7 @@ ++--- androidx.databinding:viewbinding:7.4.0 +| \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 -+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.20 ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 ++| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.0 +| \--- org.jetbrains:annotations:13.0 -> 20.1.0 ++--- androidx.databinding:databinding-common:7.4.0 ++--- androidx.databinding:databinding-runtime:7.4.0 @@ -30,17 +30,17 @@ +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (c) +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4 (c) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (c) -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.20 (*) -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.20 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.7.20 ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.8.0 ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.8.0 +| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.8.0 (*) +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*) +| | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.4.0 -> 2.4.1 +| | +--- androidx.arch.core:core-common:2.1.0 (*) @@ -60,10 +60,10 @@ +| | \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.4.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (c) +| +--- androidx.databinding:databinding-runtime:7.4.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.10 -> 1.8.0 (*) ++--- com.google.firebase:firebase-crashlytics:18.2.11 +| +--- com.google.android.datatransport:transport-api:3.0.0 +| | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) @@ -90,7 +90,7 @@ +| | +--- androidx.core:core:1.2.0 -> 1.9.0 +| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | | +--- androidx.annotation:annotation-experimental:1.3.0 -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | +--- androidx.concurrent:concurrent-futures:1.0.0 +| | | | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava @@ -112,7 +112,7 @@ +| | | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 +| | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | | | | +--- androidx.core:core:1.9.0 (*) -+| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | | | \--- androidx.core:core:1.9.0 (c) +| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*) +| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*) @@ -120,12 +120,12 @@ +| | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | | | | +--- androidx.arch.core:core-common:2.1.0 (*) +| | | | | +--- androidx.lifecycle:lifecycle-common:2.4.0 -> 2.5.1 (*) -+| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| | | +--- androidx.savedstate:savedstate:1.2.0 (*) +| | | +--- androidx.tracing:tracing:1.0.0 (*) -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | \--- androidx.activity:activity-ktx:1.6.1 (c) +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) @@ -147,7 +147,7 @@ +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*) +| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| +--- com.google.firebase:firebase-annotations:16.0.0 +| +--- com.google.firebase:firebase-common:20.1.1 +| | +--- com.google.android.gms:play-services-basement:18.0.0 (*) @@ -223,7 +223,7 @@ +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- com.google.firebase:firebase-common:20.0.0 -> 20.1.1 (*) +| | +--- com.google.firebase:firebase-components:17.0.0 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.8.0 (*) +| +--- com.google.firebase:firebase-components:17.0.0 (*) +| +--- com.google.firebase:firebase-config:21.0.1 +| | +--- com.google.android.gms:play-services-tasks:17.0.2 -> 18.0.1 (*) @@ -235,7 +235,7 @@ +| | \--- com.google.firebase:firebase-measurement-connector:18.0.0 -> 19.0.0 (*) +| +--- com.google.firebase:firebase-installations:17.0.0 -> 17.0.1 (*) +| +--- com.google.firebase:firebase-installations-interop:17.0.0 -> 17.0.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.8.0 (*) ++--- com.google.android.gms:play-services-location:19.0.1 +| +--- com.google.android.gms:play-services-base:18.0.1 +| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) @@ -253,12 +253,12 @@ +| \--- com.google.android.gms:play-services-basement:18.0.0 (*) ++--- com.android.billingclient:billing-ktx:4.0.0 +| +--- com.android.billingclient:billing:4.0.0 -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.8.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 -> 1.6.4 (*) ++--- com.google.android.play:core:1.10.3 ++--- com.google.android.play:core-ktx:1.8.1 +| +--- com.google.android.play:core:1.8.0 -> 1.10.3 -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72 -> 1.8.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6 -> 1.6.4 (*) +| +--- androidx.core:core:1.1.0 -> 1.9.0 (*) +| \--- androidx.fragment:fragment:1.1.0 -> 1.5.4 (*) @@ -305,21 +305,21 @@ +| | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 +| | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.savedstate:savedstate:1.2.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- androidx.appcompat:appcompat-resources:1.6.0-rc01 (c) +| +--- androidx.loader:loader:1.0.0 (*) +| +--- com.google.android.gms:play-services-base:17.0.0 -> 18.0.1 (*) +| +--- com.google.android.gms:play-services-basement:17.0.0 -> 18.0.0 (*) +| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 18.0.1 (*) ++--- com.github.bitfireAT:dav4jvm:2.2 -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -> 1.8.0 (*) +| +--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- com.squareup.okhttp3:okhttp:4.10.0 +| | +--- com.squareup.okio:okio:3.0.0 -> 3.2.0 +| | | \--- com.squareup.okio:okio-jvm:3.2.0 -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.7.20 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 -> 1.7.20 -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.8.0 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 -> 1.8.0 ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) +| \--- org.ogce:xpp3:1.1.6 +| \--- jakarta-regexp:jakarta-regexp:1.4 ++--- com.github.tasks:ical4android:ce7919d @@ -343,7 +343,7 @@ +| | \--- commons-validator:commons-validator:1.7 (*) +| +--- 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.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20 -> 1.8.0 (*) +| +--- commons-io:commons-io:2.6 +| +--- org.slf4j:slf4j-jdk14:2.0.3 +| | \--- org.slf4j:slf4j-api:2.0.3 @@ -353,7 +353,7 @@ +| +--- androidx.databinding:databinding-runtime:7.2.0 -> 7.4.0 (*) +| +--- androidx.databinding:databinding-adapters:7.2.0 -> 7.4.0 (*) +| +--- androidx.databinding:databinding-ktx:7.2.0 -> 7.4.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.8.0 (*) +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-rc01 (*) +| +--- androidx.cardview:cardview:1.0.0 +| | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*) @@ -371,12 +371,12 @@ +| | +--- androidx.lifecycle:lifecycle-livedata:2.4.1 (*) +| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.4.1 -> 2.5.1 +| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.6.4 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.1 +| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*) +| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha02 +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) @@ -437,7 +437,7 @@ +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*) +| +--- androidx.savedstate:savedstate:1.2.0 (*) +| +--- javax.inject:javax.inject:1 -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.8.0 (*) ++--- androidx.hilt:hilt-work:1.0.0 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| +--- androidx.hilt:hilt-common:1.0.0 @@ -471,31 +471,31 @@ +| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| | +--- androidx.savedstate:savedstate-ktx:1.2.0 +| | | +--- androidx.savedstate:savedstate:1.2.0 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- androidx.activity:activity:1.6.1 (c) +| +--- androidx.collection:collection-ktx:1.1.0 -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.8.0 (*) +| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*) +| +--- androidx.fragment:fragment:1.5.4 (*) +| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.1 -> 2.5.1 (*) ++--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.1 (*) ++--- androidx.room:room-ktx:2.4.2 +| +--- androidx.room:room-common:2.4.2 (*) +| +--- androidx.room:room-runtime:2.4.2 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.8.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) ++--- androidx.appcompat:appcompat:1.6.0-rc01 (*) ++--- androidx.paging:paging-runtime:3.1.1 +| +--- androidx.paging:paging-common:3.1.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.arch.core:core-common:2.1.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 -> 1.6.4 (*) +| +--- androidx.paging:paging-common-ktx:3.1.1 +| | \--- androidx.paging:paging-common:3.1.1 (*) @@ -503,7 +503,7 @@ +| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.2.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0 -> 2.5.1 (*) +| +--- androidx.recyclerview:recyclerview:1.2.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.8.0 (*) +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) +| \--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*) ++--- io.noties.markwon:core:4.6.2 @@ -523,7 +523,7 @@ +| \--- com.atlassian.commonmark:commonmark:0.13.0 ++--- io.noties.markwon:linkify:4.6.2 +| \--- io.noties.markwon:core:4.6.2 (*) -++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20 (*) +++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 (*) ++--- com.squareup.okhttp3:okhttp:4.10.0 (*) ++--- com.github.franmontiel:PersistentCookieJar:v1.0.1 +| \--- com.squareup.okhttp3:okhttp:3.1.2 -> 4.10.0 (*) @@ -545,7 +545,7 @@ +| | +--- androidx.customview:customview:1.1.0 (*) +| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*) +| | +--- androidx.window:window:1.0.0 -+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.7.20 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.8.0 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*) +| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) @@ -553,7 +553,7 @@ +| | \--- androidx.transition:transition:1.4.1 (*) +| \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) ++--- com.jakewharton.timber:timber:5.0.1 -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.8.0 (*) +| \--- org.jetbrains:annotations:20.1.0 ++--- com.google.android.apps.dashclock:dashclock-api:2.0.0 ++--- com.github.twofortyfouram:android-plugin-api-for-locale:1.0.2 @@ -588,7 +588,7 @@ ++--- androidx.work:work-runtime:2.7.1 (*) ++--- androidx.work:work-runtime-ktx:2.7.1 +| +--- androidx.work:work-runtime:2.7.1 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.8.0 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0 -> 1.6.4 (*) ++--- com.etebase:client:2.3.2 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) @@ -613,55 +613,74 @@ +| +--- com.squareup.retrofit2:retrofit:2.9.0 (*) +| \--- com.squareup.moshi:moshi:1.8.0 +| \--- com.squareup.okio:okio:1.16.0 -> 3.2.0 (*) -++--- androidx.compose.ui:ui:1.3.1 +++--- androidx.compose:compose-bom:2023.01.00 ++| +--- androidx.compose.foundation:foundation:1.3.1 (c) ++| +--- androidx.compose.material:material:1.3.1 (c) ++| +--- androidx.compose.material:material-icons-extended:1.3.1 (c) ++| +--- androidx.compose.runtime:runtime-livedata:1.3.3 (c) ++| +--- androidx.compose.ui:ui:1.3.3 (c) ++| +--- androidx.compose.ui:ui-viewbinding:1.3.3 (c) ++| +--- androidx.compose.runtime:runtime:1.3.3 (c) ++| +--- androidx.compose.runtime:runtime-saveable:1.3.3 (c) ++| +--- androidx.compose.ui:ui-util:1.3.3 (c) ++| +--- androidx.compose.animation:animation:1.3.3 (c) ++| +--- androidx.compose.foundation:foundation-layout:1.3.1 (c) ++| +--- androidx.compose.ui:ui-graphics:1.3.3 (c) ++| +--- androidx.compose.ui:ui-text:1.3.3 (c) ++| +--- androidx.compose.animation:animation-core:1.3.3 (c) ++| +--- androidx.compose.material:material-icons-core:1.3.1 (c) ++| +--- androidx.compose.material:material-ripple:1.3.1 (c) ++| +--- androidx.compose.ui:ui-geometry:1.3.3 (c) ++| \--- androidx.compose.ui:ui-unit:1.3.3 (c) +++--- androidx.compose.ui:ui -> 1.3.3 +| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.1 (*) +| +--- androidx.annotation:annotation:1.5.0 (*) +| +--- androidx.autofill:autofill:1.0.0 +| | \--- androidx.core:core:1.1.0 -> 1.9.0 (*) +| +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 ++| +--- androidx.compose.runtime:runtime:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.3.1 ++| +--- androidx.compose.runtime:runtime-saveable:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- androidx.compose.ui:ui-geometry:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- androidx.compose.ui:ui-geometry:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- androidx.compose.ui:ui-graphics:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- androidx.compose.ui:ui-graphics:1.3.3 +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-unit:1.3.1 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-unit:1.3.3 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-geometry:1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.3.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| +--- androidx.compose.ui:ui-text:1.3.1 ++| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-geometry:1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.3.3 (*) ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| +--- androidx.compose.ui:ui-text:1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -+| | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-graphics:1.3.1 (*) -+| | +--- androidx.compose.ui:ui-unit:1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-graphics:1.3.3 (*) ++| | +--- androidx.compose.ui:ui-unit:1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.3.3 (*) +| | +--- androidx.core:core:1.7.0 -> 1.9.0 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) -+| +--- androidx.compose.ui:ui-unit:1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| +--- androidx.compose.ui:ui-unit:1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.3.3 (*) +| +--- androidx.core:core:1.5.0 -> 1.9.0 (*) +| +--- androidx.customview:customview-poolingcontainer:1.0.0 +| | +--- androidx.core:core-ktx:1.5.0 -> 1.9.0 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.3.0 -> 2.5.1 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) +| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*) @@ -671,110 +690,110 @@ +| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*) +| | \--- androidx.startup:startup-runtime:1.1.1 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.0 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) +| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) -++--- androidx.compose.foundation:foundation:1.3.1 +++--- androidx.compose.foundation:foundation -> 1.3.1 +| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| +--- androidx.compose.animation:animation:1.1.1 ++| +--- androidx.compose.animation:animation:1.1.1 -> 1.3.3 +| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | +--- androidx.compose.animation:animation-core:1.1.1 ++| | +--- androidx.compose.animation:animation-core:1.3.3 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 -> 1.6.4 (*) -+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.10 -> 1.7.20 (*) ++| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.3.1 +| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*) -+| | | +--- androidx.compose.animation:animation-core:1.1.1 (*) -+| | | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.1 (*) -+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) ++| | | +--- androidx.compose.animation:animation-core:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.3 (*) ++| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) +| | | +--- androidx.core:core:1.7.0 -> 1.9.0 (*) -+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.10 -> 1.7.20 ++| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +| +--- androidx.compose.foundation:foundation-layout:1.3.1 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.3.1 (*) -+| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -++--- androidx.compose.material:material:1.3.1 -+| +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*) -+| +--- androidx.compose.animation:animation-core:1.0.0 -> 1.1.1 (*) ++| +--- androidx.compose.runtime:runtime:1.3.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.3.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +++--- androidx.compose.material:material -> 1.3.1 ++| +--- androidx.compose.animation:animation:1.0.0 -> 1.3.3 (*) ++| +--- androidx.compose.animation:animation-core:1.0.0 -> 1.3.3 (*) +| +--- androidx.compose.foundation:foundation:1.2.0 -> 1.3.1 (*) +| +--- androidx.compose.foundation:foundation-layout:1.1.1 -> 1.3.1 (*) +| +--- androidx.compose.material:material-icons-core:1.3.1 -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| +--- androidx.compose.material:material-ripple:1.3.1 -+| | +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*) ++| | +--- androidx.compose.animation:animation:1.0.0 -> 1.3.3 (*) +| | +--- androidx.compose.foundation:foundation:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*) -+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) -+| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -+| +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.1 (*) ++| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.3 (*) ++| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) ++| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++| +--- androidx.compose.runtime:runtime:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.1 (*) +| +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 -++--- androidx.compose.runtime:runtime-livedata:1.3.1 -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.1 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 +++--- androidx.compose.runtime:runtime-livedata -> 1.3.3 ++| +--- androidx.compose.runtime:runtime:1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++--- com.google.android.material:compose-theme-adapter:1.1.11 +| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-rc01 (*) +| +--- androidx.core:core-ktx:1.8.0-rc02 -> 1.9.0 (*) -+| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.3 (*) +| +--- androidx.compose.material:material:1.2.0-beta03 -> 1.3.1 (*) +| +--- com.google.android.material:material:1.7.0-alpha02 -> 1.8.0-alpha02 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) ++--- androidx.activity:activity-compose:1.6.1 +| +--- androidx.activity:activity-ktx:1.6.1 (*) -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) -++--- androidx.compose.material:material-icons-extended:1.3.1 ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +++--- androidx.compose.material:material-icons-extended -> 1.3.1 +| +--- androidx.compose.material:material-icons-core:1.3.1 (*) -+| +--- androidx.compose.runtime:runtime:1.3.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20 ++| +--- androidx.compose.runtime:runtime:1.3.1 -> 1.3.3 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.8.0 ++--- androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1 +| +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.1 (*) -+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.1 (*) ++| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.3 (*) ++| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.3 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*) -++--- androidx.compose.ui:ui-viewbinding:1.3.1 -+| +--- androidx.compose.ui:ui:1.3.1 (*) -+| +--- androidx.compose.ui:ui-util:1.3.1 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.8.0 (*) +++--- androidx.compose.ui:ui-viewbinding -> 1.3.3 ++| +--- androidx.compose.ui:ui:1.3.3 (*) ++| +--- androidx.compose.ui:ui-util:1.3.3 (*) +| +--- androidx.databinding:viewbinding:4.1.2 -> 7.4.0 (*) +| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.5.4 (*) -+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) ++--- io.coil-kt:coil-compose:2.2.0 +| +--- io.coil-kt:coil-compose-base:2.2.0 +| | +--- io.coil-kt:coil-base:2.2.0 +| | | +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.7.10 -+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.7.10 -+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*) ++| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.8.0 (*) +| | | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.1 (*) +| | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*) +| | | +--- com.squareup.okhttp3:okhttp:4.10.0 (*) @@ -788,7 +807,7 @@ +| | +--- androidx.compose.foundation:foundation:1.2.1 -> 1.3.1 (*) +| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*) +| | \--- com.google.accompanist:accompanist-drawablepainter:0.25.1 -+| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.1 (*) ++| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.3 (*) +| \--- io.coil-kt:coil:2.2.0 +| \--- io.coil-kt:coil-base:2.2.0 (*) ++--- io.coil-kt:coil-video:2.2.0 @@ -804,12 +823,12 @@ +| \--- androidx.vectordrawable:vectordrawable-animated:1.1.0 (*) ++--- com.google.accompanist:accompanist-flowlayout:0.24.12-rc +| +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*) -+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.1 (*) ++| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.3 (*) +\--- com.google.accompanist:accompanist-permissions:0.24.12-rc + +--- androidx.activity:activity-compose:1.5.0-rc01 -> 1.6.1 (*) + +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*) + +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0 -> 1.6.4 (*) + \--- io.github.aakira:napier:1.4.1 + \--- io.github.aakira:napier-android:1.4.1 -+ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.7.20 (*) -+ \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32 -> 1.7.20 ++ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.8.0 (*) ++ \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.32 -> 1.8.0