diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
index d694c394..bfb025b5 100644
--- a/.idea/jarRepositories.xml
+++ b/.idea/jarRepositories.xml
@@ -66,5 +66,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
index d7b8dced..eccb406c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -14,6 +14,23 @@ if (file("google-services.json").exists() && file("src/debug/google-services.jso
logger.lifecycle("Firebase Disabled")
}
+ext {
+ okhttp_version = "3.12.12"
+}
+
+configurations {
+ all {
+ resolutionStrategy {
+ eachDependency { DependencyResolveDetails details ->
+ if (details.requested.group == "com.squareup.okhttp3" && details.requested.name == "okhttp") {
+ // OkHttp drops support before 5.0 since 3.13.0
+ details.useVersion okhttp_version
+ }
+ }
+ }
+ }
+}
+
android {
compileSdkVersion 30
defaultConfig {
@@ -65,6 +82,7 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2"
+
implementation "androidx.appcompat:appcompat:1.2.0"
implementation "androidx.activity:activity-ktx:1.2.0-alpha08"
implementation "androidx.fragment:fragment-ktx:1.3.0-alpha08"
@@ -72,41 +90,48 @@ dependencies {
implementation "androidx.constraintlayout:constraintlayout:2.0.1"
implementation "androidx.gridlayout:gridlayout:1.0.0"
implementation "androidx.biometric:biometric:1.0.1"
+
implementation "com.daimajia.swipelayout:library:1.2.0@aar"
+
implementation "com.google.android.material:material:1.3.0-alpha02"
+
implementation "com.google.firebase:firebase-core:17.5.0"
implementation "com.google.firebase:firebase-analytics:17.5.0"
implementation "com.google.firebase:firebase-crashlytics:17.2.1"
implementation "com.google.firebase:firebase-perf:19.0.8"
+
implementation "com.google.android.gms:play-services-oss-licenses:17.0.0"
implementation "com.google.android.gms:play-services-mlkit-face-detection:16.1.1"
+
implementation "com.github.clans:fab:1.6.4"
+
//implementation "com.quiph.ui:recyclerviewfastscroller:0.2.1"
+
+ implementation 'com.github.piasy:BigImageViewer:1.6.7'
+ implementation 'com.github.piasy:FrescoImageLoader:1.6.7'
+ implementation 'com.github.piasy:FrescoImageViewFactory:1.6.7'
+
//noinspection GradleDependency
- implementation "com.squareup.okhttp3:okhttp:3.12.12"
+ implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
implementation "com.github.bumptech.glide:glide:4.11.0"
implementation ("com.github.bumptech.glide:okhttp3-integration:4.11.0") {
transitive = false
}
- implementation ("com.github.bumptech.glide:recyclerview-integration:4.11.0") {
- transitive = false
- }
- implementation "com.github.bumptech.glide:annotations:4.11.0"
- annotationProcessor "com.github.bumptech.glide:compiler:4.11.0"
- kapt "com.github.bumptech.glide:compiler:4.11.0"
- implementation ("com.github.bumptech.glide:recyclerview-integration:4.11.0") {
- transitive = false
- }
+
implementation "com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2"
- implementation "com.gu:option:1.3"
+
implementation "net.rdrei.android.dirchooser:library:3.2@aar"
- implementation "com.github.chrisbanes:PhotoView:2.3.0"
+ implementation "com.gu:option:1.3"
+
implementation "com.andrognito.patternlockview:patternlockview:1.0.0"
//implementation "com.andrognito.pinlockview:pinlockview:2.1.0"
+
implementation "ru.noties.markwon:core:3.1.0"
+
implementation "xyz.quaver:libpupil:1.7.2"
implementation "xyz.quaver:documentfilex:0.2.15"
implementation "xyz.quaver:floatingsearchview:1.0.5"
+
testImplementation "junit:junit:4.13"
androidTestImplementation "androidx.test.ext:junit:1.1.2"
androidTestImplementation "androidx.test:rules:1.3.0"
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 8161565b..d96312dc 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -25,7 +25,6 @@
android:theme="@style/AppTheme"
android:networkSecurityConfig="@xml/network_security_config"
tools:replace="android:theme"
- android:largeHeap="true"
tools:ignore="UnusedAttribute">
= Build.VERSION_CODES.O) {
val manager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
diff --git a/app/src/main/java/xyz/quaver/pupil/PupilGlideModule.kt b/app/src/main/java/xyz/quaver/pupil/PupilGlideModule.kt
deleted file mode 100644
index 0f51f8b3..00000000
--- a/app/src/main/java/xyz/quaver/pupil/PupilGlideModule.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Pupil, Hitomi.la viewer for Android
- * Copyright (C) 2020 tom5079
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-
-package xyz.quaver.pupil
-
-import android.content.Context
-import com.bumptech.glide.Glide
-import com.bumptech.glide.Registry
-import com.bumptech.glide.annotation.GlideModule
-import com.bumptech.glide.integration.okhttp3.OkHttpUrlLoader
-import com.bumptech.glide.load.model.GlideUrl
-import com.bumptech.glide.module.AppGlideModule
-import java.io.InputStream
-
-@GlideModule
-class PupilGlideModule : AppGlideModule() {
-
- override fun registerComponents(context: Context, glide: Glide, registry: Registry) {
- registry.append(
- GlideUrl::class.java,
- InputStream::class.java,
- OkHttpUrlLoader.Factory(client)
- )
- }
-
-}
\ No newline at end of file
diff --git a/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt b/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt
index ef080b6c..58c57bd8 100644
--- a/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt
+++ b/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt
@@ -80,7 +80,7 @@ class GalleryBlockAdapter(private val glide: RequestManager, private val galleri
val cache = Cache.getInstance(context, galleryID)
CoroutineScope(Dispatchers.Main).launch {
- if (cache.metadata.reader == null || Preferences["cache_disable"]) {
+ if (cache.metadata.reader == null) {
view.galleryblock_progressbar_layout.visibility = View.GONE
view.galleryblock_progress_complete.visibility = View.INVISIBLE
return@launch
diff --git a/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt b/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt
index 23dee9fe..5384139b 100644
--- a/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt
+++ b/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt
@@ -18,34 +18,23 @@
package xyz.quaver.pupil.adapters
-import android.graphics.drawable.Drawable
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.constraintlayout.widget.ConstraintLayout
+import androidx.core.view.updateLayoutParams
import androidx.recyclerview.widget.RecyclerView
-import com.bumptech.glide.Glide
-import com.bumptech.glide.load.DataSource
-import com.bumptech.glide.load.engine.DiskCacheStrategy
-import com.bumptech.glide.load.engine.GlideException
-import com.bumptech.glide.load.model.GlideUrl
-import com.bumptech.glide.load.model.LazyHeaders
-import com.bumptech.glide.request.RequestListener
-import com.bumptech.glide.request.target.Target
+import com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView
+import com.facebook.drawee.view.SimpleDraweeView
+import com.github.piasy.biv.view.FrescoImageViewFactory
+import com.github.piasy.biv.view.ImageShownCallback
import kotlinx.android.synthetic.main.item_reader.view.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
-import xyz.quaver.Code
import xyz.quaver.hitomi.Reader
-import xyz.quaver.hitomi.getReferer
-import xyz.quaver.hitomi.imageUrlFromImage
-import xyz.quaver.hiyobi.createImgList
-import xyz.quaver.pupil.BuildConfig
import xyz.quaver.pupil.R
-import xyz.quaver.pupil.services.DownloadService
import xyz.quaver.pupil.ui.ReaderActivity
-import xyz.quaver.pupil.util.Preferences
import xyz.quaver.pupil.util.downloader.Cache
import java.util.*
import kotlin.concurrent.schedule
@@ -57,18 +46,45 @@ class ReaderAdapter(private val activity: ReaderActivity,
var reader: Reader? = null
val timer = Timer()
- private val glide = Glide.with(activity)
-
var isFullScreen = false
- var onItemClickListener : ((Int) -> (Unit))? = null
+ var onItemClickListener : (() -> (Unit))? = null
- class ViewHolder(val view: View) : RecyclerView.ViewHolder(view)
+ class ViewHolder(val view: View) : RecyclerView.ViewHolder(view) {
+ fun clear() {
+ view.image.mainView.let {
+ when (it) {
+ is SubsamplingScaleImageView ->
+ it.recycle()
+ is SimpleDraweeView ->
+ it.controller = null
+ }
+ }
+ }
+ }
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
return LayoutInflater.from(parent.context).inflate(
R.layout.item_reader, parent, false
).let {
+ with (it) {
+ image.setImageViewFactory(FrescoImageViewFactory())
+ image.setImageShownCallback(object: ImageShownCallback {
+ override fun onThumbnailShown() {}
+ override fun onMainImageShown() {
+ placeholder.updateLayoutParams {
+ dimensionRatio = null
+ }
+ }
+ })
+ image.setOnClickListener {
+ onItemClickListener?.invoke()
+ }
+ setOnClickListener {
+ onItemClickListener?.invoke()
+ }
+ }
+
ViewHolder(it)
}
}
@@ -80,121 +96,43 @@ class ReaderAdapter(private val activity: ReaderActivity,
if (cache == null)
cache = Cache.getInstance(holder.view.context, galleryID)
- if (isFullScreen) {
- holder.view.layoutParams.height = ConstraintLayout.LayoutParams.MATCH_PARENT
- } else {
- holder.view.layoutParams.height = ConstraintLayout.LayoutParams.WRAP_CONTENT
+ holder.view.layoutParams.height =
+ if (isFullScreen)
+ ConstraintLayout.LayoutParams.MATCH_PARENT
+ else
+ ConstraintLayout.LayoutParams.WRAP_CONTENT
- (holder.view.progress_layout.layoutParams as ConstraintLayout.LayoutParams)
- .dimensionRatio = "${reader!!.galleryInfo.files[position].width}:${reader!!.galleryInfo.files[position].height}"
- }
+ holder.view.image.layoutParams.height =
+ if (isFullScreen)
+ ConstraintLayout.LayoutParams.MATCH_PARENT
+ else
+ ConstraintLayout.LayoutParams.WRAP_CONTENT
- holder.view.image.setOnPhotoTapListener { _, _, _ ->
- onItemClickListener?.invoke(position)
- }
-
- holder.view.setOnClickListener {
- onItemClickListener?.invoke(position)
+ holder.view.placeholder.updateLayoutParams {
+ dimensionRatio = "${reader!!.galleryInfo.files[position].width}:${reader!!.galleryInfo.files[position].height}"
}
holder.view.reader_index.text = (position+1).toString()
- if (Preferences["cache_disable"]) {
- val lowQuality: Boolean = Preferences["low_quality"]
+ val image = cache!!.getImage(position)
+ val progress = activity.downloader?.progress?.get(galleryID)?.get(position)
- val url = when (reader!!.code) {
- Code.HITOMI ->
- GlideUrl(
- imageUrlFromImage(
- galleryID,
- reader!!.galleryInfo.files[position],
- !lowQuality
- )
- , LazyHeaders.Builder().addHeader("Referer", getReferer(galleryID)).build())
- Code.HIYOBI ->
- GlideUrl(createImgList(galleryID, reader!!, lowQuality)[position].path)
- else -> null
- }
- holder.view.image.post {
- glide
- .load(url!!)
- .diskCacheStrategy(DiskCacheStrategy.NONE)
- .skipMemoryCache(false)
- .error(R.drawable.image_broken_variant)
- .apply {
- if (BuildConfig.CENSOR)
- override(5, 8)
- else
- override(
- holder.view.context.resources.displayMetrics.widthPixels,
- holder.view.context.resources.getDimensionPixelSize(R.dimen.reader_max_height)
- )
- }
- .error(R.drawable.image_broken_variant)
- .into(holder.view.image)
- }
+ if (progress?.isInfinite() == true && image != null) {
+ holder.view.progress_group.visibility = View.INVISIBLE
+ holder.view.image.showImage(image.uri)
} else {
- val image = cache!!.getImage(position)
- val progress = activity.downloader?.progress?.get(galleryID)?.get(position)
+ holder.view.progress_group.visibility = View.VISIBLE
+ holder.view.reader_item_progressbar.progress =
+ if (progress?.isInfinite() == true)
+ 100
+ else
+ progress?.roundToInt() ?: 0
- if (progress?.isInfinite() == true && image != null) {
- holder.view.reader_item_progressbar.visibility = View.INVISIBLE
+ holder.clear()
- CoroutineScope(Dispatchers.IO).launch {
- glide
- .load(image.uri)
- .diskCacheStrategy(DiskCacheStrategy.NONE)
- .skipMemoryCache(true)
- .apply {
- if (BuildConfig.CENSOR)
- override(5, 8)
- else
- override(
- holder.view.context.resources.displayMetrics.widthPixels,
- holder.view.context.resources.getDimensionPixelSize(R.dimen.reader_max_height)
- )
- }
- .error(R.drawable.image_broken_variant)
- .listener(object: RequestListener {
- override fun onLoadFailed(
- e: GlideException?,
- model: Any?,
- target: Target?,
- isFirstResource: Boolean
- ): Boolean {
- cache!!.metadata.imageList?.set(position, null)
- image.delete()
- DownloadService.cancel(holder.view.context, galleryID)
- DownloadService.download(holder.view.context, galleryID, true)
- return true
- }
-
- override fun onResourceReady(
- resource: Drawable?,
- model: Any?,
- target: Target?,
- dataSource: DataSource?,
- isFirstResource: Boolean
- ) = false
- }).let { launch(Dispatchers.Main) { it.into(holder.view.image) } }
- }
- } else {
- holder.view.reader_item_progressbar.visibility = View.VISIBLE
-
- glide.clear(holder.view.image)
-
- holder.view.reader_item_progressbar.progress =
- if (progress?.isInfinite() == true)
- 100
- else
- progress?.roundToInt() ?: 0
-
- holder.view.image.setImageDrawable(null)
-
- timer.schedule(1000) {
- CoroutineScope(Dispatchers.Main).launch {
- notifyItemChanged(position)
- }
+ timer.schedule(1000) {
+ CoroutineScope(Dispatchers.Main).launch {
+ notifyItemChanged(position)
}
}
}
@@ -202,4 +140,8 @@ class ReaderAdapter(private val activity: ReaderActivity,
override fun getItemCount() = reader?.galleryInfo?.files?.size ?: 0
+ override fun onViewRecycled(holder: ViewHolder) {
+ holder.clear()
+ }
+
}
\ No newline at end of file
diff --git a/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt b/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt
index 8a55ee02..6c7ad704 100644
--- a/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt
+++ b/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt
@@ -332,16 +332,13 @@ class MainActivity :
}
onDownloadClickedHandler = { position ->
val galleryID = galleries[position]
- if (Preferences["cache_disable"])
- Toast.makeText(context, R.string.settings_download_when_cache_disable_warning, Toast.LENGTH_SHORT).show()
+
+ if (DownloadManager.getInstance(context).isDownloading(galleryID)) { //download in progress
+ DownloadService.cancel(this@MainActivity, galleryID)
+ }
else {
- if (DownloadManager.getInstance(context).isDownloading(galleryID)) { //download in progress
- DownloadService.cancel(this@MainActivity, galleryID)
- }
- else {
- DownloadManager.getInstance(context).addDownloadFolder(galleryID)
- DownloadService.download(this@MainActivity, galleryID)
- }
+ DownloadManager.getInstance(context).addDownloadFolder(galleryID)
+ DownloadService.download(this@MainActivity, galleryID)
}
closeAllItems()
diff --git a/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt b/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt
index fb955a98..b350d981 100644
--- a/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt
+++ b/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt
@@ -139,38 +139,7 @@ class ReaderActivity : BaseActivity() {
return
}
- if (Preferences["cache_disable"]) {
- reader_download_progressbar.visibility = View.GONE
- CoroutineScope(Dispatchers.IO).launch {
- val reader = cache.getReader()
-
- launch(Dispatchers.Main) initDownloader@{
- if (reader == null) {
- Snackbar
- .make(reader_layout, R.string.reader_failed_to_find_gallery, Snackbar.LENGTH_INDEFINITE)
- .show()
- return@initDownloader
- }
-
- histories.add(galleryID)
- (reader_recyclerview.adapter as ReaderAdapter).apply {
- this.reader = reader
- notifyDataSetChanged()
- }
- title = reader.galleryInfo.title ?: ""
- menu?.findItem(R.id.reader_menu_page_indicator)?.title = "$currentPage/${reader.galleryInfo.files.size}"
-
- menu?.findItem(R.id.reader_type)?.icon = ContextCompat.getDrawable(this@ReaderActivity,
- when (reader.code) {
- Code.HITOMI -> R.drawable.hitomi
- Code.HIYOBI -> R.drawable.ic_hiyobi
- else -> android.R.color.transparent
- })
- }
- }
- } else
- initDownloadListener()
-
+ initDownloadListener()
initView()
}
@@ -396,19 +365,15 @@ class ReaderActivity : BaseActivity() {
animateDownloadFAB(DownloadManager.getInstance(this@ReaderActivity).getDownloadFolder(galleryID) != null) //If download in progress, animate button
setOnClickListener {
- if (PreferenceManager.getDefaultSharedPreferences(context).getBoolean("cache_disable", false))
- Toast.makeText(context, R.string.settings_download_when_cache_disable_warning, Toast.LENGTH_SHORT).show()
- else {
- val downloadManager = DownloadManager.getInstance(this@ReaderActivity)
+ val downloadManager = DownloadManager.getInstance(this@ReaderActivity)
- if (downloadManager.isDownloading(galleryID)) {
- downloadManager.deleteDownloadFolder(galleryID)
- animateDownloadFAB(false)
- } else {
- downloadManager.addDownloadFolder(galleryID)
- DownloadService.download(context, galleryID, true)
- animateDownloadFAB(true)
- }
+ if (downloadManager.isDownloading(galleryID)) {
+ downloadManager.deleteDownloadFolder(galleryID)
+ animateDownloadFAB(false)
+ } else {
+ downloadManager.addDownloadFolder(galleryID)
+ DownloadService.download(context, galleryID, true)
+ animateDownloadFAB(true)
}
}
}
diff --git a/app/src/main/res/layout/item_galleryblock.xml b/app/src/main/res/layout/item_galleryblock.xml
index 8b6ef7d9..7a8dfc61 100644
--- a/app/src/main/res/layout/item_galleryblock.xml
+++ b/app/src/main/res/layout/item_galleryblock.xml
@@ -110,7 +110,7 @@
+ app:constraint_referenced_ids="galleryblock_tag_group"/>
+
+
-
+
+
+
+
+
+
+ app:layout_constraintBottom_toBottomOf="parent"/>
-
-
-
-
-
-
-
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 8fb154ec..b814256d 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -127,8 +127,6 @@
Pupil指紋ロック™
こうかはばつぐんだ!
登場人物を全て18歳以上にする
- キャッシュを使用しない
- キャッシュを使用しないため、ダウンロードできません
ユーザーID
ユーザーIDをクリップボードにコピーしました
リトライ
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
index bc19c9c5..3c4522be 100644
--- a/app/src/main/res/values-ko/strings.xml
+++ b/app/src/main/res/values-ko/strings.xml
@@ -127,8 +127,6 @@
Pupil 지문 인식™
힘세고 강한 지문 인식
판사님 저는 페도가 아닙니다
- 캐시 비활성화
- 캐시를 활성화 해야 다운로드를 진행할 수 있습니다
유저 ID
유저 ID를 클립보드에 복사했습니다
재시도
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 4b7631ea..f3dbedae 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -155,8 +155,6 @@
%s available
Custom Location
This folder is not writable. Please select another folder.
- Disable Cache
- Download is disabled when the cache is disabled
Low quality images
Load low quality images to improve load speed and data usage
diff --git a/app/src/main/res/xml/root_preferences.xml b/app/src/main/res/xml/root_preferences.xml
index ccc2b373..7a5e9cba 100644
--- a/app/src/main/res/xml/root_preferences.xml
+++ b/app/src/main/res/xml/root_preferences.xml
@@ -44,10 +44,6 @@
app:key="download_folder"
app:title="@string/settings_download_folder"/>
-
-
diff --git a/build.gradle b/build.gradle
index f795b13a..11d2fe93 100644
--- a/build.gradle
+++ b/build.gradle
@@ -21,6 +21,7 @@ buildscript {
allprojects {
repositories {
+ maven { url "http://dl.bintray.com/piasy/maven" }
google()
jcenter()
maven { url "https://jitpack.io" }
diff --git a/dep b/dep
new file mode 100644
index 00000000..9057ea42
--- /dev/null
+++ b/dep
@@ -0,0 +1,8062 @@
+Configuration on demand is an incubating feature.
+
+> Configure project :app
+Firebase Enabled
+
+> Task :app:dependencies
+
+------------------------------------------------------------
+Project :app
+------------------------------------------------------------
+
+_classStructurekaptDebugAndroidTestKotlin
+No dependencies
+
+_classStructurekaptDebugKotlin
+No dependencies
+
+_classStructurekaptDebugUnitTestKotlin
+No dependencies
+
+_classStructurekaptReleaseKotlin
+No dependencies
+
+_classStructurekaptReleaseUnitTestKotlin
+No dependencies
+
+_internal_aapt2_binary - The AAPT2 binary to use for processing resources.
+\--- com.android.tools.build:aapt2:4.0.1-6197926
+
+androidApis - Configuration providing various types of Android JAR file
+No dependencies
+
+androidTestAnnotationProcessor - Classpath for the annotation processor for 'androidTest'. (n)
+No dependencies
+
+androidTestApi - API dependencies for 'androidTest' sources. (n)
+No dependencies
+
+androidTestApiDependenciesMetadata
+No dependencies
+
+androidTestApk - Apk dependencies for 'androidTest' sources (deprecated: use 'androidTestRuntimeOnly' instead). (n)
+No dependencies
+
+androidTestCompile - Compile dependencies for 'androidTest' sources (deprecated: use 'androidTestImplementation' instead). (n)
+No dependencies
+
+androidTestCompileOnly - Compile only dependencies for 'androidTest' sources. (n)
+No dependencies
+
+androidTestCompileOnlyDependenciesMetadata
+No dependencies
+
+androidTestDebugAnnotationProcessor - Classpath for the annotation processor for 'androidTestDebug'. (n)
+No dependencies
+
+androidTestDebugApi - API dependencies for 'androidTestDebug' sources. (n)
+No dependencies
+
+androidTestDebugApiDependenciesMetadata
+No dependencies
+
+androidTestDebugApk - Apk dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugRuntimeOnly' instead). (n)
+No dependencies
+
+androidTestDebugCompile - Compile dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugImplementation' instead). (n)
+No dependencies
+
+androidTestDebugCompileOnly - Compile only dependencies for 'androidTestDebug' sources. (n)
+No dependencies
+
+androidTestDebugCompileOnlyDependenciesMetadata
+No dependencies
+
+androidTestDebugImplementation - Implementation only dependencies for 'androidTestDebug' sources. (n)
+No dependencies
+
+androidTestDebugImplementationDependenciesMetadata
+No dependencies
+
+androidTestDebugProvided - Provided dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugCompileOnly' instead). (n)
+No dependencies
+
+androidTestDebugRuntimeOnly - Runtime only dependencies for 'androidTestDebug' sources. (n)
+No dependencies
+
+androidTestDebugRuntimeOnlyDependenciesMetadata
+No dependencies
+
+androidTestDebugWearApp - Link to a wear app to embed for object 'androidTestDebug'. (n)
+No dependencies
+
+androidTestImplementation - Implementation only dependencies for 'androidTest' sources. (n)
++--- androidx.test.ext:junit:1.1.2 (n)
++--- androidx.test:rules:1.3.0 (n)
++--- androidx.test:runner:1.3.0 (n)
+\--- androidx.test.espresso:espresso-core:3.3.0 (n)
+
+androidTestImplementationDependenciesMetadata
++--- androidx.test.ext:junit:1.1.2
+| +--- junit:junit:4.12
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- androidx.test:core:1.3.0
+| | +--- androidx.annotation:annotation:1.0.0
+| | +--- androidx.test:monitor:1.3.0
+| | | \--- androidx.annotation:annotation:1.0.0
+| | \--- androidx.lifecycle:lifecycle-common:2.0.0
+| | \--- androidx.annotation:annotation:1.0.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- androidx.annotation:annotation:1.0.0
++--- androidx.test:rules:1.3.0
+| \--- androidx.test:runner:1.3.0
+| +--- androidx.annotation:annotation:1.0.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- junit:junit:4.12 (*)
++--- androidx.test:runner:1.3.0 (*)
+\--- androidx.test.espresso:espresso-core:3.3.0
+ +--- androidx.test:runner:1.3.0 (*)
+ +--- androidx.test.espresso:espresso-idling-resource:3.3.0
+ +--- com.squareup:javawriter:2.1.1
+ +--- javax.inject:javax.inject:1
+ +--- org.hamcrest:hamcrest-library:1.3
+ | \--- org.hamcrest:hamcrest-core:1.3
+ +--- org.hamcrest:hamcrest-integration:1.3
+ | \--- org.hamcrest:hamcrest-library:1.3 (*)
+ \--- com.google.code.findbugs:jsr305:2.0.1
+
+androidTestProvided - Provided dependencies for 'androidTest' sources (deprecated: use 'androidTestCompileOnly' instead). (n)
+No dependencies
+
+androidTestRuntimeOnly - Runtime only dependencies for 'androidTest' sources. (n)
+No dependencies
+
+androidTestRuntimeOnlyDependenciesMetadata
+No dependencies
+
+androidTestUtil - Additional APKs used during instrumentation testing.
+No dependencies
+
+androidTestWearApp - Link to a wear app to embed for object 'androidTest'. (n)
+No dependencies
+
+annotationProcessor - Classpath for the annotation processor for 'main'. (n)
+No dependencies
+
+api - API dependencies for 'main' sources. (n)
+No dependencies
+
+apiDependenciesMetadata
+No dependencies
+
+apk - Apk dependencies for 'main' sources (deprecated: use 'runtimeOnly' instead). (n)
+No dependencies
+
+archives - Configuration for archive artifacts.
+No dependencies
+
+compile - Compile dependencies for 'main' sources (deprecated: use 'implementation' instead).
+No dependencies
+
+compileOnly - Compile only dependencies for 'main' sources. (n)
+No dependencies
+
+compileOnlyDependenciesMetadata
+No dependencies
+
+coreLibraryDesugaring - Configuration to desugar libraries
+No dependencies
+
+debugAabPublication - Bundle Publication for debug (n)
+No dependencies
+
+debugAndroidTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugAndroidTest
+No dependencies
+
+debugAndroidTestApi - API dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
+No dependencies
+
+debugAndroidTestApiDependenciesMetadata
+No dependencies
+
+debugAndroidTestCompile - Dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestImplementation ' instead).
+No dependencies
+
+debugAndroidTestCompileClasspath - Compile classpath for compilation 'debugAndroidTest' (target (androidJvm)).
++--- androidx.test.ext:junit:1.1.2
+| +--- junit:junit:4.12
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- androidx.test:core:1.3.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.test:monitor:1.3.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- androidx.test:rules:1.3.0
+| \--- androidx.test:runner:1.3.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- junit:junit:4.12 (*)
++--- androidx.test:runner:1.3.0 (*)
++--- androidx.test.espresso:espresso-core:3.3.0
+| +--- androidx.test:runner:1.3.0 (*)
+| +--- androidx.test.espresso:espresso-idling-resource:3.3.0
+| +--- com.squareup:javawriter:2.1.1
+| +--- javax.inject:javax.inject:1
+| +--- org.hamcrest:hamcrest-library:1.3
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- org.hamcrest:hamcrest-integration:1.3
+| | \--- org.hamcrest:hamcrest-library:1.3 (*)
+| \--- com.google.code.findbugs:jsr305:2.0.1
++--- androidx.test.ext:junit:{strictly 1.1.2} -> 1.1.2 (c)
++--- androidx.test:rules:{strictly 1.3.0} -> 1.3.0 (c)
++--- androidx.test:runner:{strictly 1.3.0} -> 1.3.0 (c)
++--- androidx.test.espresso:espresso-core:{strictly 3.3.0} -> 3.3.0 (c)
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0
+| | | | | +--- androidx.annotation:annotation:1.1.0
+| | | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
++--- xyz.quaver:floatingsearchview:1.0.5
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- junit:junit:{strictly 4.12} -> 4.12 (c)
++--- androidx.test:core:{strictly 1.3.0} -> 1.3.0 (c)
++--- androidx.test:monitor:{strictly 1.3.0} -> 1.3.0 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.test.espresso:espresso-idling-resource:{strictly 3.3.0} -> 3.3.0 (c)
++--- com.squareup:javawriter:{strictly 2.1.1} -> 2.1.1 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- org.hamcrest:hamcrest-library:{strictly 1.3} -> 1.3 (c)
++--- org.hamcrest:hamcrest-integration:{strictly 1.3} -> 1.3 (c)
++--- com.google.code.findbugs:jsr305:{strictly 2.0.1} -> 2.0.1 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+debugAndroidTestCompileOnly - Compile only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
+No dependencies
+
+debugAndroidTestCompileOnlyDependenciesMetadata
+No dependencies
+
+debugAndroidTestImplementation - Implementation only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
+No dependencies
+
+debugAndroidTestImplementationDependenciesMetadata
++--- androidx.test.ext:junit:1.1.2
+| +--- junit:junit:4.12
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- androidx.test:core:1.3.0
+| | +--- androidx.annotation:annotation:1.0.0
+| | +--- androidx.test:monitor:1.3.0
+| | | \--- androidx.annotation:annotation:1.0.0
+| | \--- androidx.lifecycle:lifecycle-common:2.0.0
+| | \--- androidx.annotation:annotation:1.0.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- androidx.annotation:annotation:1.0.0
++--- androidx.test:rules:1.3.0
+| \--- androidx.test:runner:1.3.0
+| +--- androidx.annotation:annotation:1.0.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- junit:junit:4.12 (*)
++--- androidx.test:runner:1.3.0 (*)
+\--- androidx.test.espresso:espresso-core:3.3.0
+ +--- androidx.test:runner:1.3.0 (*)
+ +--- androidx.test.espresso:espresso-idling-resource:3.3.0
+ +--- com.squareup:javawriter:2.1.1
+ +--- javax.inject:javax.inject:1
+ +--- org.hamcrest:hamcrest-library:1.3
+ | \--- org.hamcrest:hamcrest-core:1.3
+ +--- org.hamcrest:hamcrest-integration:1.3
+ | \--- org.hamcrest:hamcrest-library:1.3 (*)
+ \--- com.google.code.findbugs:jsr305:2.0.1
+
+debugAndroidTestRuntime - Runtime dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestRuntimeOnly ' instead).
+No dependencies
+
+debugAndroidTestRuntimeClasspath - Runtime classpath of compilation 'debugAndroidTest' (target (androidJvm)).
++--- androidx.test.ext:junit:1.1.2
+| +--- junit:junit:4.12
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- androidx.test:core:1.3.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.test:monitor:1.3.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- androidx.test:rules:1.3.0
+| \--- androidx.test:runner:1.3.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.test:monitor:1.3.0 (*)
+| \--- junit:junit:4.12 (*)
++--- androidx.test:runner:1.3.0 (*)
++--- androidx.test.espresso:espresso-core:3.3.0
+| +--- androidx.test:runner:1.3.0 (*)
+| +--- androidx.test.espresso:espresso-idling-resource:3.3.0
+| +--- com.squareup:javawriter:2.1.1
+| +--- javax.inject:javax.inject:1
+| +--- org.hamcrest:hamcrest-library:1.3
+| | \--- org.hamcrest:hamcrest-core:1.3
+| +--- org.hamcrest:hamcrest-integration:1.3
+| | \--- org.hamcrest:hamcrest-library:1.3 (*)
+| \--- com.google.code.findbugs:jsr305:2.0.1
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.arch.core:core-runtime:2.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | | | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
+| | | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:drawee:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.soloader:soloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | \--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:ui-common:2.3.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:middleware:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:soloader:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.soloader:soloader:0.9.0 (*)
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.facebook.fresco:animated-base:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:animated-drawable:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.fresco:drawee:2.3.0 (*)
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.parse.bolts:bolts-tasks:1.4.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.fresco:webpsupport:2.3.0
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | \--- com.facebook.fresco:animated-base:2.3.0 (*)
+| | +--- com.facebook.fresco:webpsupport:2.3.0 (*)
+| | \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | +--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- pl.droidsonroids.gif:android-gif-drawable:1.2.20
+| | \--- pl.droidsonroids:relinker:1.3.1
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| +--- com.github.filippudak.progresspieview:library:1.0.4
+| | \--- androidx.legacy:legacy-support-v4:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.media:media:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| +--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
+| +--- com.github.piasy:BigImageViewer:1.6.7 (*)
+| +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| \--- androidx.annotation:annotation:1.1.0
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41 -> 1.4.10 (*)
+| +--- androidx.appcompat:appcompat:1.0.2 -> 1.2.0 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41 -> 1.4.10 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0-beta03 -> 1.0.0 (*)
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9 (*)
+| +--- org.jsoup:jsoup:1.13.1
+| \--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- xyz.quaver:documentfilex:0.2.15
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- androidx.core:core-ktx:1.3.1 (*)
++--- xyz.quaver:floatingsearchview:1.0.5
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
+| +--- androidx.core:core-ktx:1.3.1 (*)
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.1 (*)
+| \--- com.google.android.material:material:1.2.1 -> 1.3.0-alpha02 (*)
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.jsoup:jsoup:{strictly 1.13.1} -> 1.13.1 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- pl.droidsonroids.gif:android-gif-drawable:{strictly 1.2.20} -> 1.2.20 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:soloader:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.soloader:nativeloader:{strictly 0.9.0} -> 0.9.0 (c)
++--- com.facebook.fresco:ui-common:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
++--- com.facebook.fresco:animated-base:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
++--- pl.droidsonroids:relinker:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:middleware:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.soloader:annotation:{strictly 0.9.0} -> 0.9.0 (c)
++--- com.facebook.soloader:soloader:{strictly 0.9.0} -> 0.9.0 (c)
++--- com.facebook.fresco:animated-drawable:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+debugAndroidTestRuntimeOnly - Runtime only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
+No dependencies
+
+debugAndroidTestRuntimeOnlyDependenciesMetadata
+No dependencies
+
+debugAnnotationProcessor - Classpath for the annotation processor for 'debug'. (n)
+No dependencies
+
+debugAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debug
+No dependencies
+
+debugApi - API dependencies for compilation 'debug' (target (androidJvm)). (n)
+No dependencies
+
+debugApiDependenciesMetadata
+No dependencies
+
+debugApiElements - API elements for debug (n)
+No dependencies
+
+debugApk - Apk dependencies for 'debug' sources (deprecated: use 'debugRuntimeOnly' instead). (n)
+No dependencies
+
+debugApkPublication - APK publication for debug (n)
+No dependencies
+
+debugCompile - Dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugImplementation ' instead).
+No dependencies
+
+debugCompileClasspath - Compile classpath for compilation 'debug' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0
+| | | | | +--- androidx.annotation:annotation:1.1.0
+| | | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
++--- xyz.quaver:floatingsearchview:1.0.5
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+debugCompileOnly - Compile only dependencies for compilation 'debug' (target (androidJvm)).
+No dependencies
+
+debugCompileOnlyDependenciesMetadata
+No dependencies
+
+debugImplementation - Implementation only dependencies for compilation 'debug' (target (androidJvm)). (n)
+No dependencies
+
+debugImplementationDependenciesMetadata
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-metadata:1.3.9
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-metadata:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-metadata:1.0.0-RC2
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0
+| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
+\--- xyz.quaver:floatingsearchview:1.0.5
+
+debugProvided - Provided dependencies for 'debug' sources (deprecated: use 'debugCompileOnly' instead). (n)
+No dependencies
+
+debugReverseMetadataValues - Metadata Values dependencies for the base Split
+No dependencies
+
+debugRuntime - Runtime dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugRuntimeOnly ' instead).
+No dependencies
+
+debugRuntimeClasspath - Runtime classpath of compilation 'debug' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.arch.core:core-runtime:2.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | | | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
+| | | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:drawee:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.soloader:soloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | \--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:ui-common:2.3.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:middleware:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:soloader:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.soloader:soloader:0.9.0 (*)
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.facebook.fresco:animated-base:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:animated-drawable:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.fresco:drawee:2.3.0 (*)
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.parse.bolts:bolts-tasks:1.4.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.fresco:webpsupport:2.3.0
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | \--- com.facebook.fresco:animated-base:2.3.0 (*)
+| | +--- com.facebook.fresco:webpsupport:2.3.0 (*)
+| | \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | +--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- pl.droidsonroids.gif:android-gif-drawable:1.2.20
+| | \--- pl.droidsonroids:relinker:1.3.1
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| +--- com.github.filippudak.progresspieview:library:1.0.4
+| | \--- androidx.legacy:legacy-support-v4:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.media:media:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| +--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
+| +--- com.github.piasy:BigImageViewer:1.6.7 (*)
+| +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| \--- androidx.annotation:annotation:1.1.0
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41 -> 1.4.10 (*)
+| +--- androidx.appcompat:appcompat:1.0.2 -> 1.2.0 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41 -> 1.4.10 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0-beta03 -> 1.0.0 (*)
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9 (*)
+| +--- org.jsoup:jsoup:1.13.1
+| \--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- xyz.quaver:documentfilex:0.2.15
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- androidx.core:core-ktx:1.3.1 (*)
+\--- xyz.quaver:floatingsearchview:1.0.5
+ +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (*)
+ +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (*)
+ +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
+ +--- androidx.core:core-ktx:1.3.1 (*)
+ +--- androidx.appcompat:appcompat:1.2.0 (*)
+ +--- androidx.cardview:cardview:1.0.0 (*)
+ +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+ +--- androidx.constraintlayout:constraintlayout:2.0.1 (*)
+ \--- com.google.android.material:material:1.2.1 -> 1.3.0-alpha02 (*)
+
+debugRuntimeElements - Runtime elements for debug (n)
+No dependencies
+
+debugRuntimeOnly - Runtime only dependencies for compilation 'debug' (target (androidJvm)). (n)
+No dependencies
+
+debugRuntimeOnlyDependenciesMetadata
+No dependencies
+
+debugUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugUnitTest
+No dependencies
+
+debugUnitTestApi - API dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+debugUnitTestApiDependenciesMetadata
+No dependencies
+
+debugUnitTestCompile - Dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestImplementation ' instead).
+No dependencies
+
+debugUnitTestCompileClasspath - Compile classpath for compilation 'debugUnitTest' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0
+| | | | | +--- androidx.annotation:annotation:1.1.0
+| | | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
++--- xyz.quaver:floatingsearchview:1.0.5
++--- junit:junit:4.13
+| \--- org.hamcrest:hamcrest-core:1.3
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- junit:junit:{strictly 4.13} -> 4.13 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+debugUnitTestCompileOnly - Compile only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+debugUnitTestCompileOnlyDependenciesMetadata
+No dependencies
+
+debugUnitTestImplementation - Implementation only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+debugUnitTestImplementationDependenciesMetadata
+\--- junit:junit:4.13
+ \--- org.hamcrest:hamcrest-core:1.3
+
+debugUnitTestRuntime - Runtime dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestRuntimeOnly ' instead).
+No dependencies
+
+debugUnitTestRuntimeClasspath - Runtime classpath of compilation 'debugUnitTest' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.arch.core:core-runtime:2.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | | | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
+| | | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:drawee:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.soloader:soloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | \--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:ui-common:2.3.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:middleware:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:soloader:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.soloader:soloader:0.9.0 (*)
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.facebook.fresco:animated-base:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:animated-drawable:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.fresco:drawee:2.3.0 (*)
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.parse.bolts:bolts-tasks:1.4.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.fresco:webpsupport:2.3.0
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | \--- com.facebook.fresco:animated-base:2.3.0 (*)
+| | +--- com.facebook.fresco:webpsupport:2.3.0 (*)
+| | \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | +--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- pl.droidsonroids.gif:android-gif-drawable:1.2.20
+| | \--- pl.droidsonroids:relinker:1.3.1
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| +--- com.github.filippudak.progresspieview:library:1.0.4
+| | \--- androidx.legacy:legacy-support-v4:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.media:media:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| +--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
+| +--- com.github.piasy:BigImageViewer:1.6.7 (*)
+| +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| \--- androidx.annotation:annotation:1.1.0
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41 -> 1.4.10 (*)
+| +--- androidx.appcompat:appcompat:1.0.2 -> 1.2.0 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41 -> 1.4.10 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0-beta03 -> 1.0.0 (*)
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9 (*)
+| +--- org.jsoup:jsoup:1.13.1
+| \--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- xyz.quaver:documentfilex:0.2.15
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- androidx.core:core-ktx:1.3.1 (*)
++--- xyz.quaver:floatingsearchview:1.0.5
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
+| +--- androidx.core:core-ktx:1.3.1 (*)
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.1 (*)
+| \--- com.google.android.material:material:1.2.1 -> 1.3.0-alpha02 (*)
+\--- junit:junit:4.13
+ \--- org.hamcrest:hamcrest-core:1.3
+
+debugUnitTestRuntimeOnly - Runtime only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+debugUnitTestRuntimeOnlyDependenciesMetadata
+No dependencies
+
+debugWearApp - Link to a wear app to embed for object 'debug'. (n)
+No dependencies
+
+debugWearBundling - Resolved Configuration for wear app bundling for variant: debug
+No dependencies
+
+default - Configuration for default artifacts.
+No dependencies
+
+implementation - Implementation only dependencies for 'main' sources. (n)
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (n)
++--- unspecified (n)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (n)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (n)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9 (n)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2 (n)
++--- androidx.appcompat:appcompat:1.2.0 (n)
++--- androidx.activity:activity-ktx:1.2.0-alpha08 (n)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08 (n)
++--- androidx.preference:preference:1.1.1 (n)
++--- androidx.constraintlayout:constraintlayout:2.0.1 (n)
++--- androidx.gridlayout:gridlayout:1.0.0 (n)
++--- androidx.biometric:biometric:1.0.1 (n)
++--- com.daimajia.swipelayout:library:1.2.0 (n)
++--- com.google.android.material:material:1.3.0-alpha02 (n)
++--- com.google.firebase:firebase-core:17.5.0 (n)
++--- com.google.firebase:firebase-analytics:17.5.0 (n)
++--- com.google.firebase:firebase-crashlytics:17.2.1 (n)
++--- com.google.firebase:firebase-perf:19.0.8 (n)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0 (n)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1 (n)
++--- com.github.clans:fab:1.6.4 (n)
++--- com.github.piasy:BigImageViewer:1.6.7 (n)
++--- com.github.piasy:GlideImageLoader:1.6.7 (n)
++--- com.squareup.okhttp3:okhttp:3.12.12 (n)
++--- com.github.bumptech.glide:glide:4.11.0 (n)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (n)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2 (n)
++--- net.rdrei.android.dirchooser:library:3.2 (n)
++--- com.gu:option:1.3 (n)
++--- com.andrognito.patternlockview:patternlockview:1.0.0 (n)
++--- ru.noties.markwon:core:3.1.0 (n)
++--- xyz.quaver:libpupil:1.7.2 (n)
++--- xyz.quaver:documentfilex:0.2.15 (n)
+\--- xyz.quaver:floatingsearchview:1.0.5 (n)
+
+implementationDependenciesMetadata
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-metadata:1.3.9
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-metadata:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-metadata:1.0.0-RC2
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0
+| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
+\--- xyz.quaver:floatingsearchview:1.0.5
+
+kapt
+No dependencies
+
+kaptAndroidTest
+No dependencies
+
+kaptAndroidTestDebug
+No dependencies
+
+kaptDebug
+No dependencies
+
+kaptRelease
+No dependencies
+
+kaptTest
+No dependencies
+
+kaptTestDebug
+No dependencies
+
+kaptTestRelease
+No dependencies
+
+kotlinCompilerClasspath
+\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+ | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+ | \--- org.jetbrains:annotations:13.0
+ +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
+ | \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+ +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
+ \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
+
+kotlinCompilerPluginClasspath
++--- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| | | \--- org.jetbrains:annotations:13.0
+| | +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
+| | +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
+| | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
+| | \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlin:kotlin-android-extensions:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10 (*)
+\--- org.jetbrains.kotlin:kotlin-serialization:1.4.10
+ \--- org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.4.10
+ \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+
+kotlinKaptWorkerDependencies
+\--- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
+ | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+ | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+ | | \--- org.jetbrains:annotations:13.0
+ | +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
+ | +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
+ | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+ | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
+ | \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
+ \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+
+kotlinKlibCommonizerClasspath
+\--- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+ | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+ | \--- org.jetbrains:annotations:13.0
+ \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+ +--- org.jetbrains.kotlin:kotlin-script-runtime:1.4.10
+ +--- org.jetbrains.kotlin:kotlin-reflect:1.4.10
+ | \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+ +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.4.10
+ \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
+
+kotlinNativeCompilerPluginClasspath
+\--- org.jetbrains.kotlin:kotlin-serialization-unshaded:1.4.10
+
+lintChecks - Configuration to apply external lint check jar
+No dependencies
+
+lintClassPath - The lint embedded classpath
+\--- com.android.tools.lint:lint-gradle:27.0.1
+ +--- com.android.tools:sdk-common:27.0.1
+ | +--- com.android.tools:sdklib:27.0.1
+ | | +--- com.android.tools.layoutlib:layoutlib-api:27.0.1
+ | | | +--- com.android.tools:common:27.0.1
+ | | | | +--- com.android.tools:annotations:27.0.1
+ | | | | +--- com.google.guava:guava:28.1-jre
+ | | | | | +--- com.google.guava:failureaccess:1.0.1
+ | | | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
+ | | | | | +--- com.google.code.findbugs:jsr305:3.0.2
+ | | | | | +--- org.checkerframework:checker-qual:2.8.1
+ | | | | | +--- com.google.errorprone:error_prone_annotations:2.3.2
+ | | | | | +--- com.google.j2objc:j2objc-annotations:1.3
+ | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.18
+ | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72
+ | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
+ | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
+ | | | | | \--- org.jetbrains:annotations:13.0
+ | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
+ | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
+ | | | +--- net.sf.kxml:kxml2:2.3.0
+ | | | +--- com.android.tools:annotations:27.0.1
+ | | | \--- org.jetbrains:annotations:13.0
+ | | +--- com.android.tools:dvlib:27.0.1
+ | | | \--- com.android.tools:common:27.0.1 (*)
+ | | +--- com.android.tools:repository:27.0.1
+ | | | +--- com.android.tools:common:27.0.1 (*)
+ | | | +--- com.sun.activation:javax.activation:1.2.0
+ | | | +--- org.apache.commons:commons-compress:1.12
+ | | | +--- org.glassfish.jaxb:jaxb-runtime:2.3.1
+ | | | | +--- javax.xml.bind:jaxb-api:2.3.1
+ | | | | | \--- javax.activation:javax.activation-api:1.2.0
+ | | | | +--- org.glassfish.jaxb:txw2:2.3.1
+ | | | | +--- com.sun.istack:istack-commons-runtime:3.0.7
+ | | | | +--- org.jvnet.staxex:stax-ex:1.8
+ | | | | +--- com.sun.xml.fastinfoset:FastInfoset:1.2.15
+ | | | | \--- javax.activation:javax.activation-api:1.2.0
+ | | | +--- com.google.jimfs:jimfs:1.1
+ | | | | \--- com.google.guava:guava:18.0 -> 28.1-jre (*)
+ | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | | +--- com.google.code.gson:gson:2.8.5
+ | | +--- org.apache.commons:commons-compress:1.12
+ | | +--- org.apache.httpcomponents:httpmime:4.5.6
+ | | | \--- org.apache.httpcomponents:httpclient:4.5.6
+ | | | +--- org.apache.httpcomponents:httpcore:4.4.10
+ | | | +--- commons-logging:commons-logging:1.2
+ | | | \--- commons-codec:commons-codec:1.10
+ | | \--- org.apache.httpcomponents:httpcore:4.4.10
+ | +--- com.android.tools.build:builder-test-api:4.0.1
+ | | \--- com.android.tools.ddms:ddmlib:27.0.1
+ | | +--- com.android.tools:common:27.0.1 (*)
+ | | \--- net.sf.kxml:kxml2:2.3.0
+ | +--- com.android.tools.build:builder-model:4.0.1
+ | | \--- com.android.tools:annotations:27.0.1
+ | +--- com.android.tools.ddms:ddmlib:27.0.1 (*)
+ | +--- com.android.tools.analytics-library:shared:27.0.1
+ | | +--- com.android.tools.analytics-library:protos:27.0.1
+ | | | \--- com.google.protobuf:protobuf-java:3.10.0
+ | | +--- com.android.tools:annotations:27.0.1
+ | | +--- com.android.tools:common:27.0.1 (*)
+ | | +--- com.google.guava:guava:28.1-jre (*)
+ | | +--- com.google.code.gson:gson:2.8.5
+ | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | +--- org.bouncycastle:bcpkix-jdk15on:1.56
+ | | \--- org.bouncycastle:bcprov-jdk15on:1.56
+ | +--- org.bouncycastle:bcprov-jdk15on:1.56
+ | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72
+ | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
+ | +--- com.google.protobuf:protobuf-java:3.10.0
+ | +--- javax.inject:javax.inject:1
+ | +--- org.jetbrains.trove4j:trove4j:20160824
+ | \--- com.android.tools.build:aapt2-proto:0.4.0
+ | \--- com.google.protobuf:protobuf-java:3.4.0 -> 3.10.0
+ +--- com.android.tools.build:builder:4.0.1
+ | +--- com.android.tools.build:builder-model:4.0.1 (*)
+ | +--- com.android.tools.build:builder-test-api:4.0.1 (*)
+ | +--- com.android.tools:sdklib:27.0.1 (*)
+ | +--- com.android.tools:sdk-common:27.0.1 (*)
+ | +--- com.android.tools:common:27.0.1 (*)
+ | +--- com.android.tools.build:manifest-merger:27.0.1
+ | | +--- com.android.tools:common:27.0.1 (*)
+ | | +--- com.android.tools:sdklib:27.0.1 (*)
+ | | +--- com.android.tools:sdk-common:27.0.1 (*)
+ | | +--- com.google.code.gson:gson:2.8.5
+ | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | | \--- net.sf.kxml:kxml2:2.3.0
+ | +--- com.android.tools.ddms:ddmlib:27.0.1 (*)
+ | +--- com.android:zipflinger:4.0.1
+ | | +--- com.google.guava:guava:27.0.1-jre -> 28.1-jre (*)
+ | | \--- com.android.tools:common:27.0.1 (*)
+ | +--- com.android:signflinger:4.0.1
+ | | +--- com.android.tools.build:apksig:4.0.1
+ | | \--- com.android:zipflinger:4.0.1 (*)
+ | +--- com.android.tools.analytics-library:protos:27.0.1 (*)
+ | +--- com.android.tools.analytics-library:tracker:27.0.1
+ | | +--- com.android.tools:annotations:27.0.1
+ | | +--- com.android.tools:common:27.0.1 (*)
+ | | +--- com.android.tools.analytics-library:protos:27.0.1 (*)
+ | | +--- com.android.tools.analytics-library:shared:27.0.1 (*)
+ | | +--- com.google.protobuf:protobuf-java:3.10.0
+ | | +--- com.google.guava:guava:28.1-jre (*)
+ | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | +--- com.android.tools.build:apksig:4.0.1
+ | +--- com.android.tools.build:apkzlib:4.0.1
+ | | +--- com.google.code.findbugs:jsr305:1.3.9 -> 3.0.2
+ | | +--- com.google.guava:guava:23.0 -> 28.1-jre (*)
+ | | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
+ | | +--- org.bouncycastle:bcprov-jdk15on:1.56
+ | | \--- com.android.tools.build:apksig:4.0.1
+ | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | +--- com.squareup:javawriter:2.5.0
+ | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
+ | +--- org.bouncycastle:bcprov-jdk15on:1.56
+ | +--- org.ow2.asm:asm:7.0
+ | +--- org.ow2.asm:asm-tree:7.0
+ | | \--- org.ow2.asm:asm:7.0
+ | +--- javax.inject:javax.inject:1
+ | +--- org.ow2.asm:asm-commons:7.0
+ | | +--- org.ow2.asm:asm:7.0
+ | | +--- org.ow2.asm:asm-tree:7.0 (*)
+ | | \--- org.ow2.asm:asm-analysis:7.0
+ | | \--- org.ow2.asm:asm-tree:7.0 (*)
+ | +--- org.ow2.asm:asm-util:7.0
+ | | +--- org.ow2.asm:asm:7.0
+ | | +--- org.ow2.asm:asm-tree:7.0 (*)
+ | | \--- org.ow2.asm:asm-analysis:7.0 (*)
+ | +--- it.unimi.dsi:fastutil:7.2.0
+ | +--- net.sf.jopt-simple:jopt-simple:4.9
+ | \--- com.googlecode.json-simple:json-simple:1.1
+ +--- com.android.tools.build:builder-model:4.0.1 (*)
+ +--- com.android.tools.external.com-intellij:intellij-core:27.0.1
+ | \--- org.jetbrains.trove4j:trove4j:20160824
+ +--- com.android.tools.external.com-intellij:kotlin-compiler:27.0.1
+ +--- com.android.tools.external.org-jetbrains:uast:27.0.1
+ +--- com.android.tools.build:manifest-merger:27.0.1 (*)
+ +--- com.android.tools.lint:lint:27.0.1
+ | +--- com.android.tools.lint:lint-checks:27.0.1
+ | | +--- com.android.tools.lint:lint-api:27.0.1
+ | | | +--- com.android.tools:sdk-common:27.0.1 (*)
+ | | | +--- com.android.tools.build:builder-model:4.0.1 (*)
+ | | | +--- com.google.guava:guava:28.1-jre (*)
+ | | | +--- com.android.tools.external.com-intellij:intellij-core:27.0.1 (*)
+ | | | +--- com.android.tools.external.com-intellij:kotlin-compiler:27.0.1
+ | | | +--- com.android.tools.external.org-jetbrains:uast:27.0.1
+ | | | +--- com.android.tools.build:manifest-merger:27.0.1 (*)
+ | | | +--- org.ow2.asm:asm:7.0
+ | | | +--- org.ow2.asm:asm-tree:7.0 (*)
+ | | | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 (*)
+ | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | | +--- com.google.guava:guava:28.1-jre (*)
+ | | +--- com.android.tools.external.com-intellij:intellij-core:27.0.1 (*)
+ | | +--- com.android.tools.external.com-intellij:kotlin-compiler:27.0.1
+ | | +--- com.android.tools.external.org-jetbrains:uast:27.0.1
+ | | \--- org.ow2.asm:asm-analysis:7.0 (*)
+ | +--- com.google.guava:guava:28.1-jre (*)
+ | +--- com.android.tools.external.org-jetbrains:uast:27.0.1
+ | +--- com.android.tools.external.com-intellij:kotlin-compiler:27.0.1
+ | +--- com.android.tools.build:manifest-merger:27.0.1 (*)
+ | +--- com.android.tools.analytics-library:shared:27.0.1 (*)
+ | +--- com.android.tools.analytics-library:protos:27.0.1 (*)
+ | +--- com.android.tools.analytics-library:tracker:27.0.1 (*)
+ | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 (*)
+ | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ +--- com.android.tools.lint:lint-gradle-api:27.0.1
+ | +--- com.android.tools:sdklib:27.0.1 (*)
+ | +--- com.android.tools.build:builder-model:4.0.1 (*)
+ | +--- com.android.tools.build:gradle-api:4.0.1
+ | | +--- com.android.tools.build:builder-test-api:4.0.1 (*)
+ | | +--- com.google.guava:guava:28.1-jre (*)
+ | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 (*)
+ | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+ | \--- com.google.guava:guava:28.1-jre (*)
+ +--- com.android:zipflinger:4.0.1 (*)
+ +--- org.codehaus.groovy:groovy-all:2.4.15
+ +--- org.jetbrains.kotlin:kotlin-reflect:1.3.72 (*)
+ \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72 (*)
+
+lintPublish - Configuration to publish external lint check jar
+No dependencies
+
+provided - Provided dependencies for 'main' sources (deprecated: use 'compileOnly' instead). (n)
+No dependencies
+
+releaseAabPublication - Bundle Publication for release (n)
+No dependencies
+
+releaseAnnotationProcessor - Classpath for the annotation processor for 'release'. (n)
+No dependencies
+
+releaseAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: release
+No dependencies
+
+releaseApi - API dependencies for compilation 'release' (target (androidJvm)). (n)
+No dependencies
+
+releaseApiDependenciesMetadata
+No dependencies
+
+releaseApiElements - API elements for release (n)
+No dependencies
+
+releaseApk - Apk dependencies for 'release' sources (deprecated: use 'releaseRuntimeOnly' instead). (n)
+No dependencies
+
+releaseApkPublication - APK publication for release (n)
+No dependencies
+
+releaseCompile - Dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseImplementation ' instead).
+No dependencies
+
+releaseCompileClasspath - Compile classpath for compilation 'release' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0
+| | | | | +--- androidx.annotation:annotation:1.1.0
+| | | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
++--- xyz.quaver:floatingsearchview:1.0.5
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+releaseCompileOnly - Compile only dependencies for compilation 'release' (target (androidJvm)).
+No dependencies
+
+releaseCompileOnlyDependenciesMetadata
+No dependencies
+
+releaseImplementation - Implementation only dependencies for compilation 'release' (target (androidJvm)). (n)
+No dependencies
+
+releaseImplementationDependenciesMetadata
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-metadata:1.3.9
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-metadata:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-metadata:1.0.0-RC2
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0
+| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
+\--- xyz.quaver:floatingsearchview:1.0.5
+
+releaseProvided - Provided dependencies for 'release' sources (deprecated: use 'releaseCompileOnly' instead). (n)
+No dependencies
+
+releaseReverseMetadataValues - Metadata Values dependencies for the base Split
+No dependencies
+
+releaseRuntime - Runtime dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseRuntimeOnly ' instead).
+No dependencies
+
+releaseRuntimeClasspath - Runtime classpath of compilation 'release' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.arch.core:core-runtime:2.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | | | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
+| | | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:drawee:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.soloader:soloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | \--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:ui-common:2.3.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:middleware:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:soloader:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.soloader:soloader:0.9.0 (*)
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.facebook.fresco:animated-base:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:animated-drawable:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.fresco:drawee:2.3.0 (*)
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.parse.bolts:bolts-tasks:1.4.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.fresco:webpsupport:2.3.0
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | \--- com.facebook.fresco:animated-base:2.3.0 (*)
+| | +--- com.facebook.fresco:webpsupport:2.3.0 (*)
+| | \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | +--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- pl.droidsonroids.gif:android-gif-drawable:1.2.20
+| | \--- pl.droidsonroids:relinker:1.3.1
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| +--- com.github.filippudak.progresspieview:library:1.0.4
+| | \--- androidx.legacy:legacy-support-v4:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.media:media:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| +--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
+| +--- com.github.piasy:BigImageViewer:1.6.7 (*)
+| +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| \--- androidx.annotation:annotation:1.1.0
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41 -> 1.4.10 (*)
+| +--- androidx.appcompat:appcompat:1.0.2 -> 1.2.0 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41 -> 1.4.10 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0-beta03 -> 1.0.0 (*)
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9 (*)
+| +--- org.jsoup:jsoup:1.13.1
+| \--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- xyz.quaver:documentfilex:0.2.15
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- androidx.core:core-ktx:1.3.1 (*)
+\--- xyz.quaver:floatingsearchview:1.0.5
+ +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (*)
+ +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (*)
+ +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
+ +--- androidx.core:core-ktx:1.3.1 (*)
+ +--- androidx.appcompat:appcompat:1.2.0 (*)
+ +--- androidx.cardview:cardview:1.0.0 (*)
+ +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+ +--- androidx.constraintlayout:constraintlayout:2.0.1 (*)
+ \--- com.google.android.material:material:1.2.1 -> 1.3.0-alpha02 (*)
+
+releaseRuntimeElements - Runtime elements for release (n)
+No dependencies
+
+releaseRuntimeOnly - Runtime only dependencies for compilation 'release' (target (androidJvm)). (n)
+No dependencies
+
+releaseRuntimeOnlyDependenciesMetadata
+No dependencies
+
+releaseUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: releaseUnitTest
+No dependencies
+
+releaseUnitTestApi - API dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+releaseUnitTestApiDependenciesMetadata
+No dependencies
+
+releaseUnitTestCompile - Dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestImplementation ' instead).
+No dependencies
+
+releaseUnitTestCompileClasspath - Compile classpath for compilation 'releaseUnitTest' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0
+| | | | | +--- androidx.annotation:annotation:1.1.0
+| | | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| \--- androidx.drawerlayout:drawerlayout:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.customview:customview:1.0.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | \--- com.facebook.fresco:fresco:2.3.0
+| | +--- com.facebook.fresco:fbcore:2.3.0
+| | +--- com.facebook.fresco:drawee:2.3.0
+| | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | \--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | \--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | \--- com.facebook.fresco:webpsupport:2.3.0
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | \--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | \--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| \--- com.github.filippudak.progresspieview:library:1.0.4
+| \--- androidx.legacy:legacy-support-v4:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.media:media:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| \--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
++--- xyz.quaver:documentfilex:0.2.15
++--- xyz.quaver:floatingsearchview:1.0.5
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.appcompat:appcompat:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.activity:activity-ktx:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.fragment:fragment-ktx:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.preference:preference:{strictly 1.1.1} -> 1.1.1 (c)
++--- androidx.constraintlayout:constraintlayout:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
++--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
++--- com.google.android.material:material:{strictly 1.3.0-alpha02} -> 1.3.0-alpha02 (c)
++--- com.google.firebase:firebase-core:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-analytics:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.firebase:firebase-crashlytics:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.squareup.okhttp3:okhttp:{strictly 3.12.12} -> 3.12.12 (c)
++--- com.google.firebase:firebase-perf:{strictly 19.0.8} -> 19.0.8 (c)
++--- com.google.android.gms:play-services-oss-licenses:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-mlkit-face-detection:{strictly 16.1.1} -> 16.1.1 (c)
++--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
++--- com.github.piasy:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:okhttp3-integration:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.piasy:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:{strictly 4.1.2} -> 4.1.2 (c)
++--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
++--- com.gu:option:{strictly 1.3} -> 1.3 (c)
++--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
++--- ru.noties.markwon:core:{strictly 3.1.0} -> 3.1.0 (c)
++--- xyz.quaver:libpupil:{strictly 1.7.2} -> 1.7.2 (c)
++--- xyz.quaver:documentfilex:{strictly 0.2.15} -> 0.2.15 (c)
++--- xyz.quaver:floatingsearchview:{strictly 1.0.5} -> 1.0.5 (c)
++--- junit:junit:4.13
+| \--- org.hamcrest:hamcrest-core:1.3
++--- junit:junit:{strictly 4.13} -> 4.13 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:{strictly 1.3.9} -> 1.3.9 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.core:core:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.fragment:fragment:{strictly 1.3.0-alpha08} -> 1.3.0-alpha08 (c)
++--- androidx.appcompat:appcompat-resources:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.activity:activity:{strictly 1.2.0-alpha08} -> 1.2.0-alpha08 (c)
++--- androidx.core:core-ktx:{strictly 1.3.1} -> 1.3.1 (c)
++--- androidx.lifecycle:lifecycle-runtime-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.collection:collection-ktx:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core-ktx:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.constraintlayout:constraintlayout-solver:{strictly 2.0.1} -> 2.0.1 (c)
++--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.dynamicanimation:dynamicanimation:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
++--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-measurement:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.datatransport:transport-api:{strictly 2.2.1} -> 2.2.1 (c)
++--- com.google.android.datatransport:transport-backend-cct:{strictly 2.3.1} -> 2.3.1 (c)
++--- com.google.android.datatransport:transport-runtime:{strictly 2.2.4} -> 2.2.4 (c)
++--- com.google.android.gms:play-services-tasks:{strictly 17.0.2} -> 17.0.2 (c)
++--- com.google.firebase:firebase-common:{strictly 19.3.1} -> 19.3.1 (c)
++--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-encoders-json:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.google.firebase:firebase-installations:{strictly 16.3.3} -> 16.3.3 (c)
++--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
++--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
++--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-basement:{strictly 17.2.1} -> 17.2.1 (c)
++--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.firebase:firebase-config:{strictly 19.2.0} -> 19.2.0 (c)
++--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.google.android.gms:play-services-vision:{strictly 20.1.2} -> 20.1.2 (c)
++--- com.google.android.gms:play-services-vision-common:{strictly 19.1.2} -> 19.1.2 (c)
++--- com.google.mlkit:common:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.mlkit:vision-common:{strictly 16.1.0} -> 16.1.0 (c)
++--- com.github.piasy.BigImageViewer:BigImageViewer:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageLoader:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:GlideImageViewFactory:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.github.piasy.BigImageViewer:ProgressPieIndicator:{strictly 1.6.7} -> 1.6.7 (c)
++--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
++--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
++--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
++--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.exifinterface:exifinterface:{strictly 1.1.0} -> 1.1.0 (c)
++--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
++--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
++--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.4.10} -> 1.4.10 (c)
++--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
++--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.savedstate:savedstate:{strictly 1.1.0-alpha01} -> 1.1.0-alpha01 (c)
++--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.lifecycle:lifecycle-common:{strictly 2.3.0-alpha07} -> 2.3.0-alpha07 (c)
++--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-base:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-measurement-impl:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.5.0} -> 17.5.0 (c)
++--- com.google.dagger:dagger:{strictly 2.27} -> 2.27 (c)
++--- com.google.firebase:firebase-abt:{strictly 19.1.0} -> 19.1.0 (c)
++--- com.google.protobuf:protobuf-javalite:{strictly 3.11.0} -> 3.11.0 (c)
++--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
++--- com.google.android.gms:play-services-flags:{strictly 17.0.0} -> 17.0.0 (c)
++--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:{strictly 3.10.0} -> 3.10.0 (c)
++--- com.facebook.fresco:fresco:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-gif:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:animated-webp:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:webpsupport:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.github.filippudak.progresspieview:library:{strictly 1.0.4} -> 1.0.4 (c)
++--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:{strictly 1.0.0-RC2} -> 1.0.0-RC2 (c)
++--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
++--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
++--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
++--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
++--- com.facebook.fresco:fbcore:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:drawee:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:imagepipeline-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-ashmem:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-native:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:memory-type-java:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagefilters:{strictly 2.3.0} -> 2.3.0 (c)
++--- com.facebook.fresco:nativeimagetranscoder:{strictly 2.3.0} -> 2.3.0 (c)
++--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
++--- com.facebook.fresco:imagepipeline-base:{strictly 2.3.0} -> 2.3.0 (c)
+\--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+
+releaseUnitTestCompileOnly - Compile only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+releaseUnitTestCompileOnlyDependenciesMetadata
+No dependencies
+
+releaseUnitTestImplementation - Implementation only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+releaseUnitTestImplementationDependenciesMetadata
+\--- junit:junit:4.13
+ \--- org.hamcrest:hamcrest-core:1.3
+
+releaseUnitTestRuntime - Runtime dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestRuntimeOnly ' instead).
+No dependencies
+
+releaseUnitTestRuntimeClasspath - Runtime classpath of compilation 'releaseUnitTest' (target (androidJvm)).
++--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains:annotations:13.0
++--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.0 -> 1.4.10
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
++--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.0-RC2
+| \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.0-RC2
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.10 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.10
++--- androidx.appcompat:appcompat:1.2.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.core:core:1.3.0 -> 1.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07
+| | | +--- androidx.arch.core:core-runtime:2.1.0
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | \--- androidx.arch.core:core-common:[2.1.0] -> 2.1.0
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07
+| | | | \--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.cursoradapter:cursoradapter:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.1.0 (*)
+| | +--- androidx.viewpager:viewpager:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.customview:customview:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.loader:loader:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
+| | | | +--- androidx.arch.core:core-runtime:2.0.0 -> 2.1.0 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0 -> 2.3.0-alpha07
+| | | | | +--- androidx.arch.core:core-common:2.1.0 (*)
+| | | | | +--- androidx.arch.core:core-runtime:2.1.0 (*)
+| | | | | \--- androidx.lifecycle:lifecycle-common:2.3.0-alpha07 (*)
+| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
+| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.0-alpha07
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.activity:activity:1.2.0-alpha08
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | +--- androidx.savedstate:savedstate:1.1.0-alpha01
+| | | | +--- androidx.annotation:annotation:1.1.0
+| | | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
+| | | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.0-alpha07 (*)
+| | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07
+| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | | +--- androidx.savedstate:savedstate:1.0.0 -> 1.1.0-alpha01 (*)
+| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.0-alpha07 (*)
+| | +--- androidx.savedstate:savedstate:1.1.0-alpha01 (*)
+| | \--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.appcompat:appcompat-resources:1.2.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | +--- androidx.vectordrawable:vectordrawable:1.1.0
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | | \--- androidx.collection:collection:1.1.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.1.0
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.activity:activity-ktx:1.2.0-alpha08
+| +--- androidx.activity:activity:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.core:core:1.3.1 (*)
+| +--- androidx.lifecycle:lifecycle-runtime-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-runtime:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-viewmodel:2.3.0-alpha07 (*)
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 -> 1.3.9 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.fragment:fragment-ktx:1.3.0-alpha08
+| +--- androidx.fragment:fragment:1.3.0-alpha08 (*)
+| +--- androidx.activity:activity-ktx:1.2.0-alpha08 (*)
+| +--- androidx.core:core-ktx:1.1.0 -> 1.3.1 (*)
+| +--- androidx.collection:collection-ktx:1.1.0
+| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.20 -> 1.4.10 (*)
+| | \--- androidx.collection:collection:1.1.0 (*)
+| +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.3.0-alpha07
+| | +--- androidx.lifecycle:lifecycle-livedata-core:2.3.0-alpha07 (*)
+| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
+| +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0-alpha07 (*)
+| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 1.4.10 (*)
++--- androidx.preference:preference:1.1.1
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| +--- androidx.fragment:fragment:1.2.4 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.annotation:annotation:1.1.0
+| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
++--- androidx.constraintlayout:constraintlayout:2.0.1
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.core:core:1.3.1 (*)
+| \--- androidx.constraintlayout:constraintlayout-solver:2.0.1
++--- androidx.gridlayout:gridlayout:1.0.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.legacy:legacy-support-core-ui:1.0.0
+| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- androidx.legacy:legacy-support-core-utils:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.documentfile:documentfile:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.loader:loader:1.0.0 (*)
+| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.print:print:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.viewpager:viewpager:1.0.0 (*)
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| | +--- androidx.customview:customview:1.0.0 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
+| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.customview:customview:1.0.0 (*)
+| +--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | \--- androidx.interpolator:interpolator:1.0.0 (*)
+| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
+| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | \--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
++--- androidx.biometric:biometric:1.0.1
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
++--- com.daimajia.swipelayout:library:1.2.0
++--- com.google.android.material:material:1.3.0-alpha02
+| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
+| +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0
+| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.0-beta7 -> 2.0.1 (*)
+| +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| +--- androidx.annotation:annotation-experimental:1.0.0
+| +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.0-alpha07 (*)
+| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
+| +--- androidx.transition:transition:1.2.0
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- androidx.core:core:1.0.1 -> 1.3.1 (*)
+| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0
+| +--- androidx.annotation:annotation:1.1.0
+| +--- androidx.fragment:fragment:1.1.0 -> 1.3.0-alpha08 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.core:core:1.1.0 -> 1.3.1 (*)
+| \--- androidx.collection:collection:1.1.0 (*)
++--- com.google.firebase:firebase-core:17.5.0
+| \--- com.google.firebase:firebase-analytics:17.5.0
+| +--- com.google.android.gms:play-services-measurement:17.5.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.2.0 -> 1.3.1 (*)
+| | | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0
+| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | | \--- com.google.android.gms:play-services-stats:17.0.0
+| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
+| +--- com.google.android.gms:play-services-measurement-api:17.5.0
+| | +--- com.google.android.gms:play-services-ads-identifier:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.5.0] -> 17.5.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2
+| | | \--- com.google.android.gms:play-services-basement:17.2.1 (*)
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | \--- com.google.firebase:firebase-components:16.0.0
+| | | \--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3
+| | | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | \--- com.google.firebase:firebase-installations-interop:16.0.0
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
+| | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-measurement-sdk:17.5.0
+| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-measurement-base:[17.5.0] -> 17.5.0 (*)
+| \--- com.google.android.gms:play-services-measurement-impl:[17.5.0] -> 17.5.0 (*)
++--- com.google.firebase:firebase-analytics:17.5.0 (*)
++--- com.google.firebase:firebase-crashlytics:17.2.1
+| +--- com.google.android.datatransport:transport-api:2.2.1
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-backend-cct:2.3.1
+| | +--- androidx.annotation:annotation:1.1.0
+| | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | +--- com.google.android.datatransport:transport-runtime:2.2.4
+| | | +--- androidx.annotation:annotation:1.1.0
+| | | +--- com.google.android.datatransport:transport-api:2.2.1 (*)
+| | | \--- com.google.dagger:dagger:2.27
+| | | \--- javax.inject:javax.inject:1
+| | \--- com.google.firebase:firebase-encoders-json:16.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.datatransport:transport-runtime:2.2.4 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-encoders-json:16.1.0 (*)
+| +--- com.google.firebase:firebase-installations:16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.12.1 -> 3.12.12
+| \--- com.squareup.okio:okio:1.15.0
++--- com.google.firebase:firebase-perf:19.0.8
+| +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0
+| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.firebase:firebase-config:19.2.0
+| | +--- com.google.android.gms:play-services-tasks:17.0.2 (*)
+| | +--- com.google.firebase:firebase-abt:19.1.0
+| | | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| | +--- com.google.firebase:firebase-common:19.3.0 -> 19.3.1 (*)
+| | +--- com.google.firebase:firebase-components:16.0.0 (*)
+| | +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| | +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+| | \--- com.google.protobuf:protobuf-javalite:3.11.0
+| +--- com.google.firebase:firebase-installations:16.3.2 -> 16.3.3 (*)
+| +--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
+| \--- com.squareup.okhttp3:okhttp:3.0.0 -> 3.12.12 (*)
++--- com.google.android.gms:play-services-oss-licenses:17.0.0
+| +--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
+| +--- androidx.loader:loader:1.0.0 (*)
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
++--- com.google.android.gms:play-services-mlkit-face-detection:16.1.1
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.android.gms:play-services-vision:20.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-vision-common:[19.1.2] -> 19.1.2
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-flags:17.0.0
+| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | | \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | \--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| +--- com.google.android.gms:play-services-vision-common:19.1.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| +--- com.google.mlkit:common:17.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| | +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
+| | +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| | \--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:vision-common:16.1.0
+| +--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.google.android.gms:play-services-base:17.0.0 (*)
+| +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.2.1 (*)
+| +--- com.google.android.gms:play-services-clearcut:17.0.0 (*)
+| +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.0.2 (*)
+| +--- com.google.firebase:firebase-components:16.0.0 (*)
+| \--- com.google.mlkit:common:17.0.0 (*)
++--- com.github.clans:fab:1.6.4
++--- com.github.piasy:BigImageViewer:1.6.7
+| +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7
+| | \--- com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0
+| | +--- androidx.appcompat:appcompat:1.1.0 -> 1.2.0 (*)
+| | +--- androidx.annotation:annotation:1.1.0
+| | \--- androidx.exifinterface:exifinterface:1.1.0 (*)
+| +--- com.github.piasy.BigImageViewer:FrescoImageLoader:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:drawee:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0
+| | | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.soloader:soloader:0.9.0
+| | | | | +--- com.facebook.soloader:annotation:0.9.0
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | \--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | | \--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0
+| | | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | | \--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:ui-common:2.3.0
+| | | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:middleware:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:nativeimagefilters:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:nativeimagetranscoder:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:soloader:2.3.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.soloader:soloader:0.9.0 (*)
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | \--- com.facebook.fresco:ui-common:2.3.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:FrescoImageViewFactory:1.6.7
+| | +--- com.facebook.fresco:fresco:2.3.0 (*)
+| | +--- com.facebook.fresco:animated-gif:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.facebook.fresco:animated-base:2.3.0
+| | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | +--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | +--- com.facebook.fresco:animated-drawable:2.3.0
+| | | | +--- com.facebook.fresco:imagepipeline:2.3.0 (*)
+| | | | +--- com.facebook.fresco:imagepipeline-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-ashmem:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-native:2.3.0 (*)
+| | | | +--- com.facebook.fresco:memory-type-java:2.3.0 (*)
+| | | | +--- com.facebook.fresco:drawee:2.3.0 (*)
+| | | | \--- com.facebook.fresco:fbcore:2.3.0
+| | | \--- com.parse.bolts:bolts-tasks:1.4.0
+| | +--- com.facebook.fresco:animated-webp:2.3.0
+| | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | +--- com.facebook.fresco:webpsupport:2.3.0
+| | | | +--- com.facebook.soloader:nativeloader:0.9.0
+| | | | +--- com.parse.bolts:bolts-tasks:1.4.0
+| | | | +--- com.facebook.fresco:fbcore:2.3.0
+| | | | \--- com.facebook.fresco:imagepipeline-base:2.3.0 (*)
+| | | \--- com.facebook.fresco:animated-base:2.3.0 (*)
+| | +--- com.facebook.fresco:webpsupport:2.3.0 (*)
+| | \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| +--- com.github.piasy.BigImageViewer:GlideImageLoader:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0
+| | | +--- com.github.bumptech.glide:gifdecoder:4.11.0
+| | | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- com.github.bumptech.glide:disklrucache:4.11.0
+| | | +--- com.github.bumptech.glide:annotations:4.11.0
+| | | +--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| | | +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
+| | | \--- androidx.exifinterface:exifinterface:1.0.0 -> 1.1.0 (*)
+| | +--- com.github.bumptech.glide:okhttp3-integration:4.11.0
+| | | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | | +--- com.squareup.okhttp3:okhttp:3.9.1 -> 3.12.12 (*)
+| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| | \--- androidx.annotation:annotation:1.1.0
+| +--- com.github.piasy.BigImageViewer:GlideImageViewFactory:1.6.7
+| | +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| | +--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
+| | \--- pl.droidsonroids.gif:android-gif-drawable:1.2.20
+| | \--- pl.droidsonroids:relinker:1.3.1
+| \--- com.github.piasy.BigImageViewer:ProgressPieIndicator:1.6.7
+| +--- com.github.filippudak.progresspieview:library:1.0.4
+| | \--- androidx.legacy:legacy-support-v4:1.0.0
+| | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | +--- androidx.media:media:1.0.0
+| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
+| | | +--- androidx.core:core:1.0.0 -> 1.3.1 (*)
+| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
+| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
+| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+| | \--- androidx.fragment:fragment:1.0.0 -> 1.3.0-alpha08 (*)
+| \--- com.github.piasy.BigImageViewer:BigImageViewer:1.6.7 (*)
++--- com.github.piasy:GlideImageLoader:1.6.7
+| +--- com.github.bumptech.glide:glide:4.11.0 (*)
+| +--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
+| +--- com.github.piasy:BigImageViewer:1.6.7 (*)
+| +--- com.squareup.okhttp3:okhttp:3.12.6 -> 3.12.12 (*)
+| \--- androidx.annotation:annotation:1.1.0
++--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- com.github.bumptech.glide:glide:4.11.0 (*)
++--- com.github.bumptech.glide:okhttp3-integration:4.11.0 (*)
++--- com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.41 -> 1.4.10 (*)
+| +--- androidx.appcompat:appcompat:1.0.2 -> 1.2.0 (*)
+| +--- androidx.dynamicanimation:dynamicanimation:1.0.0 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.41 -> 1.4.10 (*)
+| \--- androidx.viewpager2:viewpager2:1.0.0-beta03 -> 1.0.0 (*)
++--- net.rdrei.android.dirchooser:library:3.2
++--- com.gu:option:1.3
++--- com.andrognito.patternlockview:patternlockview:1.0.0
+| \--- androidx.appcompat:appcompat:1.0.0 -> 1.2.0 (*)
++--- ru.noties.markwon:core:3.1.0
+| +--- com.atlassian.commonmark:commonmark:0.12.1
+| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
++--- xyz.quaver:libpupil:1.7.2
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.0.0-RC2 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.3.9 (*)
+| +--- org.jsoup:jsoup:1.13.1
+| \--- com.squareup.okhttp3:okhttp:3.12.12 (*)
++--- xyz.quaver:documentfilex:0.2.15
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.0 -> 1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.0 -> 1.4.10 (*)
+| \--- androidx.core:core-ktx:1.3.1 (*)
++--- xyz.quaver:floatingsearchview:1.0.5
+| +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10 (*)
+| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 (*)
+| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9 (*)
+| +--- androidx.core:core-ktx:1.3.1 (*)
+| +--- androidx.appcompat:appcompat:1.2.0 (*)
+| +--- androidx.cardview:cardview:1.0.0 (*)
+| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
+| +--- androidx.constraintlayout:constraintlayout:2.0.1 (*)
+| \--- com.google.android.material:material:1.2.1 -> 1.3.0-alpha02 (*)
+\--- junit:junit:4.13
+ \--- org.hamcrest:hamcrest-core:1.3
+
+releaseUnitTestRuntimeOnly - Runtime only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
+No dependencies
+
+releaseUnitTestRuntimeOnlyDependenciesMetadata
+No dependencies
+
+releaseWearApp - Link to a wear app to embed for object 'release'. (n)
+No dependencies
+
+releaseWearBundling - Resolved Configuration for wear app bundling for variant: release
+No dependencies
+
+runtimeOnly - Runtime only dependencies for 'main' sources. (n)
+No dependencies
+
+runtimeOnlyDependenciesMetadata
+No dependencies
+
+testAnnotationProcessor - Classpath for the annotation processor for 'test'. (n)
+No dependencies
+
+testApi - API dependencies for 'test' sources. (n)
+No dependencies
+
+testApiDependenciesMetadata
+No dependencies
+
+testApk - Apk dependencies for 'test' sources (deprecated: use 'testRuntimeOnly' instead). (n)
+No dependencies
+
+testCompile - Compile dependencies for 'test' sources (deprecated: use 'testImplementation' instead).
+No dependencies
+
+testCompileOnly - Compile only dependencies for 'test' sources. (n)
+No dependencies
+
+testCompileOnlyDependenciesMetadata
+No dependencies
+
+testDebugAnnotationProcessor - Classpath for the annotation processor for 'testDebug'. (n)
+No dependencies
+
+testDebugApi - API dependencies for 'testDebug' sources. (n)
+No dependencies
+
+testDebugApiDependenciesMetadata
+No dependencies
+
+testDebugApk - Apk dependencies for 'testDebug' sources (deprecated: use 'testDebugRuntimeOnly' instead). (n)
+No dependencies
+
+testDebugCompile - Compile dependencies for 'testDebug' sources (deprecated: use 'testDebugImplementation' instead). (n)
+No dependencies
+
+testDebugCompileOnly - Compile only dependencies for 'testDebug' sources. (n)
+No dependencies
+
+testDebugCompileOnlyDependenciesMetadata
+No dependencies
+
+testDebugImplementation - Implementation only dependencies for 'testDebug' sources. (n)
+No dependencies
+
+testDebugImplementationDependenciesMetadata
+No dependencies
+
+testDebugProvided - Provided dependencies for 'testDebug' sources (deprecated: use 'testDebugCompileOnly' instead). (n)
+No dependencies
+
+testDebugRuntimeOnly - Runtime only dependencies for 'testDebug' sources. (n)
+No dependencies
+
+testDebugRuntimeOnlyDependenciesMetadata
+No dependencies
+
+testDebugWearApp - Link to a wear app to embed for object 'testDebug'. (n)
+No dependencies
+
+testImplementation - Implementation only dependencies for 'test' sources. (n)
+\--- junit:junit:4.13 (n)
+
+testImplementationDependenciesMetadata
+\--- junit:junit:4.13
+ \--- org.hamcrest:hamcrest-core:1.3
+
+testProvided - Provided dependencies for 'test' sources (deprecated: use 'testCompileOnly' instead). (n)
+No dependencies
+
+testReleaseAnnotationProcessor - Classpath for the annotation processor for 'testRelease'. (n)
+No dependencies
+
+testReleaseApi - API dependencies for 'testRelease' sources. (n)
+No dependencies
+
+testReleaseApiDependenciesMetadata
+No dependencies
+
+testReleaseApk - Apk dependencies for 'testRelease' sources (deprecated: use 'testReleaseRuntimeOnly' instead). (n)
+No dependencies
+
+testReleaseCompile - Compile dependencies for 'testRelease' sources (deprecated: use 'testReleaseImplementation' instead). (n)
+No dependencies
+
+testReleaseCompileOnly - Compile only dependencies for 'testRelease' sources. (n)
+No dependencies
+
+testReleaseCompileOnlyDependenciesMetadata
+No dependencies
+
+testReleaseImplementation - Implementation only dependencies for 'testRelease' sources. (n)
+No dependencies
+
+testReleaseImplementationDependenciesMetadata
+No dependencies
+
+testReleaseProvided - Provided dependencies for 'testRelease' sources (deprecated: use 'testReleaseCompileOnly' instead). (n)
+No dependencies
+
+testReleaseRuntimeOnly - Runtime only dependencies for 'testRelease' sources. (n)
+No dependencies
+
+testReleaseRuntimeOnlyDependenciesMetadata
+No dependencies
+
+testReleaseWearApp - Link to a wear app to embed for object 'testRelease'. (n)
+No dependencies
+
+testRuntimeOnly - Runtime only dependencies for 'test' sources. (n)
+No dependencies
+
+testRuntimeOnlyDependenciesMetadata
+No dependencies
+
+testWearApp - Link to a wear app to embed for object 'test'. (n)
+No dependencies
+
+wearApp - Link to a wear app to embed for object 'main'. (n)
+No dependencies
+
+(c) - dependency constraint
+(*) - dependencies omitted (listed previously)
+
+(n) - Not resolved (configuration is not meant to be resolved)
+
+A web-based, searchable dependency report is available by adding the --scan option.
+
+Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
+Use '--warning-mode all' to show the individual deprecation warnings.
+See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings
+
+BUILD SUCCESSFUL in 10s
+1 actionable task: 1 executed
diff --git a/dependencies.txt b/dependencies.txt
deleted file mode 100644
index 9888e7b9..00000000
--- a/dependencies.txt
+++ /dev/null
@@ -1,5555 +0,0 @@
-
-> Configure project :app
-WARNING: The option setting 'android.enableR8.fullMode=true' is experimental and unsupported.
-The current default is 'false'.
-
-Firebase Enabled
-
-> Task :app:dependencies
-
-------------------------------------------------------------
-Project :app
-------------------------------------------------------------
-
-_classStructurekaptDebugAndroidTestKotlin
-No dependencies
-
-_classStructurekaptDebugKotlin
-No dependencies
-
-_classStructurekaptDebugUnitTestKotlin
-No dependencies
-
-_classStructurekaptReleaseKotlin
-No dependencies
-
-_classStructurekaptReleaseUnitTestKotlin
-No dependencies
-
-_internal_aapt2_binary - The AAPT2 binary to use for processing resources.
-\--- com.android.tools.build:aapt2:3.5.3-5435860
-
-androidApis - Configuration providing various types of Android JAR file
-No dependencies
-
-androidTestAnnotationProcessor - Classpath for the annotation processor for 'androidTest'. (n)
-No dependencies
-
-androidTestApi - API dependencies for 'androidTest' sources. (n)
-No dependencies
-
-androidTestApiDependenciesMetadata
-No dependencies
-
-androidTestApk - Apk dependencies for 'androidTest' sources (deprecated: use 'androidTestRuntimeOnly' instead). (n)
-No dependencies
-
-androidTestCompile - Compile dependencies for 'androidTest' sources (deprecated: use 'androidTestImplementation' instead). (n)
-No dependencies
-
-androidTestCompileOnly - Compile only dependencies for 'androidTest' sources. (n)
-No dependencies
-
-androidTestCompileOnlyDependenciesMetadata
-No dependencies
-
-androidTestDebugAnnotationProcessor - Classpath for the annotation processor for 'androidTestDebug'. (n)
-No dependencies
-
-androidTestDebugApi - API dependencies for 'androidTestDebug' sources. (n)
-No dependencies
-
-androidTestDebugApiDependenciesMetadata
-No dependencies
-
-androidTestDebugApk - Apk dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugRuntimeOnly' instead). (n)
-No dependencies
-
-androidTestDebugCompile - Compile dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugImplementation' instead). (n)
-No dependencies
-
-androidTestDebugCompileOnly - Compile only dependencies for 'androidTestDebug' sources. (n)
-No dependencies
-
-androidTestDebugCompileOnlyDependenciesMetadata
-No dependencies
-
-androidTestDebugImplementation - Implementation only dependencies for 'androidTestDebug' sources. (n)
-No dependencies
-
-androidTestDebugImplementationDependenciesMetadata
-No dependencies
-
-androidTestDebugProvided - Provided dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugCompileOnly' instead). (n)
-No dependencies
-
-androidTestDebugRuntimeOnly - Runtime only dependencies for 'androidTestDebug' sources. (n)
-No dependencies
-
-androidTestDebugRuntimeOnlyDependenciesMetadata
-No dependencies
-
-androidTestDebugWearApp - Link to a wear app to embed for object 'androidTestDebug'. (n)
-No dependencies
-
-androidTestImplementation - Implementation only dependencies for 'androidTest' sources. (n)
-+--- androidx.test.ext:junit:1.1.1 (n)
-+--- androidx.test:rules:1.2.0 (n)
-+--- androidx.test:runner:1.2.0 (n)
-\--- androidx.test.espresso:espresso-core:3.2.0 (n)
-
-androidTestImplementationDependenciesMetadata
-+--- androidx.test.ext:junit:1.1.1
-| +--- junit:junit:4.12
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- androidx.test:core:1.2.0
-| | +--- androidx.annotation:annotation:1.0.0
-| | +--- androidx.test:monitor:1.2.0
-| | | \--- androidx.annotation:annotation:1.0.0
-| | \--- androidx.lifecycle:lifecycle-common:2.0.0
-| | \--- androidx.annotation:annotation:1.0.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| \--- androidx.annotation:annotation:1.0.0
-+--- androidx.test:rules:1.2.0
-| \--- androidx.test:runner:1.2.0
-| +--- androidx.annotation:annotation:1.0.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| +--- junit:junit:4.12 (*)
-| \--- net.sf.kxml:kxml2:2.3.0
-+--- androidx.test:runner:1.2.0 (*)
-\--- androidx.test.espresso:espresso-core:3.2.0
- +--- androidx.test:runner:1.2.0 (*)
- +--- androidx.test.espresso:espresso-idling-resource:3.2.0
- +--- com.squareup:javawriter:2.1.1
- +--- javax.inject:javax.inject:1
- +--- org.hamcrest:hamcrest-library:1.3
- | \--- org.hamcrest:hamcrest-core:1.3
- +--- org.hamcrest:hamcrest-integration:1.3
- | \--- org.hamcrest:hamcrest-library:1.3 (*)
- \--- com.google.code.findbugs:jsr305:2.0.1
-
-androidTestProvided - Provided dependencies for 'androidTest' sources (deprecated: use 'androidTestCompileOnly' instead). (n)
-No dependencies
-
-androidTestRuntimeOnly - Runtime only dependencies for 'androidTest' sources. (n)
-No dependencies
-
-androidTestRuntimeOnlyDependenciesMetadata
-No dependencies
-
-androidTestUtil - Additional APKs used during instrumentation testing.
-No dependencies
-
-androidTestWearApp - Link to a wear app to embed for object 'androidTest'. (n)
-No dependencies
-
-annotationProcessor - Classpath for the annotation processor for 'main'. (n)
-\--- com.github.bumptech.glide:compiler:4.11.0 (n)
-
-api - API dependencies for 'main' sources. (n)
-No dependencies
-
-apiDependenciesMetadata
-No dependencies
-
-apk - Apk dependencies for 'main' sources (deprecated: use 'runtimeOnly' instead). (n)
-No dependencies
-
-archives - Configuration for archive artifacts.
-No dependencies
-
-compile - Compile dependencies for 'main' sources (deprecated: use 'implementation' instead).
-No dependencies
-
-compileOnly - Compile only dependencies for 'main' sources. (n)
-No dependencies
-
-compileOnlyDependenciesMetadata
-No dependencies
-
-debugAndroidTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugAndroidTest
-No dependencies
-
-debugAndroidTestApi - API dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
-No dependencies
-
-debugAndroidTestApiDependenciesMetadata
-No dependencies
-
-debugAndroidTestCompile - Dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestImplementation ' instead).
-No dependencies
-
-debugAndroidTestCompileClasspath - Compile classpath for compilation 'debugAndroidTest' (target (androidJvm)).
-+--- androidx.test.ext:junit:1.1.1
-| +--- junit:junit:4.12
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- androidx.test:core:1.2.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.test:monitor:1.2.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0
-| | \--- androidx.annotation:annotation:1.1.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- androidx.test:rules:1.2.0
-| \--- androidx.test:runner:1.2.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| +--- junit:junit:4.12 (*)
-| \--- net.sf.kxml:kxml2:2.3.0
-+--- androidx.test:runner:1.2.0 (*)
-+--- androidx.test.espresso:espresso-core:3.2.0
-| +--- androidx.test:runner:1.2.0 (*)
-| +--- androidx.test.espresso:espresso-idling-resource:3.2.0
-| +--- com.squareup:javawriter:2.1.1
-| +--- javax.inject:javax.inject:1
-| +--- org.hamcrest:hamcrest-library:1.3
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- org.hamcrest:hamcrest-integration:1.3
-| | \--- org.hamcrest:hamcrest-library:1.3 (*)
-| \--- com.google.code.findbugs:jsr305:2.0.1
-+--- androidx.multidex:multidex-instrumentation:2.0.0
-| \--- androidx.multidex:multidex:2.0.0
-+--- androidx.test.ext:junit:{strictly 1.1.1} -> 1.1.1 (c)
-+--- androidx.test:rules:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.test:runner:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.test.espresso:espresso-core:{strictly 3.2.0} -> 3.2.0 (c)
-+--- androidx.multidex:multidex-instrumentation:{strictly 2.0.0} -> 2.0.0 (c)
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0 (*)
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- junit:junit:{strictly 4.12} -> 4.12 (c)
-+--- androidx.test:core:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.test:monitor:{strictly 1.2.0} -> 1.2.0 (c)
-+--- net.sf.kxml:kxml2:{strictly 2.3.0} -> 2.3.0 (c)
-+--- androidx.test.espresso:espresso-idling-resource:{strictly 3.2.0} -> 3.2.0 (c)
-+--- com.squareup:javawriter:{strictly 2.1.1} -> 2.1.1 (c)
-+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
-+--- org.hamcrest:hamcrest-library:{strictly 1.3} -> 1.3 (c)
-+--- org.hamcrest:hamcrest-integration:{strictly 1.3} -> 1.3 (c)
-+--- com.google.code.findbugs:jsr305:{strictly 2.0.1} -> 2.0.1 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-debugAndroidTestCompileOnly - Compile only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
-No dependencies
-
-debugAndroidTestCompileOnlyDependenciesMetadata
-No dependencies
-
-debugAndroidTestImplementation - Implementation only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
-No dependencies
-
-debugAndroidTestImplementationDependenciesMetadata
-+--- androidx.test.ext:junit:1.1.1
-| +--- junit:junit:4.12
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- androidx.test:core:1.2.0
-| | +--- androidx.annotation:annotation:1.0.0
-| | +--- androidx.test:monitor:1.2.0
-| | | \--- androidx.annotation:annotation:1.0.0
-| | \--- androidx.lifecycle:lifecycle-common:2.0.0
-| | \--- androidx.annotation:annotation:1.0.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| \--- androidx.annotation:annotation:1.0.0
-+--- androidx.test:rules:1.2.0
-| \--- androidx.test:runner:1.2.0
-| +--- androidx.annotation:annotation:1.0.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| +--- junit:junit:4.12 (*)
-| \--- net.sf.kxml:kxml2:2.3.0
-+--- androidx.test:runner:1.2.0 (*)
-\--- androidx.test.espresso:espresso-core:3.2.0
- +--- androidx.test:runner:1.2.0 (*)
- +--- androidx.test.espresso:espresso-idling-resource:3.2.0
- +--- com.squareup:javawriter:2.1.1
- +--- javax.inject:javax.inject:1
- +--- org.hamcrest:hamcrest-library:1.3
- | \--- org.hamcrest:hamcrest-core:1.3
- +--- org.hamcrest:hamcrest-integration:1.3
- | \--- org.hamcrest:hamcrest-library:1.3 (*)
- \--- com.google.code.findbugs:jsr305:2.0.1
-
-debugAndroidTestRuntime - Runtime dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestRuntimeOnly ' instead).
-No dependencies
-
-debugAndroidTestRuntimeClasspath - Runtime classpath of compilation 'debugAndroidTest' (target (androidJvm)).
-+--- androidx.test.ext:junit:1.1.1
-| +--- junit:junit:4.12
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- androidx.test:core:1.2.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.test:monitor:1.2.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0
-| | \--- androidx.annotation:annotation:1.1.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- androidx.test:rules:1.2.0
-| \--- androidx.test:runner:1.2.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.test:monitor:1.2.0 (*)
-| +--- junit:junit:4.12 (*)
-| \--- net.sf.kxml:kxml2:2.3.0
-+--- androidx.test:runner:1.2.0 (*)
-+--- androidx.test.espresso:espresso-core:3.2.0
-| +--- androidx.test:runner:1.2.0 (*)
-| +--- androidx.test.espresso:espresso-idling-resource:3.2.0
-| +--- com.squareup:javawriter:2.1.1
-| +--- javax.inject:javax.inject:1
-| +--- org.hamcrest:hamcrest-library:1.3
-| | \--- org.hamcrest:hamcrest-core:1.3
-| +--- org.hamcrest:hamcrest-integration:1.3
-| | \--- org.hamcrest:hamcrest-library:1.3 (*)
-| \--- com.google.code.findbugs:jsr305:2.0.1
-+--- androidx.multidex:multidex-instrumentation:2.0.0
-| \--- androidx.multidex:multidex:2.0.0
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0 (*)
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (*)
-| \--- org.jsoup:jsoup:1.12.1
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.jsoup:jsoup:{strictly 1.12.1} -> 1.12.1 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-debugAndroidTestRuntimeOnly - Runtime only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
-No dependencies
-
-debugAndroidTestRuntimeOnlyDependenciesMetadata
-No dependencies
-
-debugAnnotationProcessor - Classpath for the annotation processor for 'debug'. (n)
-No dependencies
-
-debugAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debug
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-debugApi - API dependencies for compilation 'debug' (target (androidJvm)). (n)
-No dependencies
-
-debugApiDependenciesMetadata
-No dependencies
-
-debugApiElements - API elements for debug (n)
-No dependencies
-
-debugApk - Apk dependencies for 'debug' sources (deprecated: use 'debugRuntimeOnly' instead). (n)
-No dependencies
-
-debugBundleElements - Bundle elements for debug (n)
-No dependencies
-
-debugCompile - Dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugImplementation ' instead).
-No dependencies
-
-debugCompileClasspath - Compile classpath for compilation 'debug' (target (androidJvm)).
-+--- androidx.multidex:multidex:2.0.0
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-debugCompileOnly - Compile only dependencies for compilation 'debug' (target (androidJvm)).
-No dependencies
-
-debugCompileOnlyDependenciesMetadata
-No dependencies
-
-debugImplementation - Implementation only dependencies for compilation 'debug' (target (androidJvm)). (n)
-No dependencies
-
-debugImplementationDependenciesMetadata
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-\--- project :libpupil
-
-debugMetadataElements (n)
-No dependencies
-
-debugMetadataValues - Metadata Values dependencies for the base Split
-No dependencies
-
-debugProvided - Provided dependencies for 'debug' sources (deprecated: use 'debugCompileOnly' instead). (n)
-No dependencies
-
-debugRuntime - Runtime dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugRuntimeOnly ' instead).
-No dependencies
-
-debugRuntimeClasspath - Runtime classpath of compilation 'debug' (target (androidJvm)).
-+--- androidx.multidex:multidex:2.0.0
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-\--- project :libpupil
- +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (*)
- +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
- +--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (*)
- \--- org.jsoup:jsoup:1.12.1
-
-debugRuntimeElements - Runtime elements for debug (n)
-No dependencies
-
-debugRuntimeOnly - Runtime only dependencies for compilation 'debug' (target (androidJvm)). (n)
-No dependencies
-
-debugRuntimeOnlyDependenciesMetadata
-No dependencies
-
-debugUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugUnitTest
-No dependencies
-
-debugUnitTestApi - API dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-debugUnitTestApiDependenciesMetadata
-No dependencies
-
-debugUnitTestCompile - Dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestImplementation ' instead).
-No dependencies
-
-debugUnitTestCompileClasspath - Compile classpath for compilation 'debugUnitTest' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-+--- junit:junit:4.13
-| \--- org.hamcrest:hamcrest-core:1.3
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- junit:junit:{strictly 4.13} -> 4.13 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-debugUnitTestCompileOnly - Compile only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-debugUnitTestCompileOnlyDependenciesMetadata
-No dependencies
-
-debugUnitTestImplementation - Implementation only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-debugUnitTestImplementationDependenciesMetadata
-\--- junit:junit:4.13
- \--- org.hamcrest:hamcrest-core:1.3
-
-debugUnitTestRuntime - Runtime dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestRuntimeOnly ' instead).
-No dependencies
-
-debugUnitTestRuntimeClasspath - Runtime classpath of compilation 'debugUnitTest' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (*)
-| \--- org.jsoup:jsoup:1.12.1
-\--- junit:junit:4.13
- \--- org.hamcrest:hamcrest-core:1.3
-
-debugUnitTestRuntimeOnly - Runtime only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-debugUnitTestRuntimeOnlyDependenciesMetadata
-No dependencies
-
-debugWearApp - Link to a wear app to embed for object 'debug'. (n)
-No dependencies
-
-debugWearBundling - Resolved Configuration for wear app bundling for variant: debug
-No dependencies
-
-default - Configuration for default artifacts.
-No dependencies
-
-implementation - Implementation only dependencies for 'main' sources. (n)
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61 (n)
-+--- unspecified (n)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (n)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61 (n)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (n)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3 (n)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (n)
-+--- androidx.appcompat:appcompat:1.1.0 (n)
-+--- androidx.constraintlayout:constraintlayout:1.1.3 (n)
-+--- androidx.preference:preference:1.1.0 (n)
-+--- androidx.gridlayout:gridlayout:1.0.0 (n)
-+--- androidx.biometric:biometric:1.0.1 (n)
-+--- com.android.support:multidex:1.0.3 (n)
-+--- com.daimajia.swipelayout:library:1.2.0 (n)
-+--- com.google.android.material:material:1.2.0-alpha04 (n)
-+--- com.google.firebase:firebase-core:17.2.2 (n)
-+--- com.google.firebase:firebase-perf:19.0.5 (n)
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1 (n)
-+--- com.github.arimorty:floatingsearchview:2.1.1 (n)
-+--- com.github.clans:fab:1.6.4 (n)
-+--- com.github.bumptech.glide:glide:4.11.0 (n)
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0 (n)
-+--- net.rdrei.android.dirchooser:library:3.2 (n)
-+--- com.gu:option:1.3 (n)
-+--- com.github.chrisbanes:PhotoView:2.3.0 (n)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0 (n)
-+--- ru.noties.markwon:core:3.0.1 (n)
-\--- project libpupil (n)
-
-implementationDependenciesMetadata
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-\--- project :libpupil
-
-io.fabric - fabric and its transitive dependencies.
-No dependencies
-
-kapt
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptAndroidTest
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptAndroidTestDebug
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptDebug
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptRelease
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptTest
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptTestDebug
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kaptTestRelease
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-kotlinCompilerClasspath
-\--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.61
- +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
- | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
- | \--- org.jetbrains:annotations:13.0
- +--- org.jetbrains.kotlin:kotlin-script-runtime:1.3.61
- +--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
- | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
- +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.3.61
- \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
-
-kotlinCompilerPluginClasspath
-+--- org.jetbrains.kotlin:kotlin-android-extensions:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| | \--- org.jetbrains:annotations:13.0
-| +--- org.jetbrains.kotlin:kotlin-script-runtime:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.3.61
-| \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
-+--- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-\--- org.jetbrains.kotlin:kotlin-serialization:1.3.61
-
-kotlinKaptWorkerDependencies
-\--- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.3.61
- +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.3.61
- | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
- | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
- | | \--- org.jetbrains:annotations:13.0
- | +--- org.jetbrains.kotlin:kotlin-script-runtime:1.3.61
- | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
- | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
- | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.3.61
- | \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
- \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-
-kotlinNativeCompilerPluginClasspath
-\--- org.jetbrains.kotlin:kotlin-serialization-unshaded:1.3.61
-
-lintChecks - Configuration to apply external lint check jar
-No dependencies
-
-lintClassPath - The lint embedded classpath
-\--- com.android.tools.lint:lint-gradle:26.5.3
- +--- com.android.tools:sdk-common:26.5.3
- | +--- com.android.tools:sdklib:26.5.3
- | | +--- com.android.tools.layoutlib:layoutlib-api:26.5.3
- | | | +--- com.android.tools:common:26.5.3
- | | | | +--- com.android.tools:annotations:26.5.3
- | | | | +--- com.google.guava:guava:27.0.1-jre
- | | | | | +--- com.google.guava:failureaccess:1.0.1
- | | | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
- | | | | | +--- com.google.code.findbugs:jsr305:3.0.2
- | | | | | +--- org.checkerframework:checker-qual:2.5.2
- | | | | | +--- com.google.errorprone:error_prone_annotations:2.2.0
- | | | | | +--- com.google.j2objc:j2objc-annotations:1.1
- | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.17
- | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50
- | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.50
- | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50
- | | | | | \--- org.jetbrains:annotations:13.0
- | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50
- | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.50 (*)
- | | | +--- net.sf.kxml:kxml2:2.3.0
- | | | +--- com.android.tools:annotations:26.5.3
- | | | \--- org.jetbrains:annotations:13.0
- | | +--- com.android.tools:dvlib:26.5.3
- | | | \--- com.android.tools:common:26.5.3 (*)
- | | +--- com.android.tools:repository:26.5.3
- | | | +--- com.android.tools:common:26.5.3 (*)
- | | | +--- com.sun.activation:javax.activation:1.2.0
- | | | +--- org.apache.commons:commons-compress:1.12
- | | | +--- org.glassfish.jaxb:jaxb-runtime:2.2.11
- | | | | +--- org.glassfish.jaxb:jaxb-core:2.2.11
- | | | | | +--- javax.xml.bind:jaxb-api:2.2.12-b140109.1041
- | | | | | +--- org.glassfish.jaxb:txw2:2.2.11
- | | | | | \--- com.sun.istack:istack-commons-runtime:2.21
- | | | | +--- org.jvnet.staxex:stax-ex:1.7.7
- | | | | \--- com.sun.xml.fastinfoset:FastInfoset:1.2.13
- | | | +--- com.google.jimfs:jimfs:1.1
- | | | | \--- com.google.guava:guava:18.0 -> 27.0.1-jre (*)
- | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | | +--- com.google.code.gson:gson:2.8.5
- | | +--- org.apache.commons:commons-compress:1.12
- | | +--- org.apache.httpcomponents:httpmime:4.5.6
- | | | \--- org.apache.httpcomponents:httpclient:4.5.6
- | | | +--- org.apache.httpcomponents:httpcore:4.4.10
- | | | +--- commons-logging:commons-logging:1.2
- | | | \--- commons-codec:commons-codec:1.10
- | | \--- org.apache.httpcomponents:httpcore:4.4.10
- | +--- com.android.tools.build:builder-test-api:3.5.3
- | | \--- com.android.tools.ddms:ddmlib:26.5.3
- | | +--- com.android.tools:common:26.5.3 (*)
- | | \--- net.sf.kxml:kxml2:2.3.0
- | +--- com.android.tools.build:builder-model:3.5.3
- | | \--- com.android.tools:annotations:26.5.3
- | +--- com.android.tools.ddms:ddmlib:26.5.3 (*)
- | +--- com.android.tools.analytics-library:shared:26.5.3
- | | +--- com.android.tools.analytics-library:protos:26.5.3
- | | | \--- com.google.protobuf:protobuf-java:3.4.0
- | | +--- com.android.tools:annotations:26.5.3
- | | +--- com.android.tools:common:26.5.3 (*)
- | | +--- com.google.guava:guava:27.0.1-jre (*)
- | | +--- com.google.code.gson:gson:2.8.5
- | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | +--- org.bouncycastle:bcpkix-jdk15on:1.56
- | | \--- org.bouncycastle:bcprov-jdk15on:1.56
- | +--- org.bouncycastle:bcprov-jdk15on:1.56
- | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.50
- | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.50 (*)
- | +--- com.google.protobuf:protobuf-java:3.4.0
- | +--- javax.inject:javax.inject:1
- | +--- org.jetbrains.trove4j:trove4j:20160824
- | \--- com.android.tools.build:aapt2-proto:0.4.0
- | \--- com.google.protobuf:protobuf-java:3.4.0
- +--- com.android.tools.build:builder:3.5.3
- | +--- com.android.tools.build:builder-model:3.5.3 (*)
- | +--- com.android.tools.build:builder-test-api:3.5.3 (*)
- | +--- com.android.tools:sdklib:26.5.3 (*)
- | +--- com.android.tools:sdk-common:26.5.3 (*)
- | +--- com.android.tools:common:26.5.3 (*)
- | +--- com.android.tools.build:manifest-merger:26.5.3
- | | +--- com.android.tools:common:26.5.3 (*)
- | | +--- com.android.tools:sdklib:26.5.3 (*)
- | | +--- com.android.tools:sdk-common:26.5.3 (*)
- | | +--- com.google.code.gson:gson:2.8.5
- | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | | \--- net.sf.kxml:kxml2:2.3.0
- | +--- com.android.tools.ddms:ddmlib:26.5.3 (*)
- | +--- com.android.tools.analytics-library:protos:26.5.3 (*)
- | +--- com.android.tools.analytics-library:tracker:26.5.3
- | | +--- com.android.tools:annotations:26.5.3
- | | +--- com.android.tools:common:26.5.3 (*)
- | | +--- com.android.tools.analytics-library:protos:26.5.3 (*)
- | | +--- com.android.tools.analytics-library:shared:26.5.3 (*)
- | | +--- com.google.protobuf:protobuf-java:3.4.0
- | | +--- com.google.guava:guava:27.0.1-jre (*)
- | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | +--- com.android.tools.build:apksig:3.5.3
- | +--- com.android.tools.build:apkzlib:3.5.3
- | | +--- com.google.code.findbugs:jsr305:1.3.9 -> 3.0.2
- | | +--- com.google.guava:guava:23.0 -> 27.0.1-jre (*)
- | | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
- | | +--- org.bouncycastle:bcprov-jdk15on:1.56
- | | \--- com.android.tools.build:apksig:3.5.3
- | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | +--- com.squareup:javawriter:2.5.0
- | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
- | +--- org.bouncycastle:bcprov-jdk15on:1.56
- | +--- org.ow2.asm:asm:6.0
- | +--- org.ow2.asm:asm-tree:6.0
- | | \--- org.ow2.asm:asm:6.0
- | +--- javax.inject:javax.inject:1
- | +--- org.ow2.asm:asm-commons:6.0
- | | \--- org.ow2.asm:asm-tree:6.0 (*)
- | +--- org.ow2.asm:asm-util:6.0
- | | \--- org.ow2.asm:asm-tree:6.0 (*)
- | +--- it.unimi.dsi:fastutil:7.2.0
- | +--- net.sf.jopt-simple:jopt-simple:4.9
- | \--- com.googlecode.json-simple:json-simple:1.1
- +--- com.android.tools.build:builder-model:3.5.3 (*)
- +--- com.android.tools.external.com-intellij:intellij-core:26.5.3
- | \--- org.jetbrains.trove4j:trove4j:20160824
- +--- com.android.tools.external.com-intellij:kotlin-compiler:26.5.3
- +--- com.android.tools.external.org-jetbrains:uast:26.5.3
- +--- com.android.tools.build:manifest-merger:26.5.3 (*)
- +--- com.android.tools.lint:lint:26.5.3
- | +--- com.android.tools.lint:lint-checks:26.5.3
- | | +--- com.android.tools.lint:lint-api:26.5.3
- | | | +--- com.android.tools:sdk-common:26.5.3 (*)
- | | | +--- com.android.tools.build:builder-model:3.5.3 (*)
- | | | +--- com.google.guava:guava:27.0.1-jre (*)
- | | | +--- com.android.tools.external.com-intellij:intellij-core:26.5.3 (*)
- | | | +--- com.android.tools.external.com-intellij:kotlin-compiler:26.5.3
- | | | +--- com.android.tools.external.org-jetbrains:uast:26.5.3
- | | | +--- com.android.tools.build:manifest-merger:26.5.3 (*)
- | | | +--- org.ow2.asm:asm:6.0
- | | | +--- org.ow2.asm:asm-tree:6.0 (*)
- | | | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.50 (*)
- | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | | +--- com.google.guava:guava:27.0.1-jre (*)
- | | +--- com.android.tools.external.com-intellij:intellij-core:26.5.3 (*)
- | | +--- com.android.tools.external.com-intellij:kotlin-compiler:26.5.3
- | | +--- com.android.tools.external.org-jetbrains:uast:26.5.3
- | | \--- org.ow2.asm:asm-analysis:6.0
- | | \--- org.ow2.asm:asm-tree:6.0 (*)
- | +--- com.google.guava:guava:27.0.1-jre (*)
- | +--- com.android.tools.external.org-jetbrains:uast:26.5.3
- | +--- com.android.tools.external.com-intellij:kotlin-compiler:26.5.3
- | +--- com.android.tools.build:manifest-merger:26.5.3 (*)
- | +--- com.android.tools.analytics-library:shared:26.5.3 (*)
- | +--- com.android.tools.analytics-library:protos:26.5.3 (*)
- | +--- com.android.tools.analytics-library:tracker:26.5.3 (*)
- | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.50 (*)
- | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- +--- com.android.tools.lint:lint-gradle-api:26.5.3
- | +--- com.android.tools:sdklib:26.5.3 (*)
- | +--- com.android.tools.build:builder-model:3.5.3 (*)
- | +--- com.android.tools.build:gradle-api:3.5.3
- | | +--- com.android.tools.build:builder-model:3.5.3 (*)
- | | +--- com.android.tools.build:builder-test-api:3.5.3 (*)
- | | +--- com.google.guava:guava:27.0.1-jre (*)
- | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | +--- org.jetbrains.kotlin:kotlin-reflect:1.3.50 (*)
- | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
- | \--- com.google.guava:guava:27.0.1-jre (*)
- +--- org.codehaus.groovy:groovy-all:2.4.15
- +--- org.jetbrains.kotlin:kotlin-reflect:1.3.50 (*)
- \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 (*)
-
-lintPublish - Configuration to publish external lint check jar
-No dependencies
-
-provided - Provided dependencies for 'main' sources (deprecated: use 'compileOnly' instead). (n)
-No dependencies
-
-releaseAnnotationProcessor - Classpath for the annotation processor for 'release'. (n)
-No dependencies
-
-releaseAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: release
-\--- com.github.bumptech.glide:compiler:4.11.0
- \--- com.github.bumptech.glide:annotations:4.11.0
-
-releaseApi - API dependencies for compilation 'release' (target (androidJvm)). (n)
-No dependencies
-
-releaseApiDependenciesMetadata
-No dependencies
-
-releaseApiElements - API elements for release (n)
-No dependencies
-
-releaseApk - Apk dependencies for 'release' sources (deprecated: use 'releaseRuntimeOnly' instead). (n)
-No dependencies
-
-releaseBundleElements - Bundle elements for release (n)
-No dependencies
-
-releaseCompile - Dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseImplementation ' instead).
-No dependencies
-
-releaseCompileClasspath - Compile classpath for compilation 'release' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-+--- androidx.multidex:multidex:2.0.0
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-releaseCompileOnly - Compile only dependencies for compilation 'release' (target (androidJvm)).
-No dependencies
-
-releaseCompileOnlyDependenciesMetadata
-No dependencies
-
-releaseImplementation - Implementation only dependencies for compilation 'release' (target (androidJvm)). (n)
-No dependencies
-
-releaseImplementationDependenciesMetadata
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-\--- project :libpupil
-
-releaseMetadataElements (n)
-No dependencies
-
-releaseMetadataValues - Metadata Values dependencies for the base Split
-No dependencies
-
-releaseProvided - Provided dependencies for 'release' sources (deprecated: use 'releaseCompileOnly' instead). (n)
-No dependencies
-
-releaseRuntime - Runtime dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseRuntimeOnly ' instead).
-No dependencies
-
-releaseRuntimeClasspath - Runtime classpath of compilation 'release' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (*)
-| \--- org.jsoup:jsoup:1.12.1
-\--- androidx.multidex:multidex:2.0.0
-
-releaseRuntimeElements - Runtime elements for release (n)
-No dependencies
-
-releaseRuntimeOnly - Runtime only dependencies for compilation 'release' (target (androidJvm)). (n)
-No dependencies
-
-releaseRuntimeOnlyDependenciesMetadata
-No dependencies
-
-releaseUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: releaseUnitTest
-No dependencies
-
-releaseUnitTestApi - API dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-releaseUnitTestApiDependenciesMetadata
-No dependencies
-
-releaseUnitTestCompile - Dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestImplementation ' instead).
-No dependencies
-
-releaseUnitTestCompileClasspath - Compile classpath for compilation 'releaseUnitTest' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:{strictly 1.3.3} -> 1.3.3 (c)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:{strictly 0.14.0} -> 0.14.0 (c)
-+--- androidx.appcompat:appcompat:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.constraintlayout:constraintlayout:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.preference:preference:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.gridlayout:gridlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.biometric:biometric:{strictly 1.0.1} -> 1.0.1 (c)
-+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
-+--- com.daimajia.swipelayout:library:{strictly 1.2.0} -> 1.2.0 (c)
-+--- com.google.android.material:material:{strictly 1.2.0-alpha04} -> 1.2.0-alpha04 (c)
-+--- com.google.firebase:firebase-core:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.firebase:firebase-perf:{strictly 19.0.5} -> 19.0.5 (c)
-+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.1} -> 2.10.1 (c)
-+--- com.github.arimorty:floatingsearchview:{strictly 2.1.1} -> 2.1.1 (c)
-+--- com.github.clans:fab:{strictly 1.6.4} -> 1.6.4 (c)
-+--- com.github.bumptech.glide:glide:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:recyclerview-integration:{strictly 4.11.0} -> 4.11.0 (c)
-+--- net.rdrei.android.dirchooser:library:{strictly 3.2} -> 3.2 (c)
-+--- com.gu:option:{strictly 1.3} -> 1.3 (c)
-+--- com.github.chrisbanes:PhotoView:{strictly 2.3.0} -> 2.3.0 (c)
-+--- com.andrognito.patternlockview:patternlockview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- ru.noties.markwon:core:{strictly 3.0.1} -> 3.0.1 (c)
-+--- junit:junit:4.13
-| \--- org.hamcrest:hamcrest-core:1.3
-+--- junit:junit:{strictly 4.13} -> 4.13 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.61} -> 1.3.61 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.61} -> 1.3.61 (c)
-+--- androidx.annotation:annotation:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.core:core:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.fragment:fragment:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.appcompat:appcompat-resources:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.constraintlayout:constraintlayout-solver:{strictly 1.1.3} -> 1.1.3 (c)
-+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.firebase:firebase-analytics:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
-+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
-+--- com.google.firebase:firebase-iid:{strictly 20.0.2} -> 20.0.2 (c)
-+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-clearcut:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.android.gms:play-services-phenotype:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-config:{strictly 19.0.4} -> 19.0.4 (c)
-+--- com.squareup.okhttp3:okhttp:{strictly 3.0.0} -> 3.0.0 (c)
-+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
-+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
-+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
-+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
-+--- com.bartoszlipinski:viewpropertyobjectanimator:{strictly 1.2.0} -> 1.2.0 (c)
-+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
-+--- com.github.bumptech.glide:gifdecoder:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:disklrucache:{strictly 4.11.0} -> 4.11.0 (c)
-+--- com.github.bumptech.glide:annotations:{strictly 4.11.0} -> 4.11.0 (c)
-+--- androidx.exifinterface:exifinterface:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.atlassian.commonmark:commonmark:{strictly 0.12.1} -> 0.12.1 (c)
-+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
-+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
-+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.0} -> 1.1.0 (c)
-+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.activity:activity:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
-+--- com.google.android.gms:play-services-measurement:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
-+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
-+--- com.google.firebase:firebase-abt:{strictly 19.0.0} -> 19.0.0 (c)
-+--- com.google.protobuf:protobuf-lite:{strictly 3.0.1} -> 3.0.1 (c)
-+--- com.squareup.okio:okio:{strictly 1.6.0} -> 1.6.0 (c)
-+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
-+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
-+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.savedstate:savedstate:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
-+--- com.google.android.gms:play-services-measurement-base:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-impl:{strictly 17.2.2} -> 17.2.2 (c)
-+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 17.2.2} -> 17.2.2 (c)
-+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
-+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
-+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
-\--- com.google.android.gms:play-services-ads-identifier:{strictly 17.0.0} -> 17.0.0 (c)
-
-releaseUnitTestCompileOnly - Compile only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-releaseUnitTestCompileOnlyDependenciesMetadata
-No dependencies
-
-releaseUnitTestImplementation - Implementation only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-releaseUnitTestImplementationDependenciesMetadata
-\--- junit:junit:4.13
- \--- org.hamcrest:hamcrest-core:1.3
-
-releaseUnitTestRuntime - Runtime dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestRuntimeOnly ' instead).
-No dependencies
-
-releaseUnitTestRuntimeClasspath - Runtime classpath of compilation 'releaseUnitTest' (target (androidJvm)).
-+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-| \--- org.jetbrains:annotations:13.0
-+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlin:kotlin-reflect:1.3.61
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.61
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.61 (*)
-| \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-+--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.61 (*)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60 -> 1.3.61
-+--- androidx.appcompat:appcompat:1.1.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.core:core:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0
-| | | +--- androidx.lifecycle:lifecycle-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.1.0
-| | | | \--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.versionedparcelable:versionedparcelable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | \--- androidx.collection:collection:1.0.0 -> 1.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.cursoradapter:cursoradapter:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.fragment:fragment:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.collection:collection:1.1.0 (*)
-| | +--- androidx.viewpager:viewpager:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.customview:customview:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.loader:loader:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
-| | | | +--- androidx.arch.core:core-runtime:2.0.0
-| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
-| | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | | | | +--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
-| | | | \--- androidx.arch.core:core-common:2.0.0 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.activity:activity:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-runtime:2.1.0 (*)
-| | | +--- androidx.lifecycle:lifecycle-viewmodel:2.1.0 (*)
-| | | \--- androidx.savedstate:savedstate:1.0.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
-| | | \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.1.0 (*)
-| | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.1.0 (*)
-| +--- androidx.appcompat:appcompat-resources:1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | +--- androidx.vectordrawable:vectordrawable:1.1.0
-| | | +--- androidx.annotation:annotation:1.1.0
-| | | +--- androidx.core:core:1.1.0 (*)
-| | | \--- androidx.collection:collection:1.1.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.1.0
-| | | \--- androidx.collection:collection:1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.constraintlayout:constraintlayout:1.1.3
-| \--- androidx.constraintlayout:constraintlayout-solver:1.1.3
-+--- androidx.preference:preference:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.annotation:annotation:1.1.0
-| \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-+--- androidx.gridlayout:gridlayout:1.0.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.legacy:legacy-support-core-ui:1.0.0
-| +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- androidx.legacy:legacy-support-core-utils:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.documentfile:documentfile:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.loader:loader:1.0.0 (*)
-| | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
-| | | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.print:print:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.viewpager:viewpager:1.0.0 (*)
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.1.0 (*)
-| | +--- androidx.customview:customview:1.0.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
-| +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.customview:customview:1.0.0 (*)
-| +--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | \--- androidx.interpolator:interpolator:1.0.0 (*)
-| +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
-| | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | \--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
-+--- androidx.biometric:biometric:1.0.1
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.fragment:fragment:1.1.0 (*)
-+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
-+--- com.daimajia.swipelayout:library:1.2.0
-+--- com.google.android.material:material:1.2.0-alpha04
-| +--- androidx.annotation:annotation:1.0.1 -> 1.1.0
-| +--- androidx.appcompat:appcompat:1.1.0 (*)
-| +--- androidx.cardview:cardview:1.0.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| +--- androidx.annotation:annotation-experimental:1.0.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- androidx.transition:transition:1.2.0
-| | +--- androidx.annotation:annotation:1.1.0
-| | +--- androidx.core:core:1.0.1 -> 1.1.0 (*)
-| | \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
-| \--- androidx.viewpager2:viewpager2:1.0.0
-| +--- androidx.annotation:annotation:1.1.0
-| +--- androidx.fragment:fragment:1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.1.0 (*)
-| +--- androidx.core:core:1.1.0 (*)
-| \--- androidx.collection:collection:1.1.0 (*)
-+--- com.google.firebase:firebase-core:17.2.2
-| \--- com.google.firebase:firebase-analytics:17.2.2
-| +--- com.google.android.gms:play-services-measurement:17.2.2
-| | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-ads-identifier:17.0.0
-| | | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | | \--- com.google.android.gms:play-services-stats:17.0.0
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-api:17.2.2
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-measurement-sdk-api:[17.2.2] -> 17.2.2
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| | +--- com.google.android.gms:play-services-tasks:17.0.0
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.firebase:firebase-common:19.3.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.auto.value:auto-value-annotations:1.6.5
-| | | \--- com.google.firebase:firebase-components:16.0.0
-| | | \--- androidx.annotation:annotation:1.1.0
-| | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.2
-| | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-stats:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | | +--- com.google.firebase:firebase-components:16.0.0 (*)
-| | | \--- com.google.firebase:firebase-iid-interop:17.0.0
-| | | +--- com.google.android.gms:play-services-base:17.0.0
-| | | | +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | | +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| | | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | \--- com.google.firebase:firebase-measurement-connector:18.0.0
-| | \--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| \--- com.google.android.gms:play-services-measurement-sdk:17.2.2
-| +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-measurement-base:[17.2.2] -> 17.2.2 (*)
-| \--- com.google.android.gms:play-services-measurement-impl:[17.2.2] -> 17.2.2 (*)
-+--- com.google.firebase:firebase-perf:19.0.5
-| +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| +--- com.google.android.gms:play-services-clearcut:17.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | +--- com.google.android.gms:play-services-phenotype:17.0.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | +--- com.google.android.gms:play-services-base:17.0.0 (*)
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| | \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.android.gms:play-services-phenotype:17.0.0 (*)
-| +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
-| +--- com.google.firebase:firebase-common:19.3.0 (*)
-| +--- com.google.firebase:firebase-components:16.0.0 (*)
-| +--- com.google.firebase:firebase-config:19.0.4
-| | +--- com.google.firebase:firebase-abt:19.0.0
-| | | +--- com.google.android.gms:play-services-basement:17.0.0 (*)
-| | | +--- com.google.firebase:firebase-common:19.0.0 -> 19.3.0 (*)
-| | | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | | \--- com.google.protobuf:protobuf-lite:3.0.1
-| | +--- com.google.firebase:firebase-common:19.3.0 (*)
-| | +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| | +--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
-| | \--- com.google.protobuf:protobuf-lite:3.0.1
-| +--- com.google.firebase:firebase-iid:20.0.1 -> 20.0.2 (*)
-| \--- com.squareup.okhttp3:okhttp:3.0.0
-| \--- com.squareup.okio:okio:1.6.0
-+--- com.crashlytics.sdk.android:crashlytics:2.10.1
-| +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
-| | +--- io.fabric.sdk.android:fabric:1.4.8
-| | \--- com.crashlytics.sdk.android:answers:1.4.7
-| | \--- io.fabric.sdk.android:fabric:1.4.8
-| +--- com.crashlytics.sdk.android:beta:1.2.10
-| | \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
-| +--- io.fabric.sdk.android:fabric:1.4.8
-| \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
-+--- com.github.arimorty:floatingsearchview:2.1.1
-| +--- com.bartoszlipinski:viewpropertyobjectanimator:1.2.0
-| | \--- androidx.legacy:legacy-support-v4:1.0.0
-| | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.media:media:1.0.0
-| | | +--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| | | +--- androidx.core:core:1.0.0 -> 1.1.0 (*)
-| | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.0 (*)
-| | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
-| | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
-| | \--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-| +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 (*)
-| +--- com.google.android.material:material:1.0.0 -> 1.2.0-alpha04 (*)
-| \--- androidx.cardview:cardview:1.0.0 (*)
-+--- com.github.clans:fab:1.6.4
-+--- com.github.bumptech.glide:glide:4.11.0
-| +--- com.github.bumptech.glide:gifdecoder:4.11.0
-| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-| +--- com.github.bumptech.glide:disklrucache:4.11.0
-| +--- com.github.bumptech.glide:annotations:4.11.0
-| +--- androidx.fragment:fragment:1.0.0 -> 1.1.0 (*)
-| +--- androidx.vectordrawable:vectordrawable-animated:1.0.0 -> 1.1.0 (*)
-| \--- androidx.exifinterface:exifinterface:1.0.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- com.github.bumptech.glide:recyclerview-integration:4.11.0
-+--- net.rdrei.android.dirchooser:library:3.2
-+--- com.gu:option:1.3
-+--- com.github.chrisbanes:PhotoView:2.3.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- com.andrognito.patternlockview:patternlockview:1.0.0
-| \--- androidx.appcompat:appcompat:1.0.0 -> 1.1.0 (*)
-+--- ru.noties.markwon:core:3.0.1
-| +--- com.atlassian.commonmark:commonmark:0.12.1
-| \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
-+--- project :libpupil
-| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 (*)
-| +--- org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0 (*)
-| \--- org.jsoup:jsoup:1.12.1
-\--- junit:junit:4.13
- \--- org.hamcrest:hamcrest-core:1.3
-
-releaseUnitTestRuntimeOnly - Runtime only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
-No dependencies
-
-releaseUnitTestRuntimeOnlyDependenciesMetadata
-No dependencies
-
-releaseWearApp - Link to a wear app to embed for object 'release'. (n)
-No dependencies
-
-releaseWearBundling - Resolved Configuration for wear app bundling for variant: release
-No dependencies
-
-runtimeOnly - Runtime only dependencies for 'main' sources. (n)
-No dependencies
-
-runtimeOnlyDependenciesMetadata
-No dependencies
-
-testAnnotationProcessor - Classpath for the annotation processor for 'test'. (n)
-No dependencies
-
-testApi - API dependencies for 'test' sources. (n)
-No dependencies
-
-testApiDependenciesMetadata
-No dependencies
-
-testApk - Apk dependencies for 'test' sources (deprecated: use 'testRuntimeOnly' instead). (n)
-No dependencies
-
-testCompile - Compile dependencies for 'test' sources (deprecated: use 'testImplementation' instead).
-No dependencies
-
-testCompileOnly - Compile only dependencies for 'test' sources. (n)
-No dependencies
-
-testCompileOnlyDependenciesMetadata
-No dependencies
-
-testDebugAnnotationProcessor - Classpath for the annotation processor for 'testDebug'. (n)
-No dependencies
-
-testDebugApi - API dependencies for 'testDebug' sources. (n)
-No dependencies
-
-testDebugApiDependenciesMetadata
-No dependencies
-
-testDebugApk - Apk dependencies for 'testDebug' sources (deprecated: use 'testDebugRuntimeOnly' instead). (n)
-No dependencies
-
-testDebugCompile - Compile dependencies for 'testDebug' sources (deprecated: use 'testDebugImplementation' instead). (n)
-No dependencies
-
-testDebugCompileOnly - Compile only dependencies for 'testDebug' sources. (n)
-No dependencies
-
-testDebugCompileOnlyDependenciesMetadata
-No dependencies
-
-testDebugImplementation - Implementation only dependencies for 'testDebug' sources. (n)
-No dependencies
-
-testDebugImplementationDependenciesMetadata
-No dependencies
-
-testDebugProvided - Provided dependencies for 'testDebug' sources (deprecated: use 'testDebugCompileOnly' instead). (n)
-No dependencies
-
-testDebugRuntimeOnly - Runtime only dependencies for 'testDebug' sources. (n)
-No dependencies
-
-testDebugRuntimeOnlyDependenciesMetadata
-No dependencies
-
-testDebugWearApp - Link to a wear app to embed for object 'testDebug'. (n)
-No dependencies
-
-testImplementation - Implementation only dependencies for 'test' sources. (n)
-\--- junit:junit:4.13 (n)
-
-testImplementationDependenciesMetadata
-\--- junit:junit:4.13
- \--- org.hamcrest:hamcrest-core:1.3
-
-testProvided - Provided dependencies for 'test' sources (deprecated: use 'testCompileOnly' instead). (n)
-No dependencies
-
-testReleaseAnnotationProcessor - Classpath for the annotation processor for 'testRelease'. (n)
-No dependencies
-
-testReleaseApi - API dependencies for 'testRelease' sources. (n)
-No dependencies
-
-testReleaseApiDependenciesMetadata
-No dependencies
-
-testReleaseApk - Apk dependencies for 'testRelease' sources (deprecated: use 'testReleaseRuntimeOnly' instead). (n)
-No dependencies
-
-testReleaseCompile - Compile dependencies for 'testRelease' sources (deprecated: use 'testReleaseImplementation' instead). (n)
-No dependencies
-
-testReleaseCompileOnly - Compile only dependencies for 'testRelease' sources. (n)
-No dependencies
-
-testReleaseCompileOnlyDependenciesMetadata
-No dependencies
-
-testReleaseImplementation - Implementation only dependencies for 'testRelease' sources. (n)
-No dependencies
-
-testReleaseImplementationDependenciesMetadata
-No dependencies
-
-testReleaseProvided - Provided dependencies for 'testRelease' sources (deprecated: use 'testReleaseCompileOnly' instead). (n)
-No dependencies
-
-testReleaseRuntimeOnly - Runtime only dependencies for 'testRelease' sources. (n)
-No dependencies
-
-testReleaseRuntimeOnlyDependenciesMetadata
-No dependencies
-
-testReleaseWearApp - Link to a wear app to embed for object 'testRelease'. (n)
-No dependencies
-
-testRuntimeOnly - Runtime only dependencies for 'test' sources. (n)
-No dependencies
-
-testRuntimeOnlyDependenciesMetadata
-No dependencies
-
-testWearApp - Link to a wear app to embed for object 'test'. (n)
-No dependencies
-
-wearApp - Link to a wear app to embed for object 'main'. (n)
-No dependencies
-
-(c) - dependency constraint
-(*) - dependencies omitted (listed previously)
-
-(n) - Not resolved (configuration is not meant to be resolved)
-
-A web-based, searchable dependency report is available by adding the --scan option.
-
-BUILD SUCCESSFUL in 3s
-1 actionable task: 1 executed