Update third party dependencies

pull/2068/head
Alex Baker 3 years ago
parent 980ee440d5
commit c17e2ef98b

@ -174,13 +174,13 @@ dependencies {
kapt("androidx.hilt:hilt-compiler:${Versions.hilt_androidx}")
implementation("androidx.hilt:hilt-work:${Versions.hilt_androidx}")
implementation("androidx.fragment:fragment-ktx:1.4.0")
implementation("androidx.fragment:fragment-ktx:1.5.4")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:${Versions.lifecycle}")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:${Versions.lifecycle}")
implementation("androidx.room:room-ktx:${Versions.room}")
kapt("androidx.room:room-compiler:${Versions.room}")
implementation("androidx.appcompat:appcompat:1.6.0-alpha05")
implementation("androidx.paging:paging-runtime:2.1.2")
implementation("androidx.appcompat:appcompat:1.6.0-rc01")
implementation("androidx.paging:paging-runtime:3.1.1")
implementation("io.noties.markwon:core:${Versions.markwon}")
implementation("io.noties.markwon:editor:${Versions.markwon}")
implementation("io.noties.markwon:ext-tasklist:${Versions.markwon}")
@ -190,7 +190,7 @@ dependencies {
debugImplementation("com.facebook.flipper:flipper:${Versions.flipper}")
debugImplementation("com.facebook.flipper:flipper-network-plugin:${Versions.flipper}")
debugImplementation("com.facebook.soloader:soloader:0.10.3")
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("org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}")
@ -198,11 +198,11 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlin}")
implementation("com.squareup.okhttp3:okhttp:${Versions.okhttp}")
implementation("com.github.franmontiel:PersistentCookieJar:v1.0.1")
implementation("com.google.code.gson:gson:2.8.8")
implementation("com.google.android.material:material:1.8.0-alpha01")
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
implementation("com.google.code.gson:gson:2.9.0")
implementation("com.google.android.material:material:1.8.0-alpha02")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("androidx.preference:preference:1.1.1")
implementation("androidx.preference:preference:1.2.0")
implementation("com.jakewharton.timber:timber:5.0.1")
implementation("com.google.android.apps.dashclock:dashclock-api:2.0.0")
implementation("com.github.twofortyfouram:android-plugin-api-for-locale:1.0.2") {
@ -229,9 +229,9 @@ dependencies {
implementation("androidx.compose.material:material:${Versions.compose}")
implementation("androidx.compose.runtime:runtime-livedata:${Versions.compose}")
implementation("com.google.android.material:compose-theme-adapter:${Versions.compose_theme_adapter}")
implementation("androidx.activity:activity-compose:1.4.0")
implementation("androidx.activity:activity-compose:1.6.1")
implementation("androidx.compose.material:material-icons-extended:${Versions.compose}")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.4.1")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
implementation("androidx.compose.ui:ui-viewbinding:${Versions.compose}")
implementation("io.coil-kt:coil-compose:${Versions.coil}")
implementation("io.coil-kt:coil-video:${Versions.coil}")
@ -248,7 +248,7 @@ dependencies {
}
googleplayImplementation("com.google.firebase:firebase-config-ktx:${Versions.remote_config}")
googleplayImplementation("com.google.android.gms:play-services-location:19.0.1")
googleplayImplementation("com.google.android.gms:play-services-maps:18.0.2")
googleplayImplementation("com.google.android.gms:play-services-maps:18.1.0")
googleplayImplementation("com.android.billingclient:billing-ktx:4.0.0")
googleplayImplementation("com.google.android.play:core:1.10.3")
googleplayImplementation("com.google.android.play:core-ktx:1.8.1")
@ -261,11 +261,11 @@ dependencies {
androidTestImplementation("com.natpryce:make-it-easy:${Versions.make_it_easy}")
androidTestImplementation("androidx.test:runner:${Versions.androidx_test}")
androidTestImplementation("androidx.test:rules:${Versions.androidx_test}")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.ext:junit:1.1.4")
androidTestImplementation("com.squareup.okhttp3:mockwebserver:${Versions.okhttp}")
testImplementation("junit:junit:4.13.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
testImplementation("com.natpryce:make-it-easy:${Versions.make_it_easy}")
testImplementation("androidx.test:core:${Versions.androidx_test}")
testImplementation("org.mockito:mockito-core:${Versions.mockito}")

@ -27,9 +27,8 @@ abstract class InjectingPreferenceFragment : PreferenceFragmentCompat() {
tintIcons(pref.getPreference(i), color)
}
} else {
if (pref.icon != null) {
pref.icon = pref.icon.mutate()
pref.icon.setTint(color)
pref.icon?.let { d ->
pref.icon = d.mutate().also { it.setTint(color) }
}
}
}

@ -82,9 +82,9 @@ abstract class BasePreferences : ThemedInjectingAppCompatActivity(),
caller,
supportFragmentManager
.fragmentFactory
.instantiate(classLoader, pref.fragment)
.instantiate(classLoader, pref.fragment!!)
.apply { arguments = pref.extras },
pref.title
pref.title!!
)
fun startPreference(

@ -9,14 +9,14 @@ import androidx.preference.Preference
import androidx.preference.PreferenceViewHolder
import org.tasks.R
class IconPreference(context: Context?, attrs: AttributeSet? = null) : Preference(context, attrs) {
class IconPreference(context: Context, attrs: AttributeSet? = null) : Preference(context, attrs) {
private var imageView: ImageView? = null
override fun onBindViewHolder(holder: PreferenceViewHolder?) {
override fun onBindViewHolder(holder: PreferenceViewHolder) {
super.onBindViewHolder(holder)
imageView = holder?.findViewById(R.id.preference_icon) as ImageView?
imageView = holder.findViewById(R.id.preference_icon) as ImageView?
updateIcon()
}

@ -76,7 +76,7 @@ class DateAndTime : InjectingPreferenceFragment(), Preference.OnPreferenceChange
}
}
override fun onPreferenceChange(preference: Preference?, newValue: Any?): Boolean {
override fun onPreferenceChange(preference: Preference, newValue: Any?): Boolean {
if (preference == getStartOfWeekPreference()) {
updateStartOfWeek(newValue.toString())
} else {

@ -176,8 +176,8 @@ class Notifications : InjectingPreferenceFragment() {
return true
}
override fun onPreferenceTreeClick(preference: Preference?): Boolean =
when (preference!!.key) {
override fun onPreferenceTreeClick(preference: Preference): Boolean =
when (preference.key) {
getString(R.string.p_rmd_ringtone),
getString(R.string.p_completion_ringtone) -> {
val intent = Intent(RingtoneManager.ACTION_RINGTONE_PICKER)

@ -228,7 +228,7 @@ class TasksAccount : BaseAccountPreference() {
category.removeAll()
passwords.forEach {
val description = it.description ?: getString(R.string.app_password)
category.addPreference(IconPreference(context).apply {
category.addPreference(IconPreference(requireContext()).apply {
layoutResource = R.layout.preference_icon
iconVisible = true
drawable = context?.getDrawable(R.drawable.ic_outline_delete_24px)

@ -34,7 +34,7 @@ class Widgets : InjectingPreferenceFragment() {
preferenceScreen.removeAll()
appWidgetManager.widgetIds.forEach {
val widgetPrefs = WidgetPreferences(context, preferences, it)
val pref = IconPreference(context)
val pref = IconPreference(requireContext())
tintColorPreference(pref, widgetPrefs.color)
pref.drawable = AppCompatResources.getDrawable(
requireContext(),

@ -14,12 +14,12 @@ object Versions {
const val mockito = "3.9.0"
const val androidx_test = "1.3.0"
const val make_it_easy = "4.0.1"
const val hilt = "2.42"
const val hilt = "2.44.2"
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.0-rc01"
const val compose = "1.3.1"
const val compose_theme_adapter = "1.1.11"
const val accompanist = "0.24.12-rc"
const val coil = "2.2.0"

@ -9,16 +9,16 @@
+| | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.databinding:databinding-common:7.3.1
+| +--- androidx.databinding:viewbinding:7.3.1 (*)
+| \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.0-rc01
+| \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.arch.core:core-common:2.1.0
+| | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.arch.core:core-runtime:2.1.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | \--- androidx.arch.core:core-common:2.1.0 (*)
+| \--- androidx.lifecycle:lifecycle-common:2.5.0-rc01
+| \--- androidx.lifecycle:lifecycle-common:2.5.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- androidx.lifecycle:lifecycle-common-java8:2.5.0-rc01 (c)
+| \--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (c)
++--- androidx.databinding:databinding-adapters:7.3.1
+| +--- androidx.databinding:databinding-runtime:7.3.1 (*)
+| \--- androidx.databinding:databinding-common:7.3.1
@ -37,31 +37,31 @@
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.7.20
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 -> 2.5.0-rc01
+| +--- 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.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| | \--- 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 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | \--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.0-rc01
+| | \--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.1
+| | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-process:2.4.0 -> 2.4.1
+| | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.1 (*)
+| | +--- androidx.startup:startup-runtime:1.1.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | \--- androidx.tracing:tracing:1.0.0
+| | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | \--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.lifecycle:lifecycle-service:2.4.0
+| | \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.4.0 -> 2.5.0-rc01
+| | \--- 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 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.0-rc01 (c)
+| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (c)
+| +--- androidx.databinding:databinding-runtime:7.3.1 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 -> 1.7.20 (*)
++--- com.github.tasks:dav4jvm:deb2c9aef8
@ -79,155 +79,160 @@
+| +--- commons-io:commons-io:2.6
+| +--- org.slf4j:slf4j-jdk14:1.7.30
+| | \--- org.slf4j:slf4j-api:1.7.30
+| \--- androidx.core:core-ktx:1.3.2 -> 1.9.0-alpha05
+| \--- androidx.core:core-ktx:1.3.2 -> 1.9.0
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.core:core:1.9.0-alpha05
+| +--- androidx.core:core:1.9.0
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.annotation:annotation-experimental:1.1.0
+| | +--- androidx.annotation:annotation-experimental:1.3.0
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | +--- 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
+| | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.1 (*)
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.1
+| | | +--- 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-alpha05 (c)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| \--- androidx.core:core:1.9.0-alpha05 (c)
+| | \--- androidx.core:core-ktx:1.9.0 (c)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| \--- androidx.core:core:1.9.0 (c)
++--- com.github.bitfireAT:cert4android:7814052
+| +--- androidx.databinding:databinding-common:7.2.0 -> 7.3.1
+| +--- androidx.databinding:databinding-runtime:7.2.0 -> 7.3.1 (*)
+| +--- androidx.databinding:databinding-adapters:7.2.0 -> 7.3.1 (*)
+| +--- androidx.databinding:databinding-ktx:7.2.0 -> 7.3.1 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.7.20 (*)
+| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-alpha05
+| | +--- androidx.activity:activity:1.6.0-alpha05
+| +--- 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 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.9.0-alpha05 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.0-rc01
+| | | +--- androidx.core:core:1.8.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.0-rc01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| | | | +--- androidx.savedstate:savedstate:1.2.0-rc01 -> 1.2.0
+| | | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*)
+| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | | | +--- androidx.savedstate:savedstate:1.2.0
+| | | | | +--- 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.0-rc01 (*)
+| | | | | +--- 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.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*)
+| | | +--- androidx.savedstate:savedstate:1.2.0-rc01 -> 1.2.0 (*)
+| | | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | | +--- androidx.tracing:tracing:1.0.0 (*)
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| | | \--- androidx.activity:activity-ktx:1.6.0-alpha05 (c)
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | \--- androidx.activity:activity-ktx:1.6.1 (c)
+| | +--- androidx.annotation:annotation:1.3.0 -> 1.5.0 (*)
+| | +--- androidx.appcompat:appcompat-resources:1.6.0-alpha05
+| | +--- androidx.appcompat:appcompat-resources:1.6.0-rc01
+| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
+| | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | | +--- androidx.interpolator:interpolator:1.0.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0
+| | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | | | +--- androidx.interpolator:interpolator:1.0.0
+| | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | \--- androidx.appcompat:appcompat:1.6.0-rc01 (c)
+| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.core:core:1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.9.0 (*)
+| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| | +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.9.0 (*)
+| | | \--- androidx.customview:customview:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.emoji2:emoji2:1.2.0-alpha04
+| | +--- androidx.emoji2:emoji2:1.2.0-rc01
+| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-process:2.4.1 (*)
+| | | \--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.emoji2:emoji2-views-helper:1.2.0-alpha04
+| | +--- androidx.emoji2:emoji2-views-helper:1.2.0-rc01
+| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.emoji2:emoji2:1.2.0-alpha04 (*)
+| | +--- androidx.fragment:fragment:1.3.6 -> 1.4.0
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*)
+| | | \--- androidx.emoji2:emoji2:1.2.0-rc01 (*)
+| | +--- androidx.fragment:fragment:1.3.6 -> 1.5.4
+| | | +--- androidx.activity:activity:1.5.1 -> 1.6.1 (*)
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*)
+| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.viewpager:viewpager:1.0.0
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*)
+| | | +--- androidx.loader:loader:1.0.0
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.4.1 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.5.0-rc01 (*)
+| | | +--- androidx.activity:activity:1.2.4 -> 1.6.0-alpha05 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 -> 2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 -> 2.5.0-rc01 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.5.1 (*)
+| | | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | | +--- androidx.viewpager:viewpager:1.0.0
+| | | | +--- 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 (*)
+| | +--- 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.1.0 -> 1.2.0 (*)
+| | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- androidx.appcompat:appcompat-resources:1.6.0-rc01 (c)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| +--- androidx.lifecycle:lifecycle-extensions:2.2.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.2.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.2.0 -> 2.5.1 (*)
+| | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | +--- androidx.fragment:fragment:1.2.0 -> 1.4.0 (*)
+| | +--- androidx.lifecycle:lifecycle-common:2.2.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.fragment:fragment:1.2.0 -> 1.5.4 (*)
+| | +--- androidx.lifecycle:lifecycle-common:2.2.0 -> 2.5.1 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-process:2.2.0 -> 2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-service:2.2.0 -> 2.4.0 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0 -> 2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0 -> 2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-ktx:2.4.1
+| | +--- androidx.lifecycle:lifecycle-livedata:2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.4.1
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.0-rc01 (*)
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*)
+| | +--- 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.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.6.4 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.0-rc01
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| +--- 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.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*)
+| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha01
+| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha02
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.0-alpha05 (*)
+| | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.0-rc01 (*)
+| | +--- androidx.cardview:cardview:1.0.0 (*)
+| | +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.constraintlayout:constraintlayout:2.0.1 -> 2.1.2
+| | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.constraintlayout:constraintlayout-core:1.0.2
+| | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.constraintlayout:constraintlayout:2.0.1 -> 2.1.4
+| | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.0-rc01 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | | \--- androidx.constraintlayout:constraintlayout-core:1.0.4
+| | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*)
+| | +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | \--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- androidx.documentfile:documentfile:1.0.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.loader:loader:1.0.0 (*)
@ -235,24 +240,24 @@
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | \--- androidx.print:print:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | +--- androidx.fragment:fragment:1.2.5 -> 1.4.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*)
+| | +--- androidx.fragment:fragment:1.2.5 -> 1.5.4 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.1 (*)
+| | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.2.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.transition:transition:1.2.0
+| | +--- androidx.transition:transition:1.2.0 -> 1.4.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.1 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | \--- androidx.viewpager2:viewpager2:1.0.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.fragment:fragment:1.1.0 -> 1.4.0 (*)
+| | +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.fragment:fragment:1.1.0 -> 1.5.4 (*)
+| | +--- androidx.recyclerview:recyclerview:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| \--- org.conscrypt:conscrypt-android:2.5.2
++--- com.github.tasks.opentasks:opentasks-provider:a1faa1b
@ -260,32 +265,32 @@
+| +--- org.dmfs:lib-recur:0.11.4
+| | \--- org.dmfs:rfc5545-datetime:0.2.4
+| \--- org.dmfs:jems:1.33
++--- com.google.dagger:hilt-android:2.42
+| +--- com.google.dagger:dagger:2.42
++--- com.google.dagger:hilt-android:2.44.2
+| +--- com.google.dagger:dagger:2.44.2
+| | \--- javax.inject:javax.inject:1
+| +--- com.google.dagger:dagger-lint-aar:2.42
+| +--- com.google.dagger:hilt-core:2.42
+| | +--- com.google.dagger:dagger:2.42 (*)
+| +--- com.google.dagger:dagger-lint-aar:2.44.2
+| +--- com.google.dagger:hilt-core:2.44.2
+| | +--- com.google.dagger:dagger:2.44.2 (*)
+| | \--- javax.inject:javax.inject:1
+| +--- androidx.activity:activity:1.3.1 -> 1.6.0-alpha05 (*)
+| +--- androidx.activity:activity:1.5.1 -> 1.6.1 (*)
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.fragment:fragment:1.3.6 -> 1.4.0 (*)
+| +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*)
+| +--- androidx.fragment:fragment:1.5.1 -> 1.5.4 (*)
+| +--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| +--- 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.6.10 -> 1.7.20 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.7.20 (*)
++--- androidx.hilt:hilt-work:1.0.0
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.hilt:hilt-common:1.0.0
+| | \--- com.google.dagger:hilt-core:2.35 -> 2.42 (*)
+| | \--- com.google.dagger:hilt-core:2.35 -> 2.44.2 (*)
+| +--- androidx.work:work-runtime:2.3.4 -> 2.7.1
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*)
+| | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava
+| | +--- androidx.lifecycle:lifecycle-livedata:2.1.0 -> 2.4.1 (*)
+| | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | +--- androidx.room:room-runtime:2.2.5 -> 2.4.2
+| | | +--- androidx.room:room-common:2.4.2
+| | | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
@ -295,48 +300,55 @@
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.sqlite:sqlite:2.2.0 (*)
+| | | +--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
+| | | \--- androidx.annotation:annotation-experimental:1.1.0
+| | | \--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*)
+| | +--- androidx.sqlite:sqlite:2.1.0 -> 2.2.0 (*)
+| | +--- androidx.sqlite:sqlite-framework:2.1.0 -> 2.2.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | \--- androidx.lifecycle:lifecycle-service:2.1.0 -> 2.4.0 (*)
+| \--- com.google.dagger:hilt-android:2.35 -> 2.42 (*)
++--- androidx.fragment:fragment-ktx:1.4.0
+| +--- androidx.fragment:fragment:1.4.0 (*)
+| +--- androidx.activity:activity-ktx:1.2.3 -> 1.6.0-alpha05
+| | +--- androidx.activity:activity:1.6.0-alpha05 (*)
+| | +--- androidx.core:core-ktx:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0-rc01 (*)
+| | +--- androidx.savedstate:savedstate-ktx:1.2.0-rc01 -> 1.2.0
+| \--- com.google.dagger:hilt-android:2.35 -> 2.44.2 (*)
++--- androidx.fragment:fragment-ktx:1.5.4
+| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.1
+| | +--- androidx.activity:activity:1.6.1 (*)
+| | +--- androidx.core:core-ktx:1.1.0 -> 1.9.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.5.1 (*)
+| | +--- 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.6.21 -> 1.7.20 (*)
+| | \--- androidx.activity:activity:1.6.0-alpha05 (c)
+| +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- 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 (*)
+| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.1 -> 2.4.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.savedstate:savedstate-ktx:1.1.0 -> 1.2.0 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*)
++--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.1 -> 2.5.0-rc01 (*)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.0-rc01 (*)
+| +--- 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 (*)
++--- 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.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*)
++--- androidx.appcompat:appcompat:1.6.0-alpha05 (*)
++--- androidx.paging:paging-runtime:2.1.2
+| +--- androidx.paging:paging-common:2.1.2
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.4.1 (*)
+| \--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
++--- 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.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 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-ktx:2.2.0 -> 2.4.1 (*)
+| +--- 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.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
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- com.atlassian.commonmark:commonmark:0.13.0
@ -363,19 +375,30 @@
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*)
++--- com.github.franmontiel:PersistentCookieJar:v1.0.1
+| \--- com.squareup.okhttp3:okhttp:3.1.2 -> 4.10.0 (*)
++--- com.google.code.gson:gson:2.8.8
++--- com.google.android.material:material:1.8.0-alpha01 (*)
++--- androidx.constraintlayout:constraintlayout:2.1.2 (*)
++--- com.google.code.gson:gson:2.9.0
++--- com.google.android.material:material:1.8.0-alpha02 (*)
++--- androidx.constraintlayout:constraintlayout:2.1.4 (*)
++--- androidx.swiperefreshlayout:swiperefreshlayout:1.1.0
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| \--- androidx.interpolator:interpolator:1.0.0 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.4.0 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
++--- androidx.preference:preference:1.2.0
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-rc01 (*)
+| +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.6 -> 1.5.4 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.2.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- 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.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 (*)
+| | | \--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | \--- 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 (*)
@ -399,7 +422,7 @@
+| | \--- com.google.guava:guava:30.1-android -> 30.1.1-android (*)
+| +--- com.google.http-client:google-http-client-gson:1.39.2
+| | +--- com.google.http-client:google-http-client:1.39.2 (*)
+| | \--- com.google.code.gson:gson:2.8.6 -> 2.8.8
+| | \--- com.google.code.gson:gson:2.8.6 -> 2.9.0
+| +--- com.google.guava:guava:30.1.1-android (*)
+| \--- com.google.http-client:google-http-client:1.39.2 (*)
++--- com.google.apis:google-api-services-drive:v3-rev20210725-1.32.1
@ -420,15 +443,15 @@
+| \--- com.squareup.okhttp3:logging-interceptor:3.12.1
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 4.10.0 (*)
++--- com.github.QuadFlask:colorpicker:0.0.15
+| \--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-alpha05 (*)
+| \--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-rc01 (*)
++--- net.openid:appauth:0.11.1
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.appcompat:appcompat:1.3.0 -> 1.6.0-alpha05 (*)
+| +--- androidx.appcompat:appcompat:1.3.0 -> 1.6.0-rc01 (*)
+| \--- androidx.browser:browser:1.3.0
+| +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| +--- androidx.concurrent:concurrent-futures:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava
++--- org.osmdroid:osmdroid-android:6.1.11
@ -438,60 +461,60 @@
+| +--- 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.0-rc01
+| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.0-alpha05 (*)
++--- androidx.compose.ui:ui:1.3.1
+| +--- 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-alpha05 (*)
+| | \--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01
+| +--- androidx.compose.runtime:runtime:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*)
+| +--- androidx.compose.runtime:runtime-saveable:1.3.0-rc01
+| +--- androidx.compose.runtime:runtime-saveable:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-geometry:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.3.0-rc01
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-graphics:1.3.1
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.0-rc01
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-geometry:1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| | | +--- 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.0-rc01 (*)
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-text:1.3.1
+| | +--- 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.0-rc01 (*)
+| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-graphics:1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| | +--- androidx.core:core:1.7.0 -> 1.9.0-alpha05 (*)
+| | +--- 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.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.kotlinx:kotlinx-coroutines-core:1.6.4 (*)
+| +--- androidx.compose.ui:ui-unit:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| +--- androidx.core:core:1.5.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.compose.ui:ui-unit:1.3.1 (*)
+| +--- androidx.compose.ui:ui-util:1.3.1 (*)
+| +--- 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-alpha05 (*)
+| | +--- androidx.core:core-ktx:1.5.0 -> 1.9.0 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| +--- androidx.lifecycle:lifecycle-common-java8:2.3.0 -> 2.5.0-rc01
+| +--- 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.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.1 (*)
+| +--- androidx.profileinstaller:profileinstaller:1.2.0
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | \--- androidx.startup:startup-runtime:1.1.1 (*)
@ -500,95 +523,98 @@
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*)
++--- androidx.compose.foundation:foundation:1.3.0-rc01
++--- androidx.compose.foundation:foundation:1.3.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.compose.animation:animation:1.1.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.animation:animation-core:1.1.1
+| | | +--- 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.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- 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.foundation:foundation-layout:1.0.0 -> 1.3.0-rc01
+| | +--- 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.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.core:core:1.7.0 -> 1.9.0-alpha05 (*)
+| | | +--- 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.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.0-rc01 (*)
+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- 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
+| +--- androidx.compose.foundation:foundation-layout:1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| +--- 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.0-rc01
++--- 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.foundation:foundation:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.foundation:foundation-layout:1.1.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.material:material-icons-core:1.3.0-rc01
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| +--- 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.material:material-ripple:1.3.0-rc01
+| +--- androidx.compose.material:material-ripple:1.3.1
+| | +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.compose.foundation:foundation:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- 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.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.0-rc01 (*)
+| +--- 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.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.0-rc01
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
++--- 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 (*)
+| +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
++--- com.google.android.material:compose-theme-adapter:1.1.11
+| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0-rc02 -> 1.9.0-alpha05 (*)
+| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.material:material:1.2.0-beta03 -> 1.3.0-rc01 (*)
+| +--- com.google.android.material:material:1.7.0-alpha02 -> 1.8.0-alpha01 (*)
+| +--- 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.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 (*)
++--- androidx.activity:activity-compose:1.4.0 -> 1.5.0-rc01
+| +--- androidx.activity:activity-ktx:1.5.0-rc01 -> 1.6.0-alpha05 (*)
+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-common-java8:2.5.0-rc01 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
++--- androidx.compose.material:material-icons-extended:1.3.0-rc01
+| +--- androidx.compose.material:material-icons-core:1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
++--- 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.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
+| +--- 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.lifecycle:lifecycle-viewmodel-compose:2.4.1
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.0-rc01 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*)
++--- androidx.compose.ui:ui-viewbinding:1.3.0-rc01
+| +--- androidx.compose.ui:ui:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
++--- 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.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 (*)
+| +--- androidx.databinding:viewbinding:4.1.2 -> 7.3.1 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.4.0 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.5.4 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
++--- io.coil-kt:coil-compose:2.2.0
+| +--- io.coil-kt:coil-compose-base:2.2.0
@ -597,39 +623,39 @@
+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.7.10
+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.0-rc01 (*)
+| | | +--- 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 (*)
+| | | +--- com.squareup.okio:okio:3.2.0 (*)
+| | | +--- androidx.annotation:annotation:1.4.0 -> 1.5.0 (*)
+| | | +--- androidx.appcompat:appcompat-resources:1.5.0 -> 1.6.0-alpha05 (*)
+| | | +--- androidx.appcompat:appcompat-resources:1.5.0 -> 1.6.0-rc01 (*)
+| | | +--- androidx.collection:collection:1.2.0 (*)
+| | | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.3.3
+| | | \--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.compose.foundation:foundation:1.2.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| | +--- 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.0-rc01 (*)
+| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.1 (*)
+| \--- io.coil-kt:coil:2.2.0
+| \--- io.coil-kt:coil-base:2.2.0 (*)
++--- io.coil-kt:coil-video:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| \--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| \--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
++--- io.coil-kt:coil-svg:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| \--- com.caverock:androidsvg-aar:1.4
++--- io.coil-kt:coil-gif:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| \--- 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.0-rc01 (*)
+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*)
+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.1 (*)
+\--- com.google.accompanist:accompanist-permissions:0.24.12-rc
+ +--- androidx.activity:activity-compose:1.5.0-rc01 (*)
+ +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.0-rc01 (*)
+ +--- 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

@ -9,16 +9,16 @@
+| | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.databinding:databinding-common:7.3.1
+| +--- androidx.databinding:viewbinding:7.3.1 (*)
+| \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.0-rc01
+| \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.arch.core:core-common:2.1.0
+| | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.arch.core:core-runtime:2.1.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | \--- androidx.arch.core:core-common:2.1.0 (*)
+| \--- androidx.lifecycle:lifecycle-common:2.5.0-rc01
+| \--- androidx.lifecycle:lifecycle-common:2.5.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- androidx.lifecycle:lifecycle-common-java8:2.5.0-rc01 (c)
+| \--- androidx.lifecycle:lifecycle-common-java8:2.5.1 (c)
++--- androidx.databinding:databinding-adapters:7.3.1
+| +--- androidx.databinding:databinding-runtime:7.3.1 (*)
+| \--- androidx.databinding:databinding-common:7.3.1
@ -37,31 +37,31 @@
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.21 -> 1.7.20
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21 -> 1.7.20 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.0 -> 2.5.0-rc01
+| +--- 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.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| | \--- 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 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | \--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.0-rc01
+| | \--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.1
+| | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-process:2.4.0 -> 2.4.1
+| | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.1 (*)
+| | +--- androidx.startup:startup-runtime:1.1.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | \--- androidx.tracing:tracing:1.0.0
+| | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | \--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.lifecycle:lifecycle-service:2.4.0
+| | \--- androidx.lifecycle:lifecycle-runtime:2.4.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.4.0 -> 2.5.0-rc01
+| | \--- 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 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.0-rc01 (c)
+| | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (c)
+| +--- androidx.databinding:databinding-runtime:7.3.1 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.31 -> 1.7.20 (*)
++--- com.google.firebase:firebase-crashlytics:18.2.11
@ -87,66 +87,67 @@
+| +--- com.google.android.gms:play-services-tasks:18.0.1
+| | \--- com.google.android.gms:play-services-basement:18.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.core:core:1.2.0 -> 1.9.0-alpha05
+| | +--- androidx.core:core:1.2.0 -> 1.9.0
+| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | | +--- androidx.annotation:annotation-experimental:1.1.0
+| | | +--- androidx.annotation:annotation-experimental:1.3.0
+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | +--- 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
+| | | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.1 (*)
+| | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1
+| | | | +--- 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-alpha05 (c)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.4.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.9.0-alpha05 (*)
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| | | \--- androidx.core:core:1.9.0-alpha05 (c)
+| | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.customview:customview:1.0.0 -> 1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.4.1 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.activity:activity:1.2.4 -> 1.6.0-alpha05
+| | | \--- androidx.core:core-ktx:1.9.0 (c)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.5.4
+| | +--- androidx.activity:activity:1.5.1 -> 1.6.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.9.0-alpha05 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.0-rc01
+| | | +--- androidx.core:core:1.8.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.0-rc01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| | | | +--- androidx.savedstate:savedstate:1.2.0-rc01 -> 1.2.0
+| | | | +--- 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 (*)
+| | | | | \--- androidx.core:core:1.9.0 (c)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*)
+| | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | | | +--- androidx.savedstate:savedstate:1.2.0
+| | | | | +--- 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.0-rc01 (*)
+| | | | | +--- 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.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*)
+| | | +--- androidx.savedstate:savedstate:1.2.0-rc01 -> 1.2.0 (*)
+| | | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | | +--- androidx.tracing:tracing:1.0.0 (*)
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| | | \--- androidx.activity:activity-ktx:1.6.0-alpha05 (c)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*)
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | \--- 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 (*)
+| | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.core:core-ktx:1.2.0 -> 1.9.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.5.1 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.4.1 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.5.1 (*)
+| | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- 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
+| | | +--- 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 (*)
+| +--- 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 (*)
@ -173,7 +174,7 @@
+| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- androidx.documentfile:documentfile:1.0.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.loader:loader:1.0.0 (*)
@ -186,7 +187,7 @@
+| | | \--- com.google.android.gms:play-services-basement:18.0.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:20.1.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:18.0.0 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:20.1.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.2
@ -238,16 +239,16 @@
++--- 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 (*)
+| | +--- androidx.core:core:1.2.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.4.0 (*)
+| | +--- androidx.core:core:1.2.0 -> 1.9.0 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.5.4 (*)
+| | +--- com.google.android.gms:play-services-basement:18.0.0 (*)
+| | \--- com.google.android.gms:play-services-tasks:18.0.1 (*)
+| +--- com.google.android.gms:play-services-basement:18.0.0 (*)
+| +--- com.google.android.gms:play-services-places-placereport:17.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 18.0.0 (*)
+| \--- com.google.android.gms:play-services-tasks:18.0.1 (*)
++--- com.google.android.gms:play-services-maps:18.0.2
+| +--- androidx.fragment:fragment:1.0.0 -> 1.4.0 (*)
++--- com.google.android.gms:play-services-maps:18.1.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.5.4 (*)
+| +--- com.google.android.gms:play-services-base:18.0.1 (*)
+| \--- com.google.android.gms:play-services-basement:18.0.0 (*)
++--- com.android.billingclient:billing-ktx:4.0.0
@ -259,49 +260,53 @@
+| +--- 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.kotlinx:kotlinx-coroutines-android:1.3.6 -> 1.6.4 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.4.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.5.4 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.6.0-alpha05
+| | +--- androidx.activity:activity:1.6.0-alpha05 (*)
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.6.0-rc01
+| | +--- androidx.activity:activity:1.6.0-rc02 -> 1.6.1 (*)
+| | +--- androidx.annotation:annotation:1.3.0 -> 1.5.0 (*)
+| | +--- androidx.appcompat:appcompat-resources:1.6.0-alpha05
+| | +--- androidx.appcompat:appcompat-resources:1.6.0-rc01
+| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0
+| | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | | | +--- androidx.interpolator:interpolator:1.0.0
+| | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
+| | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | | +--- androidx.interpolator:interpolator:1.0.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | \--- androidx.appcompat:appcompat:1.6.0-rc01 (c)
+| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.core:core:1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.9.0 (*)
+| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| | +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.9.0 (*)
+| | | \--- androidx.customview:customview:1.1.0 (*)
+| | +--- androidx.emoji2:emoji2:1.2.0-alpha04
+| | +--- androidx.emoji2:emoji2:1.2.0-rc01
+| | | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*)
+| | | +--- androidx.lifecycle:lifecycle-process:2.4.1 (*)
+| | | \--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.emoji2:emoji2-views-helper:1.2.0-alpha04
+| | +--- androidx.emoji2:emoji2-views-helper:1.2.0-rc01
+| | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.emoji2:emoji2:1.2.0-alpha04 (*)
+| | +--- androidx.fragment:fragment:1.3.6 -> 1.4.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.1 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| | | +--- androidx.core:core:1.3.0 -> 1.9.0 (*)
+| | | \--- androidx.emoji2:emoji2:1.2.0-rc01 (*)
+| | +--- androidx.fragment:fragment:1.3.6 -> 1.5.4 (*)
+| | +--- 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.1.0 -> 1.2.0 (*)
+| | +--- androidx.savedstate:savedstate:1.2.0 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- 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 (*)
@ -321,74 +326,74 @@
+| +--- commons-io:commons-io:2.6
+| +--- org.slf4j:slf4j-jdk14:1.7.30
+| | \--- org.slf4j:slf4j-api:1.7.30
+| \--- androidx.core:core-ktx:1.3.2 -> 1.9.0-alpha05 (*)
+| \--- androidx.core:core-ktx:1.3.2 -> 1.9.0 (*)
++--- com.github.bitfireAT:cert4android:7814052
+| +--- androidx.databinding:databinding-common:7.2.0 -> 7.3.1
+| +--- androidx.databinding:databinding-runtime:7.2.0 -> 7.3.1 (*)
+| +--- androidx.databinding:databinding-adapters:7.2.0 -> 7.3.1 (*)
+| +--- androidx.databinding:databinding-ktx:7.2.0 -> 7.3.1 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.21 -> 1.7.20 (*)
+| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-alpha05 (*)
+| +--- 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 (*)
+| +--- androidx.lifecycle:lifecycle-extensions:2.2.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.2.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.2.0 -> 2.5.1 (*)
+| | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | +--- androidx.fragment:fragment:1.2.0 -> 1.4.0 (*)
+| | +--- androidx.lifecycle:lifecycle-common:2.2.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.fragment:fragment:1.2.0 -> 1.5.4 (*)
+| | +--- androidx.lifecycle:lifecycle-common:2.2.0 -> 2.5.1 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-process:2.2.0 -> 2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-service:2.2.0 -> 2.4.0 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0 -> 2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-viewmodel:2.2.0 -> 2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-ktx:2.4.1
+| | +--- androidx.lifecycle:lifecycle-livedata:2.4.1 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.4.1
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.4.1 -> 2.5.0-rc01 (*)
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*)
+| | +--- 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.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.6.4 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.0-rc01
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.0-rc01 (*)
+| +--- 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.kotlinx:kotlinx-coroutines-android:1.6.1 -> 1.6.4 (*)
+| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha01
+| +--- com.google.android.material:material:1.6.0 -> 1.8.0-alpha02
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.0-alpha05 (*)
+| | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.0-rc01 (*)
+| | +--- androidx.cardview:cardview:1.0.0 (*)
+| | +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.constraintlayout:constraintlayout:2.0.1 -> 2.1.2
+| | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.constraintlayout:constraintlayout-core:1.0.2
+| | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.constraintlayout:constraintlayout:2.0.1 -> 2.1.4
+| | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.0-rc01 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | | \--- androidx.constraintlayout:constraintlayout-core:1.0.4
+| | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*)
+| | +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.9.0 (*)
+| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | +--- androidx.fragment:fragment:1.2.5 -> 1.4.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.0-rc01 (*)
+| | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*)
+| | +--- androidx.fragment:fragment:1.2.5 -> 1.5.4 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.1 (*)
+| | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.2.0
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | +--- androidx.transition:transition:1.2.0
+| | +--- androidx.transition:transition:1.2.0 -> 1.4.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.core:core:1.0.1 -> 1.9.0-alpha05 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| | | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| | \--- androidx.viewpager2:viewpager2:1.0.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.fragment:fragment:1.1.0 -> 1.4.0 (*)
+| | +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.fragment:fragment:1.1.0 -> 1.5.4 (*)
+| | +--- androidx.recyclerview:recyclerview:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| \--- org.conscrypt:conscrypt-android:2.5.2
++--- com.github.tasks.opentasks:opentasks-provider:a1faa1b
@ -396,32 +401,32 @@
+| +--- org.dmfs:lib-recur:0.11.4
+| | \--- org.dmfs:rfc5545-datetime:0.2.4
+| \--- org.dmfs:jems:1.33
++--- com.google.dagger:hilt-android:2.42
+| +--- com.google.dagger:dagger:2.42
++--- com.google.dagger:hilt-android:2.44.2
+| +--- com.google.dagger:dagger:2.44.2
+| | \--- javax.inject:javax.inject:1
+| +--- com.google.dagger:dagger-lint-aar:2.42
+| +--- com.google.dagger:hilt-core:2.42
+| | +--- com.google.dagger:dagger:2.42 (*)
+| +--- com.google.dagger:dagger-lint-aar:2.44.2
+| +--- com.google.dagger:hilt-core:2.44.2
+| | +--- com.google.dagger:dagger:2.44.2 (*)
+| | \--- javax.inject:javax.inject:1
+| +--- androidx.activity:activity:1.3.1 -> 1.6.0-alpha05 (*)
+| +--- androidx.activity:activity:1.5.1 -> 1.6.1 (*)
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.fragment:fragment:1.3.6 -> 1.4.0 (*)
+| +--- androidx.lifecycle:lifecycle-common:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.savedstate:savedstate:1.1.0 -> 1.2.0 (*)
+| +--- androidx.fragment:fragment:1.5.1 -> 1.5.4 (*)
+| +--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 (*)
+| +--- 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.6.10 -> 1.7.20 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.7.20 (*)
++--- androidx.hilt:hilt-work:1.0.0
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.hilt:hilt-common:1.0.0
+| | \--- com.google.dagger:hilt-core:2.35 -> 2.42 (*)
+| | \--- com.google.dagger:hilt-core:2.35 -> 2.44.2 (*)
+| +--- androidx.work:work-runtime:2.3.4 -> 2.7.1
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*)
+| | +--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava
+| | +--- androidx.lifecycle:lifecycle-livedata:2.1.0 -> 2.4.1 (*)
+| | +--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.core:core:1.6.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| | +--- androidx.room:room-runtime:2.2.5 -> 2.4.2
+| | | +--- androidx.room:room-common:2.4.2
+| | | | \--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
@ -431,48 +436,55 @@
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | | +--- androidx.sqlite:sqlite:2.2.0 (*)
+| | | +--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
+| | | \--- androidx.annotation:annotation-experimental:1.1.0
+| | | \--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*)
+| | +--- androidx.sqlite:sqlite:2.1.0 -> 2.2.0 (*)
+| | +--- androidx.sqlite:sqlite-framework:2.1.0 -> 2.2.0 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| | \--- androidx.lifecycle:lifecycle-service:2.1.0 -> 2.4.0 (*)
+| \--- com.google.dagger:hilt-android:2.35 -> 2.42 (*)
++--- androidx.fragment:fragment-ktx:1.4.0
+| +--- androidx.fragment:fragment:1.4.0 (*)
+| +--- androidx.activity:activity-ktx:1.2.3 -> 1.6.0-alpha05
+| | +--- androidx.activity:activity:1.6.0-alpha05 (*)
+| | +--- androidx.core:core-ktx:1.1.0 -> 1.9.0-alpha05 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.5.0-rc01 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0-rc01 (*)
+| | +--- androidx.savedstate:savedstate-ktx:1.2.0-rc01 -> 1.2.0
+| \--- com.google.dagger:hilt-android:2.35 -> 2.44.2 (*)
++--- androidx.fragment:fragment-ktx:1.5.4
+| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.1
+| | +--- androidx.activity:activity:1.6.1 (*)
+| | +--- androidx.core:core-ktx:1.1.0 -> 1.9.0 (*)
+| | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.5.1 (*)
+| | +--- 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.6.21 -> 1.7.20 (*)
+| | \--- androidx.activity:activity:1.6.0-alpha05 (c)
+| +--- androidx.core:core-ktx:1.2.0 -> 1.9.0-alpha05 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- 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 (*)
+| | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.1 -> 2.4.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1 -> 2.5.0-rc01 (*)
+| +--- androidx.savedstate:savedstate-ktx:1.1.0 -> 1.2.0 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.7.20 (*)
++--- androidx.lifecycle:lifecycle-runtime-ktx:2.4.1 -> 2.5.0-rc01 (*)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1 -> 2.5.0-rc01 (*)
+| +--- 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 (*)
++--- 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.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.6.4 (*)
++--- androidx.appcompat:appcompat:1.6.0-alpha05 (*)
++--- androidx.paging:paging-runtime:2.1.2
+| +--- androidx.paging:paging-common:2.1.2
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.5.0 (*)
+| | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.4.1 (*)
+| \--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
++--- 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.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 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-ktx:2.2.0 -> 2.4.1 (*)
+| +--- 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.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
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- com.atlassian.commonmark:commonmark:0.13.0
@ -499,19 +511,30 @@
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.7.20 (*)
++--- com.github.franmontiel:PersistentCookieJar:v1.0.1
+| \--- com.squareup.okhttp3:okhttp:3.1.2 -> 4.10.0 (*)
++--- com.google.code.gson:gson:2.8.8
++--- com.google.android.material:material:1.8.0-alpha01 (*)
++--- androidx.constraintlayout:constraintlayout:2.1.2 (*)
++--- com.google.code.gson:gson:2.9.0
++--- com.google.android.material:material:1.8.0-alpha02 (*)
++--- androidx.constraintlayout:constraintlayout:2.1.4 (*)
++--- androidx.swiperefreshlayout:swiperefreshlayout:1.1.0
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| \--- androidx.interpolator:interpolator:1.0.0 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.4.0 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
++--- androidx.preference:preference:1.2.0
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-rc01 (*)
+| +--- androidx.core:core:1.6.0 -> 1.9.0 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.6 -> 1.5.4 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.2.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- 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.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 (*)
+| | | \--- androidx.core:core:1.3.2 -> 1.9.0 (*)
+| | \--- 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 (*)
@ -535,7 +558,7 @@
+| | \--- com.google.guava:guava:30.1-android -> 30.1.1-android (*)
+| +--- com.google.http-client:google-http-client-gson:1.39.2
+| | +--- com.google.http-client:google-http-client:1.39.2 (*)
+| | \--- com.google.code.gson:gson:2.8.6 -> 2.8.8
+| | \--- com.google.code.gson:gson:2.8.6 -> 2.9.0
+| +--- com.google.guava:guava:30.1.1-android (*)
+| \--- com.google.http-client:google-http-client:1.39.2 (*)
++--- com.google.apis:google-api-services-drive:v3-rev20210725-1.32.1
@ -556,15 +579,15 @@
+| \--- com.squareup.okhttp3:logging-interceptor:3.12.1
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 4.10.0 (*)
++--- com.github.QuadFlask:colorpicker:0.0.15
+| \--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-alpha05 (*)
+| \--- androidx.appcompat:appcompat:1.1.0 -> 1.6.0-rc01 (*)
++--- net.openid:appauth:0.11.1
+| +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| +--- androidx.appcompat:appcompat:1.3.0 -> 1.6.0-alpha05 (*)
+| +--- androidx.appcompat:appcompat:1.3.0 -> 1.6.0-rc01 (*)
+| \--- androidx.browser:browser:1.3.0
+| +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*)
+| +--- androidx.concurrent:concurrent-futures:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| \--- com.google.guava:listenablefuture:1.0 -> 9999.0-empty-to-avoid-conflict-with-guava
++--- org.osmdroid:osmdroid-android:6.1.11
@ -574,60 +597,60 @@
+| +--- 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.0-rc01
+| +--- androidx.activity:activity-ktx:1.5.1 -> 1.6.0-alpha05 (*)
++--- androidx.compose.ui:ui:1.3.1
+| +--- 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-alpha05 (*)
+| | \--- androidx.core:core:1.1.0 -> 1.9.0 (*)
+| +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01
+| +--- androidx.compose.runtime:runtime:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*)
+| +--- androidx.compose.runtime:runtime-saveable:1.3.0-rc01
+| +--- androidx.compose.runtime:runtime-saveable:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-geometry:1.3.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.3.0-rc01
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-graphics:1.3.1
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.0-rc01
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.1 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.1
+| | | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-geometry:1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| | | +--- 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.0-rc01 (*)
+| | +--- 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.0-rc01
+| +--- androidx.compose.ui:ui-text:1.3.1
+| | +--- 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.0-rc01 (*)
+| | +--- androidx.compose.runtime:runtime-saveable:1.2.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-graphics:1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-unit:1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| | +--- androidx.core:core:1.7.0 -> 1.9.0-alpha05 (*)
+| | +--- 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.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.kotlinx:kotlinx-coroutines-core:1.6.4 (*)
+| +--- androidx.compose.ui:ui-unit:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
+| +--- androidx.core:core:1.5.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.compose.ui:ui-unit:1.3.1 (*)
+| +--- androidx.compose.ui:ui-util:1.3.1 (*)
+| +--- 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-alpha05 (*)
+| | +--- androidx.core:core-ktx:1.5.0 -> 1.9.0 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
+| +--- androidx.lifecycle:lifecycle-common-java8:2.3.0 -> 2.5.0-rc01
+| +--- 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.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.0-rc01 (*)
+| | \--- androidx.lifecycle:lifecycle-common:2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.1 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.1 (*)
+| +--- androidx.profileinstaller:profileinstaller:1.2.0
+| | +--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | \--- androidx.startup:startup-runtime:1.1.1 (*)
@ -636,95 +659,98 @@
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.7.10 -> 1.7.20
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 (*)
++--- androidx.compose.foundation:foundation:1.3.0-rc01
++--- androidx.compose.foundation:foundation:1.3.1
+| +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| +--- androidx.compose.animation:animation:1.1.1
+| | +--- androidx.annotation:annotation:1.1.0 -> 1.5.0 (*)
+| | +--- androidx.compose.animation:animation-core:1.1.1
+| | | +--- 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.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- 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.foundation:foundation-layout:1.0.0 -> 1.3.0-rc01
+| | +--- 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.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui:1.2.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.3.0-rc01 (*)
+| | | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | | +--- androidx.core:core:1.7.0 -> 1.9.0-alpha05 (*)
+| | | +--- 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.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.0-rc01 (*)
+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-geometry:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- 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
+| +--- androidx.compose.foundation:foundation-layout:1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-text:1.0.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| +--- 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.0-rc01
++--- 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.foundation:foundation:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.foundation:foundation-layout:1.1.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.material:material-icons-core:1.3.0-rc01
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
+| +--- 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.material:material-ripple:1.3.0-rc01
+| +--- androidx.compose.material:material-ripple:1.3.1
+| | +--- androidx.compose.animation:animation:1.0.0 -> 1.1.1 (*)
+| | +--- androidx.compose.foundation:foundation:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.runtime:runtime:1.1.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| | +--- 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.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-text:1.2.0 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.3.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0 -> 2.5.0-rc01 (*)
+| +--- 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.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.0-rc01
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.0 -> 1.3.0-rc01 (*)
++--- 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 (*)
+| +--- androidx.lifecycle:lifecycle-livedata:2.2.0 -> 2.4.1 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
++--- com.google.android.material:compose-theme-adapter:1.1.11
+| +--- androidx.appcompat:appcompat:1.4.1 -> 1.6.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0-rc02 -> 1.9.0-alpha05 (*)
+| +--- androidx.compose.runtime:runtime:1.2.0-beta03 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.material:material:1.2.0-beta03 -> 1.3.0-rc01 (*)
+| +--- com.google.android.material:material:1.7.0-alpha02 -> 1.8.0-alpha01 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.7.20 (*)
++--- androidx.activity:activity-compose:1.4.0 -> 1.5.0-rc01
+| +--- androidx.activity:activity-ktx:1.5.0-rc01 -> 1.6.0-alpha05 (*)
+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.lifecycle:lifecycle-common-java8:2.5.0-rc01 (*)
+| +--- 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.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 (*)
++--- androidx.compose.material:material-icons-extended:1.3.0-rc01
+| +--- androidx.compose.material:material-icons-core:1.3.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.3.0-rc01 (*)
++--- 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.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
+| +--- 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.lifecycle:lifecycle-viewmodel-compose:2.4.1
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0 -> 2.5.0-rc01 (*)
+| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui:1.0.1 -> 1.3.0-rc01 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.30 -> 1.7.20 (*)
++--- androidx.compose.ui:ui-viewbinding:1.3.0-rc01
+| +--- androidx.compose.ui:ui:1.3.0-rc01 (*)
+| +--- androidx.compose.ui:ui-util:1.3.0-rc01 (*)
++--- 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.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 (*)
+| +--- androidx.databinding:viewbinding:4.1.2 -> 7.3.1 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.4.0 (*)
+| +--- androidx.fragment:fragment-ktx:1.3.2 -> 1.5.4 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
++--- io.coil-kt:coil-compose:2.2.0
+| +--- io.coil-kt:coil-compose-base:2.2.0
@ -733,39 +759,39 @@
+| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.7.10
+| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.7.20 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.4.1 -> 2.5.0-rc01 (*)
+| | | +--- 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 (*)
+| | | +--- com.squareup.okio:okio:3.2.0 (*)
+| | | +--- androidx.annotation:annotation:1.4.0 -> 1.5.0 (*)
+| | | +--- androidx.appcompat:appcompat-resources:1.5.0 -> 1.6.0-alpha05 (*)
+| | | +--- androidx.appcompat:appcompat-resources:1.5.0 -> 1.6.0-rc01 (*)
+| | | +--- androidx.collection:collection:1.2.0 (*)
+| | | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| | | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.3.3
+| | | \--- androidx.annotation:annotation:1.2.0 -> 1.5.0 (*)
+| | +--- androidx.compose.foundation:foundation:1.2.1 -> 1.3.0-rc01 (*)
+| | +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| | +--- 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.0-rc01 (*)
+| | \--- androidx.compose.ui:ui:1.2.1 -> 1.3.1 (*)
+| \--- io.coil-kt:coil:2.2.0
+| \--- io.coil-kt:coil-base:2.2.0 (*)
++--- io.coil-kt:coil-video:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| \--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| \--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
++--- io.coil-kt:coil-svg:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| \--- com.caverock:androidsvg-aar:1.4
++--- io.coil-kt:coil-gif:2.2.0
+| +--- io.coil-kt:coil-base:2.2.0 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0-alpha05 (*)
+| +--- androidx.core:core-ktx:1.8.0 -> 1.9.0 (*)
+| \--- 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.0-rc01 (*)
+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.0-rc01 (*)
+| +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.1 (*)
+| \--- androidx.compose.ui:ui-util:1.2.0-rc02 -> 1.3.1 (*)
+\--- com.google.accompanist:accompanist-permissions:0.24.12-rc
+ +--- androidx.activity:activity-compose:1.5.0-rc01 (*)
+ +--- androidx.compose.foundation:foundation:1.2.0-rc02 -> 1.3.0-rc01 (*)
+ +--- 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

@ -17,3 +17,6 @@ org.gradle.caching=true
org.gradle.configureondemand=true
org.gradle.vfs.watch=true
org.gradle.unsafe.configuration-cache=true
android.databinding.incremental=true
kapt.incremental.apt=true
kotlin.incremental=true

Loading…
Cancel
Save