diff --git a/app/build.gradle b/app/build.gradle index eccb406c..c8c3da9e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -113,10 +113,6 @@ dependencies { //noinspection GradleDependency 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.tbuonomo.andrui:viewpagerdotsindicator:4.1.2" 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 58c57bd8..27cf11e4 100644 --- a/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt +++ b/app/src/main/java/xyz/quaver/pupil/adapters/GalleryBlockAdapter.kt @@ -26,28 +26,19 @@ import android.view.View import android.view.ViewGroup import android.widget.LinearLayout import androidx.cardview.widget.CardView -import androidx.core.view.children +import androidx.core.content.ContextCompat import androidx.recyclerview.widget.RecyclerView -import androidx.swiperefreshlayout.widget.CircularProgressDrawable import androidx.vectordrawable.graphics.drawable.Animatable2Compat import androidx.vectordrawable.graphics.drawable.AnimatedVectorDrawableCompat -import com.bumptech.glide.RequestManager -import com.bumptech.glide.load.DataSource -import com.bumptech.glide.load.engine.DiskCacheStrategy -import com.bumptech.glide.load.engine.GlideException -import com.bumptech.glide.request.RequestListener -import com.bumptech.glide.request.target.Target import com.daimajia.swipe.SwipeLayout import com.daimajia.swipe.adapters.RecyclerSwipeAdapter import com.daimajia.swipe.interfaces.SwipeAdapterInterface +import com.github.piasy.biv.loader.ImageLoader import kotlinx.android.synthetic.main.item_galleryblock.view.* -import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.launch -import kotlinx.coroutines.withContext +import kotlinx.android.synthetic.main.item_reader.view.* +import kotlinx.coroutines.* import xyz.quaver.hitomi.getReader import xyz.quaver.io.util.getChild -import xyz.quaver.pupil.BuildConfig import xyz.quaver.pupil.R import xyz.quaver.pupil.favoriteTags import xyz.quaver.pupil.favorites @@ -57,11 +48,9 @@ import xyz.quaver.pupil.util.Preferences import xyz.quaver.pupil.util.downloader.Cache import xyz.quaver.pupil.util.downloader.DownloadManager import xyz.quaver.pupil.util.wordCapitalize -import java.util.* -import kotlin.collections.ArrayList -import kotlin.concurrent.schedule +import java.io.File -class GalleryBlockAdapter(private val glide: RequestManager, private val galleries: List) : RecyclerSwipeAdapter(), SwipeAdapterInterface { +class GalleryBlockAdapter(private val galleries: List) : RecyclerSwipeAdapter(), SwipeAdapterInterface { enum class ViewType { NEXT, @@ -69,12 +58,11 @@ class GalleryBlockAdapter(private val glide: RequestManager, private val galleri PREV } - val timer = Timer() - + var update = true var thin: Boolean = Preferences["thin"] inner class GalleryViewHolder(val view: View) : RecyclerView.ViewHolder(view) { - var timerTask: TimerTask? = null + var updateJob: Job? = null private fun updateProgress(context: Context, galleryID: Int) { val cache = Cache.getInstance(context, galleryID) @@ -144,54 +132,41 @@ class GalleryBlockAdapter(private val glide: RequestManager, private val galleri val artists = galleryBlock.artists val series = galleryBlock.series - if (thin) - galleryblock_thumbnail.layoutParams.width = context.resources.getDimensionPixelSize( - R.dimen.galleryblock_thumbnail_thin - ) - - galleryblock_thumbnail.setImageDrawable(CircularProgressDrawable(context).also { - it.start() - }) - - CoroutineScope(Dispatchers.IO).launch { - val thumbnail = cache.getThumbnail() - - glide - .load(thumbnail) - .skipMemoryCache(true) - .diskCacheStrategy(DiskCacheStrategy.NONE) - .error(R.drawable.image_broken_variant) - .listener(object: RequestListener { - override fun onLoadFailed( - e: GlideException?, - model: Any?, - target: Target?, - isFirstResource: Boolean - ): Boolean { - Cache.getInstance(context, galleryID).let { - it.cacheFolder.getChild(".thumbnail").let { if (it.exists()) it.delete() } - it.downloadFolder?.getChild(".thumbnail")?.let { if (it.exists()) it.delete() } - } - return false + galleryblock_thumbnail.apply { + setOnClickListener { + view.performClick() + } + setOnLongClickListener { + view.performLongClick() + } + setFailureImage(ContextCompat.getDrawable(context, R.drawable.image_broken_variant)) + setImageLoaderCallback(object: ImageLoader.Callback { + override fun onFail(error: Exception?) { + Cache.getInstance(context, galleryID).let { cache -> + cache.cacheFolder.getChild(".thumbnail").let { if (it.exists()) it.delete() } + cache.downloadFolder?.getChild(".thumbnail")?.let { if (it.exists()) it.delete() } } + } - override fun onResourceReady( - resource: Drawable?, - model: Any?, - target: Target?, - dataSource: DataSource?, - isFirstResource: Boolean - ): Boolean = false - }) - .apply { - if (BuildConfig.CENSOR) - override(5, 8) - }.let { launch(Dispatchers.Main) { it.into(galleryblock_thumbnail) } } + override fun onCacheHit(imageType: Int, image: File?) {} + override fun onCacheMiss(imageType: Int, image: File?) {} + override fun onFinish() {} + override fun onProgress(progress: Int) {} + override fun onStart() {} + override fun onSuccess(image: File?) {} + }) + ssiv?.recycle() + CoroutineScope(Dispatchers.IO).launch { + showImage(cache.getThumbnail()) + } } - if (timerTask == null) - timerTask = timer.schedule(0, 1000) { - updateProgress(context, galleryID) + if (updateJob == null) + updateJob = CoroutineScope(Dispatchers.Main).launch { + while (update) { + updateProgress(context, galleryID) + delay(1000) + } } galleryblock_title.text = galleryBlock.title @@ -386,8 +361,8 @@ class GalleryBlockAdapter(private val glide: RequestManager, private val galleri super.onViewDetachedFromWindow(holder) if (holder is GalleryViewHolder) { - holder.timerTask?.cancel() - holder.timerTask = null + holder.updateJob?.cancel() + holder.updateJob = null } } 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 5384139b..f62199d1 100644 --- a/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt +++ b/app/src/main/java/xyz/quaver/pupil/adapters/ReaderAdapter.kt @@ -18,33 +18,43 @@ package xyz.quaver.pupil.adapters +import android.content.Context +import android.graphics.DiscretePathEffect +import android.graphics.drawable.Animatable +import android.net.Uri import android.view.LayoutInflater import android.view.View import android.view.ViewGroup +import android.widget.ImageView import androidx.constraintlayout.widget.ConstraintLayout +import androidx.core.content.ContextCompat import androidx.core.view.updateLayoutParams import androidx.recyclerview.widget.RecyclerView import com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView +import com.facebook.drawee.backends.pipeline.Fresco +import com.facebook.drawee.controller.BaseControllerListener +import com.facebook.drawee.drawable.ScalingUtils +import com.facebook.drawee.interfaces.DraweeController import com.facebook.drawee.view.SimpleDraweeView -import com.github.piasy.biv.view.FrescoImageViewFactory +import com.facebook.imagepipeline.image.ImageInfo +import com.github.piasy.biv.view.BigImageView import com.github.piasy.biv.view.ImageShownCallback +import com.github.piasy.biv.view.ImageViewFactory import kotlinx.android.synthetic.main.item_reader.view.* -import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.launch +import kotlinx.coroutines.* import xyz.quaver.hitomi.Reader import xyz.quaver.pupil.R import xyz.quaver.pupil.ui.ReaderActivity import xyz.quaver.pupil.util.downloader.Cache -import java.util.* -import kotlin.concurrent.schedule +import java.io.File import kotlin.math.roundToInt -class ReaderAdapter(private val activity: ReaderActivity, - private val galleryID: Int) : RecyclerView.Adapter() { +class ReaderAdapter( + private val activity: ReaderActivity, + private val galleryID: Int +) : RecyclerView.Adapter() { var reader: Reader? = null - val timer = Timer() var isFullScreen = false @@ -52,14 +62,7 @@ class ReaderAdapter(private val activity: ReaderActivity, 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 - } - } + view.image.ssiv?.recycle() } } @@ -67,18 +70,29 @@ class ReaderAdapter(private val activity: ReaderActivity, 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 + with(it) { + image.setImageViewFactory(FrescoImageViewFactory().apply { + updateView = { imageInfo -> + it.image.updateLayoutParams { + dimensionRatio = "${imageInfo.width}:${imageInfo.height}" } } }) + image.setImageShownCallback(object : ImageShownCallback { + override fun onMainImageShown() { + it.image.mainView.let { v -> + when (v) { + is SubsamplingScaleImageView -> + if (!isFullScreen) it.image.layoutParams.height = ViewGroup.LayoutParams.WRAP_CONTENT + } + } + } + + override fun onThumbnailShown() {} + }) + image.setFailureImage(ContextCompat.getDrawable(context, R.drawable.image_broken_variant)) image.setOnClickListener { - onItemClickListener?.invoke() + this.performClick() } setOnClickListener { onItemClickListener?.invoke() @@ -96,20 +110,20 @@ class ReaderAdapter(private val activity: ReaderActivity, if (cache == null) cache = Cache.getInstance(holder.view.context, galleryID) - holder.view.layoutParams.height = - if (isFullScreen) - ConstraintLayout.LayoutParams.MATCH_PARENT - else - ConstraintLayout.LayoutParams.WRAP_CONTENT - - holder.view.image.layoutParams.height = - if (isFullScreen) - ConstraintLayout.LayoutParams.MATCH_PARENT - else - ConstraintLayout.LayoutParams.WRAP_CONTENT - - holder.view.placeholder.updateLayoutParams { - dimensionRatio = "${reader!!.galleryInfo.files[position].width}:${reader!!.galleryInfo.files[position].height}" + if (!isFullScreen) { + holder.view.setBackgroundResource(R.drawable.reader_item_boundary) + holder.view.image.updateLayoutParams { + height = 0 + dimensionRatio = + "${reader!!.galleryInfo.files[position].width}:${reader!!.galleryInfo.files[position].height}" + } + } else { + holder.view.layoutParams.height = ViewGroup.LayoutParams.MATCH_PARENT + holder.view.image.updateLayoutParams { + height = ConstraintLayout.LayoutParams.MATCH_PARENT + dimensionRatio = null + } + holder.view.background = null } holder.view.reader_index.text = (position+1).toString() @@ -130,10 +144,9 @@ class ReaderAdapter(private val activity: ReaderActivity, holder.clear() - timer.schedule(1000) { - CoroutineScope(Dispatchers.Main).launch { - notifyItemChanged(position) - } + CoroutineScope(Dispatchers.Main).launch { + delay(1000) + notifyItemChanged(position) } } } @@ -144,4 +157,87 @@ class ReaderAdapter(private val activity: ReaderActivity, holder.clear() } +} + +class FrescoImageViewFactory : ImageViewFactory() { + var updateView: ((ImageInfo) -> Unit)? = null + + override fun createAnimatedImageView( + context: Context, imageType: Int, + initScaleType: Int + ): View { + val view = SimpleDraweeView(context) + view.hierarchy.actualImageScaleType = scaleType(initScaleType) + return view + } + + override fun loadAnimatedContent( + view: View, imageType: Int, + imageFile: File + ) { + if (view is SimpleDraweeView) { + val controller: DraweeController = Fresco.newDraweeControllerBuilder() + .setUri(Uri.parse("file://" + imageFile.absolutePath)) + .setAutoPlayAnimations(true) + .setControllerListener(object: BaseControllerListener() { + override fun onIntermediateImageSet(id: String?, imageInfo: ImageInfo?) { + imageInfo?.let { updateView?.invoke(it) } + } + + override fun onFinalImageSet(id: String?, imageInfo: ImageInfo?, animatable: Animatable?) { + imageInfo?.let { updateView?.invoke(it) } + } + }) + .build() + view.controller = controller + } + } + + override fun createThumbnailView( + context: Context, + scaleType: ImageView.ScaleType, willLoadFromNetwork: Boolean + ): View { + return if (willLoadFromNetwork) { + val thumbnailView = SimpleDraweeView(context) + thumbnailView.hierarchy.actualImageScaleType = scaleType(scaleType) + thumbnailView + } else { + super.createThumbnailView(context, scaleType, false) + } + } + + override fun loadThumbnailContent(view: View, thumbnail: Uri) { + if (view is SimpleDraweeView) { + val controller: DraweeController = Fresco.newDraweeControllerBuilder() + .setUri(thumbnail) + .build() + view.controller = controller + } + } + + private fun scaleType(value: Int): ScalingUtils.ScaleType { + return when (value) { + BigImageView.INIT_SCALE_TYPE_CENTER -> ScalingUtils.ScaleType.CENTER + BigImageView.INIT_SCALE_TYPE_CENTER_CROP -> ScalingUtils.ScaleType.CENTER_CROP + BigImageView.INIT_SCALE_TYPE_CENTER_INSIDE -> ScalingUtils.ScaleType.CENTER_INSIDE + BigImageView.INIT_SCALE_TYPE_FIT_END -> ScalingUtils.ScaleType.FIT_END + BigImageView.INIT_SCALE_TYPE_FIT_START -> ScalingUtils.ScaleType.FIT_START + BigImageView.INIT_SCALE_TYPE_FIT_XY -> ScalingUtils.ScaleType.FIT_XY + BigImageView.INIT_SCALE_TYPE_FIT_CENTER -> ScalingUtils.ScaleType.FIT_CENTER + else -> ScalingUtils.ScaleType.FIT_CENTER + } + } + + private fun scaleType(scaleType: ImageView.ScaleType): ScalingUtils.ScaleType { + return when (scaleType) { + ImageView.ScaleType.CENTER -> ScalingUtils.ScaleType.CENTER + ImageView.ScaleType.CENTER_CROP -> ScalingUtils.ScaleType.CENTER_CROP + ImageView.ScaleType.CENTER_INSIDE -> ScalingUtils.ScaleType.CENTER_INSIDE + ImageView.ScaleType.FIT_END -> ScalingUtils.ScaleType.FIT_END + ImageView.ScaleType.FIT_START -> ScalingUtils.ScaleType.FIT_START + ImageView.ScaleType.FIT_XY -> ScalingUtils.ScaleType.FIT_XY + ImageView.ScaleType.FIT_CENTER -> ScalingUtils.ScaleType.FIT_CENTER + else -> ScalingUtils.ScaleType.FIT_CENTER + } + } } \ No newline at end of file diff --git a/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailAdapter.kt b/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailAdapter.kt index eb216ad6..3b9a081b 100644 --- a/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailAdapter.kt +++ b/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailAdapter.kt @@ -18,32 +18,35 @@ package xyz.quaver.pupil.adapters +import android.net.Uri import android.view.ViewGroup -import android.widget.ImageView +import androidx.core.content.ContextCompat import androidx.recyclerview.widget.RecyclerView -import com.bumptech.glide.RequestManager -import com.bumptech.glide.load.engine.DiskCacheStrategy -import xyz.quaver.pupil.BuildConfig +import com.github.piasy.biv.view.BigImageView +import xyz.quaver.pupil.R -class ThumbnailAdapter(private val glide: RequestManager, var thumbnails: List) : RecyclerView.Adapter() { +class ThumbnailAdapter(var thumbnails: List) : RecyclerView.Adapter() { - class ViewHolder(val view: ImageView) : RecyclerView.ViewHolder(view) + class ViewHolder(val view: BigImageView) : RecyclerView.ViewHolder(view) { + fun clear() { + view.ssiv?.recycle() + } + } override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder { - return ViewHolder(ImageView(parent.context)) + return ViewHolder(BigImageView(parent.context).apply { + setFailureImage(ContextCompat.getDrawable(context, R.drawable.image_broken_variant)) + }) } override fun onBindViewHolder(holder: ViewHolder, position: Int) { - glide - .load(thumbnails[position]) - .diskCacheStrategy(DiskCacheStrategy.NONE) - .apply { - if (BuildConfig.CENSOR) - override(5, 8) - } - .into(holder.view) + holder.view.showImage(Uri.parse(thumbnails[position])) } override fun getItemCount() = thumbnails.size + override fun onViewRecycled(holder: ViewHolder) { + holder.clear() + } + } \ No newline at end of file diff --git a/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailPageAdapter.kt b/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailPageAdapter.kt index b4f5b1a0..22667059 100644 --- a/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailPageAdapter.kt +++ b/app/src/main/java/xyz/quaver/pupil/adapters/ThumbnailPageAdapter.kt @@ -21,17 +21,19 @@ package xyz.quaver.pupil.adapters import android.view.ViewGroup import androidx.recyclerview.widget.GridLayoutManager import androidx.recyclerview.widget.RecyclerView -import com.bumptech.glide.RequestManager import kotlin.math.min -class ThumbnailPageAdapter(private val glide: RequestManager, private val thumbnails: List) : RecyclerView.Adapter() { +class ThumbnailPageAdapter(private val thumbnails: List) : RecyclerView.Adapter() { class ViewHolder(val view: RecyclerView) : RecyclerView.ViewHolder(view) override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder { return ViewHolder(RecyclerView(parent.context).apply { - layoutManager = GridLayoutManager(parent.context, 3) - adapter = ThumbnailAdapter(glide, listOf()) + val layoutManager = GridLayoutManager(parent.context, 3) + val adapter = ThumbnailAdapter(listOf()) + + this.layoutManager = layoutManager + this.adapter = adapter layoutParams = ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT) }) } @@ -41,7 +43,7 @@ class ThumbnailPageAdapter(private val glide: RequestManager, private val thumbn thumbnails = this@ThumbnailPageAdapter.thumbnails.slice(9*position until min(9*position+9, this@ThumbnailPageAdapter.thumbnails.size)) notifyDataSetChanged() - holder.view.layoutManager?.scrollToPosition(itemCount-1) + (holder.view.layoutManager as GridLayoutManager).scrollToPosition(8) } } 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 6c7ad704..40491a4c 100644 --- a/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt +++ b/app/src/main/java/xyz/quaver/pupil/ui/MainActivity.kt @@ -32,7 +32,6 @@ import androidx.appcompat.app.AlertDialog import androidx.appcompat.app.AppCompatDelegate import androidx.cardview.widget.CardView import androidx.core.view.GravityCompat -import com.bumptech.glide.Glide import com.google.android.material.appbar.AppBarLayout import com.google.android.material.navigation.NavigationView import com.google.android.material.snackbar.Snackbar @@ -156,7 +155,7 @@ class MainActivity : override fun onDestroy() { super.onDestroy() - (main_recyclerview?.adapter as? GalleryBlockAdapter)?.timer?.cancel() + (main_recyclerview?.adapter as? GalleryBlockAdapter)?.update = false } override fun onKeyDown(keyCode: Int, event: KeyEvent?): Boolean { @@ -263,11 +262,7 @@ class MainActivity : if (it?.isEmpty() == false) { val galleryID = it.random() - GalleryDialog( - this@MainActivity, - Glide.with(this@MainActivity), - galleryID - ).apply { + GalleryDialog(this@MainActivity, galleryID).apply { onChipClickedHandler.add { runOnUiThread { query = it.toQuery() @@ -318,7 +313,7 @@ class MainActivity : @SuppressLint("ClickableViewAccessibility") private fun setupRecyclerView() { with(main_recyclerview) { - adapter = GalleryBlockAdapter(Glide.with(this@MainActivity), galleries).apply { + adapter = GalleryBlockAdapter(galleries).apply { onChipClickedHandler.add { runOnUiThread { query = it.toQuery() @@ -381,11 +376,7 @@ class MainActivity : val galleryID = galleries[position] - GalleryDialog( - this@MainActivity, - Glide.with(this@MainActivity), - galleryID - ).apply { + GalleryDialog(this@MainActivity, galleryID).apply { onChipClickedHandler.add { runOnUiThread { query = it.toQuery() @@ -984,14 +975,4 @@ class MainActivity : } } } - - override fun onLowMemory() { - super.onLowMemory() - Glide.get(this).onLowMemory() - } - - override fun onTrimMemory(level: Int) { - super.onTrimMemory(level) - Glide.get(this).onTrimMemory(level) - } } 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 b350d981..dd73fba2 100644 --- a/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt +++ b/app/src/main/java/xyz/quaver/pupil/ui/ReaderActivity.kt @@ -43,7 +43,6 @@ import androidx.recyclerview.widget.PagerSnapHelper import androidx.recyclerview.widget.RecyclerView import androidx.vectordrawable.graphics.drawable.Animatable2Compat import androidx.vectordrawable.graphics.drawable.AnimatedVectorDrawableCompat -import com.bumptech.glide.Glide import com.google.android.material.snackbar.Snackbar import com.google.firebase.crashlytics.FirebaseCrashlytics import com.google.mlkit.vision.face.Face @@ -99,7 +98,6 @@ class ReaderActivity : BaseActivity() { } } - private val timer = Timer() private val snapHelper = PagerSnapHelper() private var menu: Menu? = null @@ -239,8 +237,7 @@ class ReaderActivity : BaseActivity() { override fun onDestroy() { super.onDestroy() - timer.cancel() - (reader_recyclerview?.adapter as? ReaderAdapter)?.timer?.cancel() + update = false } override fun onBackPressed() { @@ -275,44 +272,53 @@ class ReaderActivity : BaseActivity() { } } + private var update = true private fun initDownloadListener() { - timer.schedule(1000, 1000) { - val downloader = downloader ?: return@schedule + CoroutineScope(Dispatchers.Main).launch { + while (update) { + delay(1000) - if (!downloader.progress.containsKey(galleryID)) //loading - return@schedule + val downloader = downloader ?: continue - if (downloader.progress[galleryID]?.isEmpty() == true) { //Gallery not found - timer.cancel() - Snackbar - .make(reader_layout, R.string.reader_failed_to_find_gallery, Snackbar.LENGTH_INDEFINITE) - .show() - } + if (!downloader.progress.containsKey(galleryID)) //loading + continue - histories.add(galleryID) + if (downloader.progress[galleryID]?.isEmpty() == true) { //Gallery not found + update = false + Snackbar + .make(reader_layout, R.string.reader_failed_to_find_gallery, Snackbar.LENGTH_INDEFINITE) + .show() + + return@launch + } + + histories.add(galleryID) - runOnUiThread { reader_download_progressbar.max = reader_recyclerview.adapter?.itemCount ?: 0 - reader_download_progressbar.progress = downloader.progress[galleryID]?.count { it.isInfinite() } ?: 0 + reader_download_progressbar.progress = + downloader.progress[galleryID]?.count { it.isInfinite() } ?: 0 if (title == getString(R.string.reader_loading)) { val reader = cache.metadata.reader if (reader != null) { - with (reader_recyclerview.adapter as ReaderAdapter) { + with(reader_recyclerview.adapter as ReaderAdapter) { 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_menu_page_indicator)?.title = + "$currentPage/${reader.galleryInfo.files.size}" - menu?.findItem(R.id.reader_type)?.icon = ContextCompat.getDrawable(this@ReaderActivity, + 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 - }) + } + ) } } @@ -602,14 +608,4 @@ class ReaderActivity : BaseActivity() { } } } - - override fun onLowMemory() { - super.onLowMemory() - Glide.get(this).onLowMemory() - } - - override fun onTrimMemory(level: Int) { - super.onTrimMemory(level) - Glide.get(this).onTrimMemory(level) - } } \ No newline at end of file diff --git a/app/src/main/java/xyz/quaver/pupil/ui/dialog/GalleryDialog.kt b/app/src/main/java/xyz/quaver/pupil/ui/dialog/GalleryDialog.kt index 76ef9827..d9417caa 100644 --- a/app/src/main/java/xyz/quaver/pupil/ui/dialog/GalleryDialog.kt +++ b/app/src/main/java/xyz/quaver/pupil/ui/dialog/GalleryDialog.kt @@ -20,16 +20,17 @@ package xyz.quaver.pupil.ui.dialog import android.content.Context import android.content.Intent +import android.net.Uri import android.os.Bundle import android.view.LayoutInflater import android.view.View +import android.view.ViewGroup import android.widget.LinearLayout.LayoutParams import androidx.appcompat.app.AlertDialog import androidx.core.content.ContextCompat import androidx.recyclerview.widget.LinearLayoutManager import androidx.recyclerview.widget.RecyclerView import androidx.viewpager2.widget.ViewPager2 -import com.bumptech.glide.RequestManager import com.google.android.material.snackbar.Snackbar import kotlinx.android.synthetic.main.dialog_gallery.* import kotlinx.android.synthetic.main.dialog_gallery_details.view.* @@ -54,7 +55,7 @@ import xyz.quaver.pupil.util.ItemClickSupport import xyz.quaver.pupil.util.downloader.Cache import xyz.quaver.pupil.util.wordCapitalize -class GalleryDialog(context: Context, private val glide: RequestManager, private val galleryID: Int) : AlertDialog(context) { +class GalleryDialog(context: Context, private val galleryID: Int) : AlertDialog(context) { val onChipClickedHandler = ArrayList<((Tag) -> (Unit))>() @@ -105,12 +106,7 @@ class GalleryDialog(context: Context, private val glide: RequestManager, private } } - glide - .load(gallery.cover) - .apply { - if (BuildConfig.CENSOR) - override(5, 8) - }.into(gallery_cover) + gallery_cover.showImage(Uri.parse(gallery.cover)) addDetails(gallery) addThumbnails(gallery) @@ -195,7 +191,8 @@ class GalleryDialog(context: Context, private val glide: RequestManager, private gallery_details.setText(R.string.gallery_thumbnails) val pager = ViewPager2(context).apply { - adapter = ThumbnailPageAdapter(glide, gallery.thumbnails) + adapter = ThumbnailPageAdapter(gallery.thumbnails) + layoutParams = ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT) } gallery_details_contents.addView( @@ -215,7 +212,7 @@ class GalleryDialog(context: Context, private val glide: RequestManager, private val inflater = LayoutInflater.from(context) val galleries = ArrayList() - val adapter = GalleryBlockAdapter(glide, galleries).apply { + val adapter = GalleryBlockAdapter(galleries).apply { onChipClickedHandler.add { tag -> this@GalleryDialog.onChipClickedHandler.forEach { handler -> handler.invoke(tag) @@ -238,11 +235,7 @@ class GalleryDialog(context: Context, private val glide: RequestManager, private histories.add(galleries[position]) } onItemLongClickListener = { _, position, _ -> - GalleryDialog( - context, - glide, - galleries[position] - ).apply { + GalleryDialog(context, galleries[position]).apply { onChipClickedHandler.add { tag -> this@GalleryDialog.onChipClickedHandler.forEach { it.invoke(tag) } } diff --git a/app/src/main/java/xyz/quaver/pupil/util/downloader/Cache.kt b/app/src/main/java/xyz/quaver/pupil/util/downloader/Cache.kt index 41dca009..9205f87b 100644 --- a/app/src/main/java/xyz/quaver/pupil/util/downloader/Cache.kt +++ b/app/src/main/java/xyz/quaver/pupil/util/downloader/Cache.kt @@ -20,6 +20,7 @@ package xyz.quaver.pupil.util.downloader import android.content.Context import android.content.ContextWrapper +import android.net.Uri import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch @@ -131,8 +132,8 @@ class Cache private constructor(context: Context, val galleryID: Int) : ContextW } @Suppress("BlockingMethodInNonBlockingContext") - suspend fun getThumbnail(): ByteArray? = - findFile(".thumbnail")?.readBytes() + suspend fun getThumbnail(): Uri? = + findFile(".thumbnail")?.uri ?: getGalleryBlock()?.thumbnails?.firstOrNull()?.let { withContext(Dispatchers.IO) { kotlin.runCatching { val request = Request.Builder() @@ -140,9 +141,9 @@ class Cache private constructor(context: Context, val galleryID: Int) : ContextW .build() client.newCall(request).execute().also { if (it.code() != 200) throw IOException() }.body()?.use { it.bytes() } - }.getOrNull()?.also { kotlin.run { - cacheFolder.getChild(".thumbnail").writeBytes(it) - } } + }.getOrNull()?.let { thumbnail -> kotlin.runCatching { + cacheFolder.getChild(".thumbnail").also { it.writeBytes(thumbnail) } + }.getOrNull()?.uri } } } suspend fun getReader(): Reader? { diff --git a/app/src/main/res/layout/dialog_gallery.xml b/app/src/main/res/layout/dialog_gallery.xml index e2d865fb..b55e780b 100644 --- a/app/src/main/res/layout/dialog_gallery.xml +++ b/app/src/main/res/layout/dialog_gallery.xml @@ -40,7 +40,7 @@ android:layout_height="wrap_content" android:padding="8dp"> - - - - diff --git a/app/src/main/res/values/dimen.xml b/app/src/main/res/values/dimen.xml index 14682b10..99cbc5ee 100644 --- a/app/src/main/res/values/dimen.xml +++ b/app/src/main/res/values/dimen.xml @@ -10,4 +10,6 @@ 24dp 72dp + + 300dp \ No newline at end of file diff --git a/dep b/dep deleted file mode 100644 index 9057ea42..00000000 --- a/dep +++ /dev/null @@ -1,8062 +0,0 @@ -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