diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0541de1..52d4945 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,20 +13,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -49,7 +49,7 @@ jobs: run: ./release/clean-secrets.sh - name: Upload build outputs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-outputs path: app/build/outputs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 792bae8..78cfde9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,22 +22,22 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -81,20 +81,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -108,7 +108,7 @@ jobs: - name: Archiving violations report if: ${{ always() && github.event_name == 'pull_request' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: violations-build-debug path: ./**/build/logs/buildlog*.txt @@ -122,22 +122,22 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -161,7 +161,7 @@ jobs: # Disable due to https://github.com/spotify/ruler/issues/116 # - name: Upload Ruler report - # uses: actions/upload-artifact@v3 + # uses: actions/upload-artifact@v4 # with: # name: ruler # path: app/build/reports/ruler @@ -175,20 +175,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -201,7 +201,7 @@ jobs: - name: Archiving violations report if: ${{ always() && github.event_name == 'pull_request' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: violations-detekt path: ./**/reports/detekt/*.xml @@ -215,20 +215,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -248,20 +248,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -274,14 +274,14 @@ jobs: - name: Upload Lint results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: android-lint-html-report path: ./**/build/reports/lint-results-*.html - name: Archiving violations report if: ${{ always() && github.event_name == 'pull_request' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: violations-android-lint path: ./**/reports/lint-results*.xml @@ -295,20 +295,20 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -321,7 +321,7 @@ jobs: - name: Archiving violations report if: ${{ always() && github.event_name == 'pull_request' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: violations-unit-tests path: ./**/build/test-results/test*/*.xml @@ -337,42 +337,42 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties - name: Fetching build-debug result - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: violations-build-debug - name: Fetching detekt result - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: violations-detekt - name: Fetching android-lint result - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: violations-android-lint # Uncomment once there are unit tests # - name: Fetching unit-tests result - # uses: actions/download-artifact@v3 + # uses: actions/download-artifact@v4 # with: # name: violations-unit-tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8438d55..86a00c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,10 +39,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create release tag - uses: actions/github-script@v5 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -54,22 +54,22 @@ jobs: }) - name: Workaround to fetch the tag # Is there a better way to do it? - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: 17.0.7 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 - ## This is needed by secrets-gradle-plugin - name: Create Local Properties File run: touch local.properties @@ -103,7 +103,7 @@ jobs: - name: Upload build outputs if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-outputs path: | @@ -111,7 +111,7 @@ jobs: version_name.txt - name: Create GitHub release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: draft: true tag_name: ${{ github.event.inputs.semver }} @@ -125,7 +125,7 @@ jobs: - name: Delete release tag if: ${{ failure() || cancelled() }} - uses: actions/github-script@v5 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/ubuntu-release-date.yml b/.github/workflows/ubuntu-release-date.yml index d100c5e..1b8c82d 100644 --- a/.github/workflows/ubuntu-release-date.yml +++ b/.github/workflows/ubuntu-release-date.yml @@ -44,7 +44,7 @@ jobs: run: jo releaseDate=$RELEASE_DATE > releaseDate.json - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact uses: actions/upload-pages-artifact@v2 @@ -54,4 +54,4 @@ jobs: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..adcc7f7 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,48 @@ +--- +repos: + - repo: local + hooks: + - id: shellcheck + name: shellcheck + entry: shellcheck + language: system + types: [shell] + args: ['-e', 'SC2148'] + - id: shellcheck + alias: shellcheck-diff-output + name: shellcheck (diff output) + entry: shellcheck + language: system + types: [shell] + args: ['-f', 'diff', '-e', 'SC2148'] + stages: [manual] + - id: shellcheck + alias: shellcheck-json-output + name: shellcheck (json output) + entry: shellcheck + language: system + types: [shell] + args: ['-f', 'json', '-e', 'SC2148'] + stages: [manual] + - repo: https://github.com/rhysd/actionlint + rev: v1.7.7 + hooks: + - id: actionlint + name: actionlint + files: ^\.github/workflows/.*\.(yml|yaml)$ + args: ['-shellcheck', 'shellcheck -S error'] + - id: actionlint + alias: actionlint-oneline + name: actionlint (one line per one error) + files: ^\.github/workflows/.*\.(yml|yaml)$ + args: ['-oneline', '-shellcheck', 'shellcheck -S error'] + stages: [manual] + - repo: https://github.com/adrienverge/yamllint + rev: v1.37.1 + hooks: + - id: yamllint + - id: yamllint + alias: yamllint-parsable + name: 'yamllint (parsable output)' + args: ['--format', 'parsable'] + stages: [manual] diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..f8bf072 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,72 @@ +# .gitignore +# Built application files +*.aab +*.apk +*.ap_ + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# Intellij +*.iml +.idea/* +!.idea/codeStyles/ +!.idea/copyright/ +!.idea/detekt.xml + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +/captures +/projectFilesBackup +release_notes_*.txt + +# Release keys +app-release.jks +play-account.p12 +play-account.json + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# Fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md + +**/.DS_Store +*.db + +# Reports +reports/ diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..b975008 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "printWidth": 150 +} diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..c257703 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,20 @@ +--- +extends: default + +rules: + braces: + min-spaces-inside: 0 + max-spaces-inside: 1 + min-spaces-inside-empty: 0 + max-spaces-inside-empty: 0 + brackets: disable + comments: + min-spaces-from-content: 1 + comments-indentation: false + document-start: disable + indentation: disable + line-length: disable + octal-values: + forbid-implicit-octal: true + forbid-explicit-octal: true + truthy: disable diff --git a/app/build.gradle.kts b/app/build.gradle.kts index b22231e..eed0a86 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -88,6 +88,9 @@ android { "-opt-in=androidx.compose.ui.ExperimentalComposeUiApi", ) } + buildFeatures { + buildConfig = true + } } val serviceAccountCredentialsFile: File = rootProject.file("release/play-account.json") @@ -103,8 +106,6 @@ println("play-account.json ${if (serviceAccountCredentialsFile.exists()) "" else dependencies { implementation(libs.aboutlibraries) implementation(libs.aboutlibraries.core) - implementation(libs.accompanist.placeholder) - implementation(libs.accompanist.systemuicontroller) implementation(libs.androidx.activity.compose) implementation(libs.androidx.appcompat) implementation(libs.androidx.compose.material) // Still needed for stuff missing in M3, like ModalBottomSheetLayout @@ -134,7 +135,7 @@ dependencies { implementation(libs.retrofit.kotlinx.serialization) implementation(libs.timber) - kaptAndroidTest(libs.hilt.android.compiler) + kaptAndroidTest(libs.dagger.hilt.android.compiler) debugImplementation(libs.androidx.compose.tooling) } diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/appwidget/AppWidgetStateDefinition.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/appwidget/AppWidgetStateDefinition.kt index 90210d8..189b9ca 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/appwidget/AppWidgetStateDefinition.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/appwidget/AppWidgetStateDefinition.kt @@ -55,12 +55,13 @@ object AppWidgetStateDefinition : GlanceStateDefinition { defaultValue } - override suspend fun writeTo(state: AppWidgetState, output: OutputStream) { + @Suppress("IDENTIFIER_LENGTH") + override suspend fun writeTo(t: AppWidgetState, output: OutputStream) { output.use { outputStream -> outputStream.write( Json.encodeToString( AppWidgetState.serializer(), - state, + t, ).encodeToByteArray(), ) } diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/DatePickerDialog.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/DatePickerDialog.kt index 6e850b8..0675cd3 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/DatePickerDialog.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/DatePickerDialog.kt @@ -29,7 +29,7 @@ import androidx.compose.runtime.derivedStateOf import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.res.stringResource -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -75,7 +75,7 @@ fun DatePickerDialog( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewDatePickerDialog() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/OutlinedTextField.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/OutlinedTextField.kt index f438693..09135c5 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/OutlinedTextField.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/OutlinedTextField.kt @@ -46,8 +46,8 @@ import androidx.compose.ui.text.input.VisualTransformation import androidx.compose.ui.unit.dp import androidx.constraintlayout.compose.ConstraintLayout import androidx.constraintlayout.compose.Dimension -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews import com.leinardi.ubuntucountdownwidget.ui.constraintlayout.goneIf +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -161,7 +161,7 @@ fun OutlinedTextField( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextField() { AppTheme { @@ -169,7 +169,7 @@ private fun PreviewOutlinedTextField() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextFieldEmpty() { AppTheme { @@ -177,7 +177,7 @@ private fun PreviewOutlinedTextFieldEmpty() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextFieldEmptyHelperMessage() { AppTheme { @@ -185,7 +185,7 @@ private fun PreviewOutlinedTextFieldEmptyHelperMessage() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextFieldEmptyHelperMessageCounterMessage() { AppTheme { @@ -193,7 +193,7 @@ private fun PreviewOutlinedTextFieldEmptyHelperMessageCounterMessage() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextFieldErrorMessage() { AppTheme { @@ -201,7 +201,7 @@ private fun PreviewOutlinedTextFieldErrorMessage() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewOutlinedTextFieldErrorMessageCounterMessage() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/Placeholder.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/Placeholder.kt deleted file mode 100644 index 66e9a5e..0000000 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/Placeholder.kt +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Ubuntu Countdown Widget - * Copyright (C) 2023 Roberto Leinardi - * - * This program is free software: you can redistribute it and/or modify it under the terms - * of the GNU General Public License as published by the Free Software Foundation, - * either version 3 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this - * program. If not, see . - */ - -package com.leinardi.ubuntucountdownwidget.ui.component - -import androidx.compose.animation.core.spring -import androidx.compose.material3.MaterialTheme -import androidx.compose.material3.contentColorFor -import androidx.compose.ui.Modifier -import androidx.compose.ui.composed -import com.google.accompanist.placeholder.PlaceholderDefaults -import com.google.accompanist.placeholder.PlaceholderHighlight -import com.google.accompanist.placeholder.fade -import com.google.accompanist.placeholder.material3.color -import com.google.accompanist.placeholder.material3.fadeHighlightColor -import com.google.accompanist.placeholder.placeholder - -// Switch from placeholder foundation to placeholder material once it will support Material 3 -// https://github.com/google/accompanist/issues/1151 -fun Modifier.placeholder( - visible: Boolean, -): Modifier = composed { - val containerColor = MaterialTheme.colorScheme.surface - Modifier.placeholder( - visible = visible, - color = PlaceholderDefaults.color( - backgroundColor = containerColor, - contentColor = contentColorFor(containerColor), - ), - shape = MaterialTheme.shapes.small, - highlight = PlaceholderHighlight.fade( - highlightColor = PlaceholderDefaults.fadeHighlightColor(backgroundColor = containerColor), - animationSpec = PlaceholderDefaults.fadeAnimationSpec, - ), - placeholderFadeTransitionSpec = { spring() }, - contentFadeTransitionSpec = { spring() }, - ) -} diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsCategory.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsCategory.kt index 79e88bb..35fecc0 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsCategory.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsCategory.kt @@ -38,7 +38,7 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.alpha import androidx.compose.ui.draw.clip import androidx.compose.ui.unit.dp -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -76,7 +76,7 @@ fun SettingsCategory( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsCategory() { AppTheme { @@ -86,7 +86,7 @@ private fun PreviewSettingsCategory() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsCategorySubtitle() { AppTheme { @@ -97,7 +97,7 @@ private fun PreviewSettingsCategorySubtitle() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsCategorySelected() { AppTheme { @@ -109,7 +109,7 @@ private fun PreviewSettingsCategorySelected() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsCategoryIcon() { AppTheme { @@ -121,7 +121,7 @@ private fun PreviewSettingsCategoryIcon() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsCategoryIconSelected() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsGroup.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsGroup.kt index 695f5b3..0c3ed44 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsGroup.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsGroup.kt @@ -29,7 +29,7 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -63,7 +63,7 @@ internal fun SettingsGroupTitle( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsGroup() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuLink.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuLink.kt index c44d367..10bd7db 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuLink.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuLink.kt @@ -40,7 +40,7 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.alpha import androidx.compose.ui.unit.dp -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -83,7 +83,7 @@ fun SettingsMenuLink( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuLink() { AppTheme { @@ -93,7 +93,7 @@ private fun PreviewSettingsMenuLink() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuLinkSubtitle() { AppTheme { @@ -104,7 +104,7 @@ private fun PreviewSettingsMenuLinkSubtitle() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuLinkAction() { var rememberCheckBoxState by remember { mutableStateOf(true) } @@ -124,7 +124,7 @@ private fun PreviewSettingsMenuLinkAction() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuLinkIcon() { AppTheme { @@ -136,7 +136,7 @@ private fun PreviewSettingsMenuLinkIcon() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuLinkIconAction() { var rememberCheckBoxState by remember { mutableStateOf(true) } diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuSwitch.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuSwitch.kt index 005f627..63ad67c 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuSwitch.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsMenuSwitch.kt @@ -31,7 +31,7 @@ import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.alpha import androidx.compose.ui.unit.dp -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -67,7 +67,7 @@ fun SettingsMenuSwitch( } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuSwitchOn() { AppTheme { @@ -79,7 +79,7 @@ private fun PreviewSettingsMenuSwitchOn() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsMenuSwitchOff() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsTile.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsTile.kt index 5e04fc1..5c1d8d8 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsTile.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/SettingsTile.kt @@ -34,7 +34,7 @@ import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp -import com.leinardi.ubuntucountdownwidget.ui.annotation.ThemePreviews +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewThemes import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing @@ -107,7 +107,7 @@ internal fun SettingsTileSubtitle(subtitle: @Composable () -> Unit) { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsIcon() { AppTheme { @@ -117,7 +117,7 @@ private fun PreviewSettingsIcon() { } } -@ThemePreviews +@PreviewThemes @Composable private fun PreviewSettingsIconPreviewEmpty() { AppTheme { diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/Placeholder.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/Placeholder.kt new file mode 100644 index 0000000..ce93e60 --- /dev/null +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/Placeholder.kt @@ -0,0 +1,383 @@ +/* + * Ubuntu Countdown Widget + * Copyright (C) 2023 Roberto Leinardi + * + * This program is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with this + * program. If not, see . + */ + +@file:Suppress("LongMethod", "LongParameterList", "MagicNumber", "MatchingDeclarationName") + +package com.leinardi.ubuntucountdownwidget.ui.component.placeholder + +import androidx.compose.animation.core.FiniteAnimationSpec +import androidx.compose.animation.core.InfiniteRepeatableSpec +import androidx.compose.animation.core.MutableTransitionState +import androidx.compose.animation.core.RepeatMode +import androidx.compose.animation.core.Transition +import androidx.compose.animation.core.animateFloat +import androidx.compose.animation.core.infiniteRepeatable +import androidx.compose.animation.core.rememberInfiniteTransition +import androidx.compose.animation.core.spring +import androidx.compose.animation.core.tween +import androidx.compose.animation.core.updateTransition +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.contentColorFor +import androidx.compose.runtime.Composable +import androidx.compose.runtime.getValue +import androidx.compose.runtime.mutableFloatStateOf +import androidx.compose.runtime.remember +import androidx.compose.runtime.setValue +import androidx.compose.ui.Modifier +import androidx.compose.ui.composed +import androidx.compose.ui.draw.drawWithContent +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.geometry.toRect +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.Outline +import androidx.compose.ui.graphics.Paint +import androidx.compose.ui.graphics.RectangleShape +import androidx.compose.ui.graphics.Shape +import androidx.compose.ui.graphics.compositeOver +import androidx.compose.ui.graphics.drawOutline +import androidx.compose.ui.graphics.drawscope.DrawScope +import androidx.compose.ui.graphics.drawscope.drawIntoCanvas +import androidx.compose.ui.graphics.isSpecified +import androidx.compose.ui.node.Ref +import androidx.compose.ui.platform.debugInspectorInfo +import androidx.compose.ui.unit.LayoutDirection + +fun Modifier.placeholder( + visible: Boolean, +): Modifier = composed { + val containerColor = MaterialTheme.colorScheme.surface + Modifier.placeholderLegacy( + visible = visible, + color = PlaceholderDefaults.color( + backgroundColor = containerColor, + contentColor = contentColorFor(containerColor), + ), + shape = MaterialTheme.shapes.small, + highlight = PlaceholderHighlight.fade( + highlightColor = PlaceholderDefaults.fadeHighlightColor(backgroundColor = containerColor), + animationSpec = PlaceholderDefaults.fadeAnimationSpec, + ), + placeholderFadeTransitionSpec = { spring() }, + contentFadeTransitionSpec = { spring() }, + ) +} + +/** + * Returns the value used as the the `color` parameter value on [Modifier.placeholder]. + * + * @param backgroundColor The current background color of the layout. Defaults to + * `MaterialTheme.colorScheme.surface`. + * @param contentColor The content color to be used on top of [backgroundColor]. + * @param contentAlpha The alpha component to set on [contentColor] when compositing the color + * on top of [backgroundColor]. Defaults to `0.1f`. + * @return + */ +@Composable +public fun PlaceholderDefaults.color( + backgroundColor: Color = MaterialTheme.colorScheme.surface, + contentColor: Color = contentColorFor(backgroundColor), + contentAlpha: Float = 0.1f, +): Color = contentColor.copy(contentAlpha).compositeOver(backgroundColor) + +/** + * Returns the value used as the the `highlightColor` parameter value of + * [PlaceholderHighlight.Companion.fade]. + * + * @param backgroundColor The current background color of the layout. Defaults to + * `MaterialTheme.colorScheme.surface`. + * @param alpha The alpha component to set on [backgroundColor]. Defaults to `0.3f`. + * @return + */ +@Composable +public fun PlaceholderDefaults.fadeHighlightColor( + backgroundColor: Color = MaterialTheme.colorScheme.surface, + alpha: Float = 0.3f, +): Color = backgroundColor.copy(alpha = alpha) + +/** + * Returns the value used as the the `highlightColor` parameter value of + * [PlaceholderHighlight.Companion.shimmer]. + * + * @param backgroundColor The current background color of the layout. Defaults to + * `MaterialTheme.colorScheme.inverseSurface`. + * @param alpha The alpha component to set on [backgroundColor]. Defaults to `0.75f`. + * @return + */ +@Composable +public fun PlaceholderDefaults.shimmerHighlightColor( + backgroundColor: Color = MaterialTheme.colorScheme.inverseSurface, + alpha: Float = 0.75f, +): Color = backgroundColor.copy(alpha = alpha) + +/** + * Draws some skeleton UI which is typically used whilst content is 'loading'. + * + * To customize the color and shape of the placeholder, you can use the foundation version of + * [Modifier.placeholder], along with the values provided by [PlaceholderDefaults]. + * + * A cross-fade transition will be applied to the content and placeholder UI when the [visible] + * value changes. The transition can be customized via the [contentFadeTransitionSpec] and + * [placeholderFadeTransitionSpec] parameters. + * + * You can provide a [PlaceholderHighlight] which runs an highlight animation on the placeholder. + * The [shimmer] and [fade] implementations are provided for easy usage. + * + * You can find more information on the pattern at the Material Theming + * [Placeholder UI](https://material.io/design/communication/launch-screen.html#placeholder-ui) + * guidelines. + * + * @param visible whether the placeholder should be visible or not. + * @param color the color used to draw the placeholder UI. If [Color.Unspecified] is provided, + * the placeholder will use [PlaceholderDefaults.color]. + * @param shape desired shape of the placeholder. If null is provided the placeholder + * will use the small shape set in [MaterialTheme.shapes]. + * @param highlight optional highlight animation. + * @param placeholderFadeTransitionSpec The transition spec to use when fading the placeholder + * on/off screen. The boolean parameter defined for the transition is [visible]. + * @param contentFadeTransitionSpec The transition spec to use when fading the content + * on/off screen. The boolean parameter defined for the transition is [visible]. + * @return + */ +public fun Modifier.placeholderLegacy( + visible: Boolean, + color: Color = Color.Unspecified, + shape: Shape? = null, + highlight: PlaceholderHighlight? = null, + placeholderFadeTransitionSpec: @Composable Transition.Segment.() -> FiniteAnimationSpec = { spring() }, + contentFadeTransitionSpec: @Composable Transition.Segment.() -> FiniteAnimationSpec = { spring() }, +): Modifier = composed { + Modifier.placeholder( + visible = visible, + color = if (color.isSpecified) color else PlaceholderDefaults.color(), + shape = shape ?: MaterialTheme.shapes.small, + highlight = highlight, + placeholderFadeTransitionSpec = placeholderFadeTransitionSpec, + contentFadeTransitionSpec = contentFadeTransitionSpec, + ) +} + +/** + * Contains default values used by [Modifier.placeholder] and [PlaceholderHighlight]. + */ +public object PlaceholderDefaults { + /** + * The default [InfiniteRepeatableSpec] to use for [fade]. + */ + public val fadeAnimationSpec: InfiniteRepeatableSpec by lazy { + infiniteRepeatable( + animation = tween(delayMillis = 200, durationMillis = 600), + repeatMode = RepeatMode.Reverse, + ) + } + + /** + * The default [InfiniteRepeatableSpec] to use for [shimmer]. + */ + public val shimmerAnimationSpec: InfiniteRepeatableSpec by lazy { + infiniteRepeatable( + animation = tween(durationMillis = 1700, delayMillis = 200), + repeatMode = RepeatMode.Restart, + ) + } +} + +/** + * Draws some skeleton UI which is typically used whilst content is 'loading'. + * + * A version of this modifier which uses appropriate values for Material themed apps is available + * in the 'Placeholder Material' library. + * + * You can provide a [PlaceholderHighlight] which runs an highlight animation on the placeholder. + * The [shimmer] and [fade] implementations are provided for easy usage. + * + * A cross-fade transition will be applied to the content and placeholder UI when the [visible] + * value changes. The transition can be customized via the [contentFadeTransitionSpec] and + * [placeholderFadeTransitionSpec] parameters. + * + * You can find more information on the pattern at the Material Theming + * [Placeholder UI](https://material.io/design/communication/launch-screen.html#placeholder-ui) + * guidelines. + * + * @param visible whether the placeholder should be visible or not. + * @param color the color used to draw the placeholder UI. + * @param shape desired shape of the placeholder. Defaults to [RectangleShape]. + * @param highlight optional highlight animation. + * @param placeholderFadeTransitionSpec The transition spec to use when fading the placeholder + * on/off screen. The boolean parameter defined for the transition is [visible]. + * @param contentFadeTransitionSpec The transition spec to use when fading the content + * on/off screen. The boolean parameter defined for the transition is [visible]. + * @return + */ +public fun Modifier.placeholder( + visible: Boolean, + color: Color, + shape: Shape = RectangleShape, + highlight: PlaceholderHighlight? = null, + placeholderFadeTransitionSpec: @Composable Transition.Segment.() -> FiniteAnimationSpec = { spring() }, + contentFadeTransitionSpec: @Composable Transition.Segment.() -> FiniteAnimationSpec = { spring() }, +): Modifier = composed( + inspectorInfo = debugInspectorInfo { + name = "placeholder" + value = visible + properties["visible"] = visible + properties["color"] = color + properties["highlight"] = highlight + properties["shape"] = shape + }, +) { + // Values used for caching purposes + val lastSize = remember { Ref() } + val lastLayoutDirection = remember { Ref() } + val lastOutline = remember { Ref() } + + // This is our crossfade transition + val transitionState = remember { MutableTransitionState(visible) }.apply { + targetState = visible + } + val transition = updateTransition(transitionState, "placeholder_crossfade") + + val placeholderAlpha by transition.animateFloat( + transitionSpec = placeholderFadeTransitionSpec, + label = "placeholder_fade", + targetValueByState = { placeholderVisible -> if (placeholderVisible) 1f else 0f }, + ) + val contentAlpha by transition.animateFloat( + transitionSpec = contentFadeTransitionSpec, + label = "content_fade", + targetValueByState = { placeholderVisible -> if (placeholderVisible) 0f else 1f }, + ) + + // The current highlight animation progress + var highlightProgress: Float by remember { mutableFloatStateOf(0f) } + + // Run the optional animation spec and update the progress if the placeholder is visible + val animationSpec = highlight?.animationSpec + if (animationSpec != null && (visible || placeholderAlpha >= 0.01f)) { + val infiniteTransition = rememberInfiniteTransition() + highlightProgress = infiniteTransition.animateFloat( + initialValue = 0f, + targetValue = 1f, + animationSpec = animationSpec, + ).value + } + + val paint = remember { Paint() } + remember(color, shape, highlight) { + drawWithContent { + // Draw the composable content first + if (contentAlpha in 0.01f..0.99f) { + // If the content alpha is between 1% and 99%, draw it in a layer with + // the alpha applied + paint.alpha = contentAlpha + withLayer(paint) { + with(this@drawWithContent) { + drawContent() + } + } + } else if (contentAlpha >= 0.99f) { + // If the content alpha is > 99%, draw it with no alpha + drawContent() + } + + if (placeholderAlpha in 0.01f..0.99f) { + // If the placeholder alpha is between 1% and 99%, draw it in a layer with + // the alpha applied + paint.alpha = placeholderAlpha + withLayer(paint) { + lastOutline.value = drawPlaceholder( + shape = shape, + color = color, + highlight = highlight, + progress = highlightProgress, + lastOutline = lastOutline.value, + lastLayoutDirection = lastLayoutDirection.value, + lastSize = lastSize.value, + ) + } + } else if (placeholderAlpha >= 0.99f) { + // If the placeholder alpha is > 99%, draw it with no alpha + lastOutline.value = drawPlaceholder( + shape = shape, + color = color, + highlight = highlight, + progress = highlightProgress, + lastOutline = lastOutline.value, + lastLayoutDirection = lastLayoutDirection.value, + lastSize = lastSize.value, + ) + } + + // Keep track of the last size & layout direction + lastSize.value = size + lastLayoutDirection.value = layoutDirection + } + } +} + +private fun DrawScope.drawPlaceholder( + shape: Shape, + color: Color, + highlight: PlaceholderHighlight?, + progress: Float, + lastOutline: Outline?, + lastLayoutDirection: LayoutDirection?, + lastSize: Size?, +): Outline? { + // shortcut to avoid Outline calculation and allocation + if (shape === RectangleShape) { + // Draw the initial background color + drawRect(color = color) + + if (highlight != null) { + drawRect( + brush = highlight.brush(progress, size), + alpha = highlight.alpha(progress), + ) + } + // We didn't create an outline so return null + return null + } + + // Otherwise we need to create an outline from the shape + val outline = lastOutline.takeIf { + size == lastSize && layoutDirection == lastLayoutDirection + } ?: shape.createOutline(size, layoutDirection, this) + + // Draw the placeholder color + drawOutline(outline = outline, color = color) + + if (highlight != null) { + drawOutline( + outline = outline, + brush = highlight.brush(progress, size), + alpha = highlight.alpha(progress), + ) + } + + // Return the outline we used + return outline +} + +private inline fun DrawScope.withLayer( + paint: Paint, + drawBlock: DrawScope.() -> Unit, +) { + drawIntoCanvas { canvas -> + canvas.saveLayer(size.toRect(), paint) + drawBlock() + canvas.restore() + } +} diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/PlaceholderHighlight.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/PlaceholderHighlight.kt new file mode 100644 index 0000000..279769b --- /dev/null +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/component/placeholder/PlaceholderHighlight.kt @@ -0,0 +1,184 @@ +/* + * Ubuntu Countdown Widget + * Copyright (C) 2023 Roberto Leinardi + * + * This program is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with this + * program. If not, see . + */ + +package com.leinardi.ubuntucountdownwidget.ui.component.placeholder + +import androidx.annotation.FloatRange +import androidx.compose.animation.core.AnimationSpec +import androidx.compose.animation.core.InfiniteRepeatableSpec +import androidx.compose.runtime.Composable +import androidx.compose.runtime.Stable +import androidx.compose.ui.geometry.Offset +import androidx.compose.ui.geometry.Size +import androidx.compose.ui.graphics.Brush +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.graphics.SolidColor +import androidx.compose.ui.util.lerp +import kotlin.math.max + +/** + * Creates a [PlaceholderHighlight] which fades in an appropriate color, using the + * given [animationSpec]. + * + * @param animationSpec the [AnimationSpec] to configure the animation. + */ +@Composable +public fun PlaceholderHighlight.Companion.fade( + animationSpec: InfiniteRepeatableSpec = PlaceholderDefaults.fadeAnimationSpec, +): PlaceholderHighlight = PlaceholderHighlight.fade( + highlightColor = PlaceholderDefaults.fadeHighlightColor(), + animationSpec = animationSpec, +) + +/** + * Creates a [PlaceholderHighlight] which 'shimmers', using a default color. + * + * The highlight starts at the top-start, and then grows to the bottom-end during the animation. + * During that time it is also faded in, from 0f..progressForMaxAlpha, and then faded out from + * progressForMaxAlpha..1f. + * + * @param animationSpec the [AnimationSpec] to configure the animation. + * @param progressForMaxAlpha The progress where the shimmer should be at it's peak opacity. + * Defaults to 0.6f. + */ +@Composable +public fun PlaceholderHighlight.Companion.shimmer( + animationSpec: InfiniteRepeatableSpec = PlaceholderDefaults.shimmerAnimationSpec, + @FloatRange(from = 0.0, to = 1.0) progressForMaxAlpha: Float = 0.6f, +): PlaceholderHighlight = PlaceholderHighlight.shimmer( + highlightColor = PlaceholderDefaults.shimmerHighlightColor(), + animationSpec = animationSpec, + progressForMaxAlpha = progressForMaxAlpha, +) + +/** + * A class which provides a brush to paint placeholder based on progress. + */ +@Stable +public interface PlaceholderHighlight { + /** + * The optional [AnimationSpec] to use when running the animation for this highlight. + */ + public val animationSpec: InfiniteRepeatableSpec? + + /** + * Return a [Brush] to draw for the given [progress] and [size]. + * + * @param progress the current animated progress in the range of 0f..1f. + * @param size The size of the current layout to draw in. + * @return + */ + public fun brush( + @FloatRange(from = 0.0, to = 1.0) progress: Float, + size: Size, + ): Brush + + /** + * Return the desired alpha value used for drawing the [Brush] returned from [brush]. + * + * @param progress the current animated progress in the range of 0f..1f. + * @return + */ + @FloatRange(from = 0.0, to = 1.0) + public fun alpha(progress: Float): Float + + public companion object +} + +/** + * Creates a [Fade] brush with the given initial and target colors. + * + * @param highlightColor the color of the highlight which is faded in/out. + * @param animationSpec the [AnimationSpec] to configure the animation. + * @return + */ +public fun PlaceholderHighlight.Companion.fade( + highlightColor: Color, + animationSpec: InfiniteRepeatableSpec = PlaceholderDefaults.fadeAnimationSpec, +): PlaceholderHighlight = Fade( + highlightColor = highlightColor, + animationSpec = animationSpec, +) + +/** + * Creates a [PlaceholderHighlight] which 'shimmers', using the given [highlightColor]. + * + * The highlight starts at the top-start, and then grows to the bottom-end during the animation. + * During that time it is also faded in, from 0f..progressForMaxAlpha, and then faded out from + * progressForMaxAlpha..1f. + * + * @param highlightColor the color of the highlight 'shimmer'. + * @param animationSpec the [AnimationSpec] to configure the animation. + * @param progressForMaxAlpha The progress where the shimmer should be at it's peak opacity. + * Defaults to 0.6f. + * @return + */ +public fun PlaceholderHighlight.Companion.shimmer( + highlightColor: Color, + animationSpec: InfiniteRepeatableSpec = PlaceholderDefaults.shimmerAnimationSpec, + @FloatRange(from = 0.0, to = 1.0) progressForMaxAlpha: Float = 0.6f, +): PlaceholderHighlight = Shimmer( + highlightColor = highlightColor, + animationSpec = animationSpec, + progressForMaxAlpha = progressForMaxAlpha, +) + +private data class Fade( + private val highlightColor: Color, + override val animationSpec: InfiniteRepeatableSpec, +) : PlaceholderHighlight { + private val brush = SolidColor(highlightColor) + + override fun brush(progress: Float, size: Size): Brush = brush + override fun alpha(progress: Float): Float = progress +} + +@Suppress("MagicNumber") +private data class Shimmer( + private val highlightColor: Color, + override val animationSpec: InfiniteRepeatableSpec, + private val progressForMaxAlpha: Float = 0.6f, +) : PlaceholderHighlight { + override fun brush( + progress: Float, + size: Size, + ): Brush = Brush.radialGradient( + colors = listOf( + highlightColor.copy(alpha = 0f), + highlightColor, + highlightColor.copy(alpha = 0f), + ), + center = Offset(x = 0f, y = 0f), + radius = (max(size.width, size.height) * progress * 2).coerceAtLeast(0.01f), + ) + + override fun alpha(progress: Float): Float = + if (progress <= progressForMaxAlpha) { + // From 0f...ProgressForOpaqueAlpha we animate from 0..1 + lerp( + start = 0f, + stop = 1f, + fraction = progress / progressForMaxAlpha, + ) + } else { + // From ProgressForOpaqueAlpha..1f we animate from 1..0 + lerp( + start = 1f, + stop = 0f, + fraction = (progress - progressForMaxAlpha) / (1f - progressForMaxAlpha), + ) + } +} diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/configuration/AppWidgetConfigurationScreen.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/configuration/AppWidgetConfigurationScreen.kt index c39e984..66c806c 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/configuration/AppWidgetConfigurationScreen.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/configuration/AppWidgetConfigurationScreen.kt @@ -47,16 +47,16 @@ import androidx.compose.ui.res.stringResource import androidx.hilt.navigation.compose.hiltViewModel import com.leinardi.ubuntucountdownwidget.R import com.leinardi.ubuntucountdownwidget.ext.toLocalizedDate -import com.leinardi.ubuntucountdownwidget.ui.annotation.DevicePreviews import com.leinardi.ubuntucountdownwidget.ui.component.DatePickerDialog import com.leinardi.ubuntucountdownwidget.ui.component.LocalNavHostController import com.leinardi.ubuntucountdownwidget.ui.component.OutlinedTextField import com.leinardi.ubuntucountdownwidget.ui.component.SettingsGroup import com.leinardi.ubuntucountdownwidget.ui.component.SettingsMenuLink import com.leinardi.ubuntucountdownwidget.ui.component.SettingsMenuSwitch -import com.leinardi.ubuntucountdownwidget.ui.component.placeholder +import com.leinardi.ubuntucountdownwidget.ui.component.placeholder.placeholder import com.leinardi.ubuntucountdownwidget.ui.configuration.AppWidgetConfigurationContract.Event import com.leinardi.ubuntucountdownwidget.ui.configuration.AppWidgetConfigurationContract.State +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewDevices import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.settingsContainer import com.leinardi.ubuntucountdownwidget.ui.theme.settingsContent @@ -274,9 +274,9 @@ private fun LazyListScope.infoItems( private const val MAX_CUSTOM_RELEASE_CODE_LENGTH = 16 -@DevicePreviews +@PreviewDevices @Composable -fun PreviewAppWidgetConfigurationScreen() { +private fun PreviewAppWidgetConfigurationScreen() { AppTheme { AppWidgetConfigurationScreen(State(LocalDate.now()), {}) } diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/opensourcelibraries/OpenSourceLibrariesScreen.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/opensourcelibraries/OpenSourceLibrariesScreen.kt index 1a3dcfe..243d595 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/opensourcelibraries/OpenSourceLibrariesScreen.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/opensourcelibraries/OpenSourceLibrariesScreen.kt @@ -60,8 +60,8 @@ import androidx.constraintlayout.compose.ConstraintLayout import androidx.constraintlayout.compose.Dimension import androidx.constraintlayout.compose.Visibility import com.leinardi.ubuntucountdownwidget.R -import com.leinardi.ubuntucountdownwidget.ui.annotation.DevicePreviews import com.leinardi.ubuntucountdownwidget.ui.component.LocalNavHostController +import com.leinardi.ubuntucountdownwidget.ui.preview.PreviewDevices import com.leinardi.ubuntucountdownwidget.ui.theme.AppTheme import com.leinardi.ubuntucountdownwidget.ui.theme.Spacing import com.mikepenz.aboutlibraries.Libs @@ -240,7 +240,7 @@ private fun LibraryItem( } } -@DevicePreviews +@PreviewDevices @Composable private fun PreviewOpenSourceLibrariesScreen() { val lib = Library( diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/LoremIpsum.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/LoremIpsum.kt new file mode 100644 index 0000000..d8d46b4 --- /dev/null +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/LoremIpsum.kt @@ -0,0 +1,21 @@ +/* + * Ubuntu Countdown Widget + * Copyright (C) 2023 Roberto Leinardi + * + * This program is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software Foundation, + * either version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with this + * program. If not, see . + */ + +package com.leinardi.ubuntucountdownwidget.ui.preview + +import androidx.compose.ui.tooling.preview.datasource.LoremIpsum + +fun loremIpsum(words: Int): String = LoremIpsum(words).values.joinToString(" ") diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/DevicePreviews.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewDevices.kt similarity index 74% rename from app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/DevicePreviews.kt rename to app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewDevices.kt index f881142..f27aa0a 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/DevicePreviews.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewDevices.kt @@ -14,69 +14,75 @@ * program. If not, see . */ -package com.leinardi.ubuntucountdownwidget.ui.annotation +package com.leinardi.ubuntucountdownwidget.ui.preview import android.content.res.Configuration +import androidx.compose.ui.tooling.preview.Devices import androidx.compose.ui.tooling.preview.Preview /** * Multipreview annotation that represents various device sizes. Add this annotation to a composable * to render various devices. */ +@Retention(AnnotationRetention.BINARY) +@Target( + AnnotationTarget.ANNOTATION_CLASS, + AnnotationTarget.FUNCTION, +) @Preview( name = "1. Phone - Light theme", - device = "spec:shape=Normal,width=360,height=640,unit=dp,dpi=480", + device = Devices.NEXUS_5, uiMode = Configuration.UI_MODE_NIGHT_NO, showBackground = true, backgroundColor = 0xFFFBFCFF, ) @Preview( name = "2. Phone - Dark theme", - device = "spec:shape=Normal,width=360,height=640,unit=dp,dpi=480", + device = Devices.NEXUS_5, uiMode = Configuration.UI_MODE_NIGHT_YES, showBackground = true, backgroundColor = 0xFF001E2E, ) @Preview( name = "3. Landscape - Light theme", - device = "spec:shape=Normal,width=640,height=360,unit=dp,dpi=480", + device = "spec:shape=Normal,width=640,height=360,unit=dp,orientation=landscape,dpi=480", uiMode = Configuration.UI_MODE_NIGHT_NO, showBackground = true, backgroundColor = 0xFFFBFCFF, ) @Preview( name = "4. Landscape - Dark theme", - device = "spec:shape=Normal,width=640,height=360,unit=dp,dpi=480", + device = "spec:shape=Normal,width=640,height=360,unit=dp,orientation=landscape,dpi=480", uiMode = Configuration.UI_MODE_NIGHT_YES, showBackground = true, backgroundColor = 0xFF001E2E, ) @Preview( - name = "5. Foldable - Light theme", - device = "spec:shape=Normal,width=673,height=841,unit=dp,dpi=480", + name = "5. Unfolded Foldable - Light theme", + device = Devices.FOLDABLE, uiMode = Configuration.UI_MODE_NIGHT_NO, showBackground = true, backgroundColor = 0xFFFBFCFF, ) @Preview( - name = "6. Foldable - Dark theme", - device = "spec:shape=Normal,width=673,height=841,unit=dp,dpi=480", + name = "6. Unfolded Foldable - Dark theme", + device = Devices.FOLDABLE, uiMode = Configuration.UI_MODE_NIGHT_YES, showBackground = true, backgroundColor = 0xFF001E2E, ) @Preview( name = "7. Tablet - Light theme", - device = "spec:shape=Normal,width=1280,height=800,unit=dp,dpi=480", + device = Devices.TABLET, uiMode = Configuration.UI_MODE_NIGHT_NO, showBackground = true, backgroundColor = 0xFFFBFCFF, ) @Preview( name = "8. Tablet - Dark theme", - device = "spec:shape=Normal,width=1280,height=800,unit=dp,dpi=480", + device = Devices.TABLET, uiMode = Configuration.UI_MODE_NIGHT_YES, showBackground = true, backgroundColor = 0xFF001E2E, ) -annotation class DevicePreviews +annotation class PreviewDevices diff --git a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/ThemePreviews.kt b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewThemes.kt similarity index 58% rename from app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/ThemePreviews.kt rename to app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewThemes.kt index 882c76e..16db19a 100644 --- a/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/annotation/ThemePreviews.kt +++ b/app/src/main/kotlin/com/leinardi/ubuntucountdownwidget/ui/preview/PreviewThemes.kt @@ -14,15 +14,22 @@ * program. If not, see . */ -package com.leinardi.ubuntucountdownwidget.ui.annotation +package com.leinardi.ubuntucountdownwidget.ui.preview import android.content.res.Configuration import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.tooling.preview.Wallpapers /** - * Multipreview annotation that represents light and dark themes. Add this annotation to a - * composable to render both themes. + * A MultiPreview annotation for desplaying a @[Composable] method using light and dark themes. + * + * Note that the app theme should support dark and light modes for these previews to be different. */ +@Retention(AnnotationRetention.BINARY) +@Target( + AnnotationTarget.ANNOTATION_CLASS, + AnnotationTarget.FUNCTION, +) @Preview( uiMode = Configuration.UI_MODE_NIGHT_NO, name = "1. Light theme", @@ -35,4 +42,20 @@ import androidx.compose.ui.tooling.preview.Preview showBackground = true, backgroundColor = 0xFF001E2E, ) -annotation class ThemePreviews +@Preview( + name = "3. Red", + wallpaper = Wallpapers.RED_DOMINATED_EXAMPLE, +) +@Preview( + name = "4. Blue", + wallpaper = Wallpapers.BLUE_DOMINATED_EXAMPLE, +) +@Preview( + name = "5. Green", + wallpaper = Wallpapers.GREEN_DOMINATED_EXAMPLE, +) +@Preview( + name = "6. Yellow", + wallpaper = Wallpapers.YELLOW_DOMINATED_EXAMPLE, +) +annotation class PreviewThemes diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index dcbac1e..35bf23b 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -23,14 +23,14 @@ Default Informazioni È qui! - No web browser available on this device. + Nessun browser disponibile nel dispositivo. Licenze Open Source Opzioni countdown Seleziona data personalizzata Usa data personalizzata Usa una data personalizzata per il countdown - Select a custom release code - Custom release code + Scegli un codice di rilascio personalizzato + Codice di rilascio personalizzato Data rilascio Ubuntu Versione Impossibile determinare la versione diff --git a/app/versions/dependencies/debugRuntimeClasspathDependencies.txt b/app/versions/dependencies/debugRuntimeClasspathDependencies.txt index 74acf5e..958643e 100644 --- a/app/versions/dependencies/debugRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/debugRuntimeClasspathDependencies.txt @@ -55,21 +55,25 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | \--- com.squareup.curtains:curtains:1.2.4 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.9.10 (*) -+--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 -| \--- androidx.compose.ui:ui-tooling-android:1.6.0-alpha06 -| +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 -| | +--- androidx.activity:activity-ktx:1.7.2 -| | | +--- androidx.activity:activity:1.7.2 ++--- androidx.compose.ui:ui-tooling:1.6.0-beta01 +| \--- androidx.compose.ui:ui-tooling-android:1.6.0-beta01 +| +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 +| | +--- androidx.activity:activity-ktx:1.8.1 +| | | +--- androidx.activity:activity:1.8.1 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 | | | | | \--- androidx.annotation:annotation-jvm:1.7.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 -| | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 +| | | | | \--- androidx.collection:collection-jvm:1.4.0-beta01 +| | | | | +--- androidx.annotation:annotation:1.7.0 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | | +--- androidx.collection:collection-ktx:1.4.0-beta01 (c) +| | | | | \--- androidx.collection:collection-ktx:1.3.0-alpha01 -> 1.4.0-beta01 (c) | | | | +--- androidx.core:core:1.8.0 -> 1.12.0 | | | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | | | +--- androidx.annotation:annotation-experimental:1.3.0 | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.concurrent:concurrent-futures:1.0.0 -> 1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | \--- com.google.guava:listenablefuture:1.0 @@ -131,7 +135,7 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) | | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | | \--- androidx.core:core-ktx:1.12.0 (c) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -198,10 +202,10 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | | +--- androidx.tracing:tracing:1.0.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | | +--- androidx.activity:activity-compose:1.7.2 (c) -| | | | \--- androidx.activity:activity-ktx:1.7.2 (c) -| | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | +--- androidx.activity:activity-compose:1.8.1 (c) +| | | | \--- androidx.activity:activity-ktx:1.8.1 (c) +| | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 (*) @@ -239,107 +243,107 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) | | | | \--- androidx.savedstate:savedstate:1.2.1 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | +--- androidx.activity:activity:1.7.2 (c) -| | | \--- androidx.activity:activity-compose:1.7.2 (c) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.runtime:runtime-android:1.6.0-alpha06 -| | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | +--- androidx.activity:activity:1.8.1 (c) +| | | \--- androidx.activity:activity-compose:1.8.1 (c) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.runtime:runtime-android:1.6.0-beta01 +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | | \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-alpha06 +| | | +--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | | \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| | | \--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-android:1.6.0-alpha06 -| | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.7.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| | | \--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-android:1.6.0-beta01 +| | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.autofill:autofill:1.0.0 | | | | \--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-alpha06 +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 -| | | | | \--- androidx.compose.ui:ui-util-android:1.6.0-alpha06 +| | | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 +| | | | | \--- androidx.compose.ui:ui-util-android:1.6.0-beta01 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | | \--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) +| | | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | | \--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-alpha06 +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 -| | | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-alpha06 +| | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 +| | | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-beta01 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection-ktx:1.2.0 -| | | | | | +--- androidx.collection:collection:1.2.0 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.9.10 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | | +--- androidx.collection:collection-ktx:1.2.0 -> 1.4.0-beta01 +| | | | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | | | \--- androidx.collection:collection:1.4.0-beta01 (c) +| | | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-text-android:1.6.0-alpha06 +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-text-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.6.2 | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -362,16 +366,16 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | | \--- androidx.emoji2:emoji2-views-helper:1.3.0 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) @@ -385,152 +389,153 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-alpha06 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-beta01 (c) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | +--- androidx.activity:activity-ktx:1.7.2 (c) -| | \--- androidx.activity:activity:1.7.2 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | +--- androidx.activity:activity-ktx:1.8.1 (c) +| | \--- androidx.activity:activity:1.8.1 (c) | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.animation:animation:1.6.0-alpha06 -| | \--- androidx.compose.animation:animation-android:1.6.0-alpha06 +| +--- androidx.compose.animation:animation:1.6.0-beta01 +| | \--- androidx.compose.animation:animation-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 -| | | \--- androidx.compose.animation:animation-core-android:1.6.0-alpha06 +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 +| | | \--- androidx.compose.animation:animation-core-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | \--- androidx.compose.animation:animation:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 -| | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-alpha06 +| | | \--- androidx.compose.animation:animation:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 +| | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.foundation:foundation:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | \--- androidx.compose.foundation:foundation:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | \--- androidx.compose.animation:animation-core:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.material:material-android:1.6.0-alpha06 +| | \--- androidx.compose.animation:animation-core:1.6.0-beta01 (c) +| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-beta01 +| | \--- androidx.compose.material:material-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 -| | | \--- androidx.compose.foundation:foundation-android:1.6.0-alpha06 +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation:1.6.0-beta01 +| | | \--- androidx.compose.foundation:foundation-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-alpha06 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | | \--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 +| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-beta01 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-ripple-android:1.6.0-alpha06 -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-ripple:1.6.0-beta01 +| | | \--- androidx.compose.material:material-ripple-android:1.6.0-beta01 +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-alpha06 +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-alpha06 +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| \--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| \--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +--- org.jetbrains.kotlin:kotlin-parcelize-runtime:1.9.10 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.9.10 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.10 (*) -+--- androidx.activity:activity-compose:1.7.2 (*) ++--- androidx.activity:activity-compose:1.8.1 (*) +--- androidx.core:core-ktx:1.12.0 (*) +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-fragment-ktx:2.7.3 -| +--- androidx.navigation:navigation-fragment:2.7.3 -| | +--- androidx.fragment:fragment-ktx:1.6.0 -| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.7.2 (*) -| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) ++--- androidx.navigation:navigation-fragment-ktx:2.7.5 +| +--- androidx.navigation:navigation-fragment:2.7.5 +| | +--- androidx.fragment:fragment-ktx:1.6.2 +| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.8.1 (*) +| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) -| | | +--- androidx.fragment:fragment:1.6.0 -| | | | +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| | | +--- androidx.fragment:fragment:1.6.2 +| | | | +--- androidx.activity:activity:1.7.2 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -565,9 +570,9 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) -| | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | | \--- androidx.fragment:fragment-ktx:1.6.0 (c) +| | | | \--- androidx.fragment:fragment-ktx:1.6.2 (c) | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) @@ -586,16 +591,16 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.6.2 (*) | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | \--- androidx.fragment:fragment:1.6.0 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 -| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.7.2 (*) +| | | \--- androidx.fragment:fragment:1.6.2 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 +| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 +| | | +--- androidx.navigation:navigation-common:2.7.5 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) @@ -604,23 +609,23 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.customview:customview:1.1.0 (*) @@ -629,80 +634,86 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.7.3 (*) | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.core:core:1.3.2 -> 1.12.0 (*) | | | \--- androidx.transition:transition:1.4.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 -| | | +--- androidx.navigation:navigation-common:2.7.3 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) -+--- androidx.navigation:navigation-ui-ktx:2.7.3 -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) -| +--- androidx.navigation:navigation-ui:2.7.3 +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 +| | | +--- androidx.navigation:navigation-common:2.7.5 (*) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) ++--- androidx.navigation:navigation-ui-ktx:2.7.5 +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) +| +--- androidx.navigation:navigation-ui:2.7.5 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) | | +--- androidx.customview:customview:1.1.0 (*) | | +--- androidx.drawerlayout:drawerlayout:1.1.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.2.0 -> 1.12.0 (*) | | | \--- androidx.customview:customview:1.1.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) | | +--- androidx.transition:transition:1.3.0 -> 1.4.1 (*) -| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.9.0 +| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.10.0 +| | | +--- org.jetbrains.kotlin:kotlin-bom:1.8.22 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.10 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 (c) | | | +--- com.google.errorprone:error_prone_annotations:2.15.0 +| | | +--- androidx.activity:activity:1.8.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.1 -| | | | +--- androidx.activity:activity:1.6.0 -> 1.7.2 (*) +| | | +--- androidx.appcompat:appcompat:1.6.1 +| | | | +--- androidx.activity:activity:1.6.0 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | | | +--- androidx.appcompat:appcompat-resources:1.6.1 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.6.0 -> 1.12.0 (*) | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0 | | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | | | | +--- androidx.interpolator:interpolator:1.0.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | \--- androidx.appcompat:appcompat:1.6.1 (c) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.9.0 -> 1.12.0 (*) | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) | | | | +--- androidx.cursoradapter:cursoradapter:1.0.0 @@ -710,11 +721,11 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 (*) | | | | +--- androidx.emoji2:emoji2-views-helper:1.2.0 -> 1.3.0 -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.3.0 (c) -| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.0 (*) +| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 @@ -728,7 +739,7 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.constraintlayout:constraintlayout:2.0.1 | | | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.1 (*) | | | | +--- androidx.core:core:1.3.1 -> 1.12.0 (*) @@ -737,7 +748,7 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*) | | | +--- androidx.dynamicanimation:dynamicanimation:1.0.0 | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.legacy:legacy-support-core-utils:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) @@ -749,69 +760,70 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | \--- androidx.print:print:1.0.0 | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*) | | | +--- androidx.transition:transition:1.2.0 -> 1.4.1 (*) | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | \--- androidx.viewpager2:viewpager2:1.0.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.1.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 (*) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -+--- com.google.dagger:hilt-android:2.48 -| +--- com.google.dagger:dagger:2.48 ++--- com.google.dagger:hilt-android:2.48.1 +| +--- com.google.dagger:dagger:2.48.1 | | \--- javax.inject:javax.inject:1 -| +--- com.google.dagger:dagger-lint-aar:2.48 -| +--- com.google.dagger:hilt-core:2.48 -| | +--- com.google.dagger:dagger:2.48 (*) +| +--- com.google.dagger:dagger-lint-aar:2.48.1 +| +--- com.google.dagger:hilt-core:2.48.1 +| | +--- com.google.dagger:dagger:2.48.1 (*) | | +--- com.google.code.findbugs:jsr305:3.0.2 | | \--- javax.inject:javax.inject:1 | +--- com.google.code.findbugs:jsr305:3.0.2 -| +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| +--- androidx.activity:activity:1.5.1 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| +--- androidx.fragment:fragment:1.5.1 -> 1.6.0 (*) +| +--- androidx.fragment:fragment:1.5.1 -> 1.6.2 (*) | +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate:1.2.0 -> 1.2.1 (*) | +--- javax.inject:javax.inject:1 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.0 -> 1.9.10 (*) -+--- androidx.hilt:hilt-navigation-compose:1.0.0 -| +--- androidx.hilt:hilt-navigation:1.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.9.10 (*) ++--- androidx.hilt:hilt-navigation-compose:1.1.0 +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.hilt:hilt-navigation:1.1.0 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.3.2 -> 2.7.3 (*) -| | \--- com.google.dagger:hilt-android:2.35 -> 2.48 (*) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0 -> 2.6.2 +| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.7.5 (*) +| | +--- com.google.dagger:hilt-android:2.48 -> 2.48.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.6.2 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) @@ -842,25 +854,25 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2 (c) | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2 (c) | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) -| +--- androidx.navigation:navigation-compose:2.4.0 -> 2.7.3 -| | +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) -| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-alpha06 (*) +| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.7.5 +| | +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) +| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2 (*) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +--- com.michael-bull.kotlin-result:kotlin-result:1.1.18 | \--- com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) @@ -872,14 +884,14 @@ debugRuntimeClasspath - Runtime classpath of /debug. +--- com.jakewharton.timber:timber:5.0.1 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.9.10 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 -+--- com.mikepenz:aboutlibraries-compose:10.9.0 -| \--- com.mikepenz:aboutlibraries-compose-android:10.9.0 ++--- com.mikepenz:aboutlibraries-compose:10.9.1 +| \--- com.mikepenz:aboutlibraries-compose-android:10.9.1 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.5.1 -| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.12.0 (*) -| +--- com.mikepenz:aboutlibraries-core:10.9.0 -| | \--- com.mikepenz:aboutlibraries-core-android-debug:10.9.0 +| +--- com.mikepenz:aboutlibraries-core:10.9.1 +| | \--- com.mikepenz:aboutlibraries-core-android-debug:10.9.1 | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 @@ -898,85 +910,76 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0 -> 1.9.10 | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | +--- org.jetbrains.compose.runtime:runtime:1.5.1 -| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.ui:ui:1.5.1 -| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.foundation:foundation:1.5.1 -| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.material:material:1.5.1 -| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-beta01 (*) | \--- org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5 (*) -+--- com.mikepenz:aboutlibraries-core:10.9.0 (*) -+--- com.google.accompanist:accompanist-placeholder-material3:0.33.1-alpha -| +--- androidx.compose.material3:material3:1.0.1 -> 1.2.0-alpha08 -| | \--- androidx.compose.material3:material3-android:1.2.0-alpha08 -| | +--- androidx.activity:activity-compose:1.5.0 -> 1.7.2 (*) -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| +--- com.google.accompanist:accompanist-placeholder:0.33.1-alpha -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -+--- com.google.accompanist:accompanist-systemuicontroller:0.33.1-alpha -| +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) ++--- com.mikepenz:aboutlibraries-core:10.9.1 (*) +--- androidx.appcompat:appcompat:1.6.1 (*) -+--- androidx.compose.material:material:1.6.0-alpha06 (*) -+--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 -| \--- androidx.compose.material:material-icons-extended-android:1.6.0-alpha06 -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) ++--- androidx.compose.material:material:1.6.0-beta01 (*) ++--- androidx.compose.material:material-icons-extended:1.6.0-beta01 +| \--- androidx.compose.material:material-icons-extended-android:1.6.0-beta01 +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -+--- androidx.compose.material3:material3:1.2.0-alpha08 (*) -+--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha08 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| +--- androidx.window:window:1.0.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| \--- androidx.compose.material3:material3:1.2.0-alpha08 (c) -+--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -+--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material:material:1.6.0-beta01 (c) +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) ++--- androidx.compose.material3:material3:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-android:1.2.0-alpha11 +| +--- androidx.activity:activity-compose:1.5.0 -> 1.8.1 (*) +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.compose.animation:animation-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-icons-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-ripple:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-text:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 (c) ++--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha11 +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.window:window:1.0.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3:1.2.0-alpha11 (c) ++--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) ++--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -+--- androidx.constraintlayout:constraintlayout-compose:1.0.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10 -> 1.9.10 (*) -| +--- androidx.compose.ui:ui:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| \--- androidx.constraintlayout:constraintlayout-core:1.0.4 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui:1.6.0-beta01 (*) ++--- androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13 +| \--- androidx.constraintlayout:constraintlayout-compose-android:1.1.0-alpha13 +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.collection:collection:1.4.0-alpha01 -> 1.4.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.constraintlayout:constraintlayout-core:1.1.0-alpha13 +| | \--- androidx.annotation:annotation:1.5.0 -> 1.7.0 (*) +| \--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) +--- androidx.core:core-splashscreen:1.0.1 | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.9.10 (*) @@ -995,9 +998,9 @@ debugRuntimeClasspath - Runtime classpath of /debug. | \--- androidx.datastore:datastore-core:1.0.0 (*) +--- androidx.glance:glance-appwidget:1.0.0 | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.7.0 -> 1.12.0 (*) | +--- androidx.core:core-remoteviews:1.0.0 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1011,9 +1014,9 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation-experimental:1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | | +--- androidx.datastore:datastore-core:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences-core:1.0.0 (*) @@ -1062,18 +1065,18 @@ debugRuntimeClasspath - Runtime classpath of /debug. | \--- androidx.glance:glance-material3:1.0.0 (c) +--- androidx.glance:glance-material3:1.0.0 | +--- androidx.annotation:annotation:1.4.0 -> 1.7.0 (*) -| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha08 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha11 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.glance:glance:1.0.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | +--- androidx.glance:glance:1.0.0 (c) | \--- androidx.glance:glance-appwidget:1.0.0 (c) +--- androidx.lifecycle:lifecycle-process:2.6.2 (*) +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-compose:2.7.3 (*) ++--- androidx.navigation:navigation-compose:2.7.5 (*) +--- androidx.paging:paging-compose:3.2.1 -| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.paging:paging-common:3.2.1 | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | +--- androidx.arch.core:core-common:2.2.0 (*) @@ -1086,13 +1089,13 @@ debugRuntimeClasspath - Runtime classpath of /debug. | +--- io.coil-kt:coil-compose-base:2.4.0 | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- com.google.accompanist:accompanist-drawablepainter:0.30.1 -| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) | | +--- io.coil-kt:coil-base:2.4.0 | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.appcompat:appcompat-resources:1.6.1 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) +| | | +--- androidx.collection:collection:1.2.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.exifinterface:exifinterface:1.3.6 | | | | \--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1105,14 +1108,14 @@ debugRuntimeClasspath - Runtime classpath of /debug. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.9.10 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.9.10 (*) | | | \--- com.squareup.okio:okio:3.3.0 (*) -| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-beta01 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | +--- io.coil-kt:coil:2.4.0 | | +--- io.coil-kt:coil-base:2.4.0 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 (*) -+--- com.google.android.material:material:1.9.0 (*) ++--- com.google.android.material:material:1.10.0 (*) +--- com.squareup.okhttp3:logging-interceptor:4.11.0 | +--- com.squareup.okhttp3:okhttp:4.11.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10 -> 1.9.10 (*) diff --git a/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt b/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt index 6443dd4..82933ac 100644 --- a/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/debugUnitTestRuntimeClasspathDependencies.txt @@ -60,21 +60,25 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | \--- com.squareup.curtains:curtains:1.2.4 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 -> 1.9.10 (*) -+--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 -| \--- androidx.compose.ui:ui-tooling-android:1.6.0-alpha06 -| +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 -| | +--- androidx.activity:activity-ktx:1.7.2 -| | | +--- androidx.activity:activity:1.7.2 ++--- androidx.compose.ui:ui-tooling:1.6.0-beta01 +| \--- androidx.compose.ui:ui-tooling-android:1.6.0-beta01 +| +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 +| | +--- androidx.activity:activity-ktx:1.8.1 +| | | +--- androidx.activity:activity:1.8.1 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 | | | | | \--- androidx.annotation:annotation-jvm:1.7.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 -| | | | | \--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 +| | | | | \--- androidx.collection:collection-jvm:1.4.0-beta01 +| | | | | +--- androidx.annotation:annotation:1.7.0 (*) +| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | | +--- androidx.collection:collection-ktx:1.4.0-beta01 (c) +| | | | | \--- androidx.collection:collection-ktx:1.3.0-alpha01 -> 1.4.0-beta01 (c) | | | | +--- androidx.core:core:1.8.0 -> 1.12.0 | | | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | | | +--- androidx.annotation:annotation-experimental:1.3.0 | | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.concurrent:concurrent-futures:1.0.0 -> 1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | \--- com.google.guava:listenablefuture:1.0 @@ -136,7 +140,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) | | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | | \--- androidx.core:core-ktx:1.12.0 (c) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -203,10 +207,10 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | | +--- androidx.tracing:tracing:1.0.0 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | | +--- androidx.activity:activity-compose:1.7.2 (c) -| | | | \--- androidx.activity:activity-ktx:1.7.2 (c) -| | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | +--- androidx.activity:activity-compose:1.8.1 (c) +| | | | \--- androidx.activity:activity-ktx:1.8.1 (c) +| | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 (*) @@ -244,107 +248,107 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) | | | | \--- androidx.savedstate:savedstate:1.2.1 (c) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | +--- androidx.activity:activity:1.7.2 (c) -| | | \--- androidx.activity:activity-compose:1.7.2 (c) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.runtime:runtime-android:1.6.0-alpha06 -| | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | +--- androidx.activity:activity:1.8.1 (c) +| | | \--- androidx.activity:activity-compose:1.8.1 (c) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.runtime:runtime-android:1.6.0-beta01 +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | | \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-alpha06 +| | | +--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | | \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| | | \--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-android:1.6.0-alpha06 -| | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.7.2 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| | | \--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-android:1.6.0-beta01 +| | | +--- androidx.activity:activity-ktx:1.7.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.autofill:autofill:1.0.0 | | | | \--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-alpha06 +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 -| | | | | \--- androidx.compose.ui:ui-util-android:1.6.0-alpha06 +| | | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 +| | | | | \--- androidx.compose.ui:ui-util-android:1.6.0-beta01 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | | \--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) +| | | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | | \--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-alpha06 +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 -| | | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-alpha06 +| | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 +| | | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-beta01 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection-ktx:1.2.0 -| | | | | | +--- androidx.collection:collection:1.2.0 (*) -| | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.9.10 (*) -| | | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | | +--- androidx.collection:collection-ktx:1.2.0 -> 1.4.0-beta01 +| | | | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | | | \--- androidx.collection:collection:1.4.0-beta01 (c) +| | | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-text-android:1.6.0-alpha06 +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-text-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.6.2 | | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -367,16 +371,16 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | | \--- androidx.emoji2:emoji2-views-helper:1.3.0 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | | +--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) @@ -390,148 +394,149 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-alpha06 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-beta01 (c) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | +--- androidx.activity:activity-ktx:1.7.2 (c) -| | \--- androidx.activity:activity:1.7.2 (c) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | +--- androidx.activity:activity-ktx:1.8.1 (c) +| | \--- androidx.activity:activity:1.8.1 (c) | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.animation:animation:1.6.0-alpha06 -| | \--- androidx.compose.animation:animation-android:1.6.0-alpha06 +| +--- androidx.compose.animation:animation:1.6.0-beta01 +| | \--- androidx.compose.animation:animation-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 -| | | \--- androidx.compose.animation:animation-core-android:1.6.0-alpha06 +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 +| | | \--- androidx.compose.animation:animation-core-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | \--- androidx.compose.animation:animation:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 -| | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-alpha06 +| | | \--- androidx.compose.animation:animation:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 +| | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.foundation:foundation:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | \--- androidx.compose.foundation:foundation:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | \--- androidx.compose.animation:animation-core:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.material:material-android:1.6.0-alpha06 +| | \--- androidx.compose.animation:animation-core:1.6.0-beta01 (c) +| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-beta01 +| | \--- androidx.compose.material:material-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 -| | | \--- androidx.compose.foundation:foundation-android:1.6.0-alpha06 +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation:1.6.0-beta01 +| | | \--- androidx.compose.foundation:foundation-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-alpha06 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | | \--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 +| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-beta01 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-ripple-android:1.6.0-alpha06 -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-ripple:1.6.0-beta01 +| | | \--- androidx.compose.material:material-ripple-android:1.6.0-beta01 +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-alpha06 +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-alpha06 +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| \--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -+--- androidx.activity:activity-compose:1.7.2 (*) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| \--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) ++--- androidx.activity:activity-compose:1.8.1 (*) +--- androidx.core:core-ktx:1.12.0 (*) +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-fragment-ktx:2.7.3 -| +--- androidx.navigation:navigation-fragment:2.7.3 -| | +--- androidx.fragment:fragment-ktx:1.6.0 -| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.7.2 (*) -| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) ++--- androidx.navigation:navigation-fragment-ktx:2.7.5 +| +--- androidx.navigation:navigation-fragment:2.7.5 +| | +--- androidx.fragment:fragment-ktx:1.6.2 +| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.8.1 (*) +| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) -| | | +--- androidx.fragment:fragment:1.6.0 -| | | | +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| | | +--- androidx.fragment:fragment:1.6.2 +| | | | +--- androidx.activity:activity:1.7.2 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -566,9 +571,9 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) -| | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | | \--- androidx.fragment:fragment-ktx:1.6.0 (c) +| | | | \--- androidx.fragment:fragment-ktx:1.6.2 (c) | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) @@ -587,16 +592,16 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.6.2 (*) | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | \--- androidx.fragment:fragment:1.6.0 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 -| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.7.2 (*) +| | | \--- androidx.fragment:fragment:1.6.2 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 +| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 +| | | +--- androidx.navigation:navigation-common:2.7.5 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) @@ -605,23 +610,23 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.customview:customview:1.1.0 (*) @@ -630,80 +635,86 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.7.3 (*) | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.core:core:1.3.2 -> 1.12.0 (*) | | | \--- androidx.transition:transition:1.4.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 -| | | +--- androidx.navigation:navigation-common:2.7.3 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) -+--- androidx.navigation:navigation-ui-ktx:2.7.3 -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) -| +--- androidx.navigation:navigation-ui:2.7.3 +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 +| | | +--- androidx.navigation:navigation-common:2.7.5 (*) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) ++--- androidx.navigation:navigation-ui-ktx:2.7.5 +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) +| +--- androidx.navigation:navigation-ui:2.7.5 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) | | +--- androidx.customview:customview:1.1.0 (*) | | +--- androidx.drawerlayout:drawerlayout:1.1.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.2.0 -> 1.12.0 (*) | | | \--- androidx.customview:customview:1.1.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) | | +--- androidx.transition:transition:1.3.0 -> 1.4.1 (*) -| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.9.0 +| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.10.0 +| | | +--- org.jetbrains.kotlin:kotlin-bom:1.8.22 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.10 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 (c) | | | +--- com.google.errorprone:error_prone_annotations:2.15.0 +| | | +--- androidx.activity:activity:1.8.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.1 -| | | | +--- androidx.activity:activity:1.6.0 -> 1.7.2 (*) +| | | +--- androidx.appcompat:appcompat:1.6.1 +| | | | +--- androidx.activity:activity:1.6.0 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | | | +--- androidx.appcompat:appcompat-resources:1.6.1 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.6.0 -> 1.12.0 (*) | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0 | | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | | | | +--- androidx.interpolator:interpolator:1.0.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | \--- androidx.appcompat:appcompat:1.6.1 (c) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.9.0 -> 1.12.0 (*) | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) | | | | +--- androidx.cursoradapter:cursoradapter:1.0.0 @@ -711,11 +722,11 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 (*) | | | | +--- androidx.emoji2:emoji2-views-helper:1.2.0 -> 1.3.0 -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.3.0 (c) -| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.0 (*) +| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 @@ -729,7 +740,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.constraintlayout:constraintlayout:2.0.1 | | | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.1 (*) | | | | +--- androidx.core:core:1.3.1 -> 1.12.0 (*) @@ -738,7 +749,7 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*) | | | +--- androidx.dynamicanimation:dynamicanimation:1.0.0 | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.legacy:legacy-support-core-utils:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) @@ -750,69 +761,70 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | \--- androidx.print:print:1.0.0 | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*) | | | +--- androidx.transition:transition:1.2.0 -> 1.4.1 (*) | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | \--- androidx.viewpager2:viewpager2:1.0.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.1.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 (*) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -+--- com.google.dagger:hilt-android:2.48 -| +--- com.google.dagger:dagger:2.48 ++--- com.google.dagger:hilt-android:2.48.1 +| +--- com.google.dagger:dagger:2.48.1 | | \--- javax.inject:javax.inject:1 -| +--- com.google.dagger:dagger-lint-aar:2.48 -| +--- com.google.dagger:hilt-core:2.48 -| | +--- com.google.dagger:dagger:2.48 (*) +| +--- com.google.dagger:dagger-lint-aar:2.48.1 +| +--- com.google.dagger:hilt-core:2.48.1 +| | +--- com.google.dagger:dagger:2.48.1 (*) | | +--- com.google.code.findbugs:jsr305:3.0.2 | | \--- javax.inject:javax.inject:1 | +--- com.google.code.findbugs:jsr305:3.0.2 -| +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| +--- androidx.activity:activity:1.5.1 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| +--- androidx.fragment:fragment:1.5.1 -> 1.6.0 (*) +| +--- androidx.fragment:fragment:1.5.1 -> 1.6.2 (*) | +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate:1.2.0 -> 1.2.1 (*) | +--- javax.inject:javax.inject:1 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.0 -> 1.9.10 (*) -+--- androidx.hilt:hilt-navigation-compose:1.0.0 -| +--- androidx.hilt:hilt-navigation:1.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.9.10 (*) ++--- androidx.hilt:hilt-navigation-compose:1.1.0 +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.hilt:hilt-navigation:1.1.0 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.3.2 -> 2.7.3 (*) -| | \--- com.google.dagger:hilt-android:2.35 -> 2.48 (*) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0 -> 2.6.2 +| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.7.5 (*) +| | +--- com.google.dagger:hilt-android:2.48 -> 2.48.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.6.2 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) @@ -843,25 +855,25 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2 (c) | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2 (c) | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) -| +--- androidx.navigation:navigation-compose:2.4.0 -> 2.7.3 -| | +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) -| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-alpha06 (*) +| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.7.5 +| | +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) +| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2 (*) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +--- com.michael-bull.kotlin-result:kotlin-result:1.1.18 | \--- com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) @@ -873,14 +885,14 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. +--- com.jakewharton.timber:timber:5.0.1 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.9.10 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 -+--- com.mikepenz:aboutlibraries-compose:10.9.0 -| \--- com.mikepenz:aboutlibraries-compose-android:10.9.0 ++--- com.mikepenz:aboutlibraries-compose:10.9.1 +| \--- com.mikepenz:aboutlibraries-compose-android:10.9.1 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.5.1 -| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.12.0 (*) -| +--- com.mikepenz:aboutlibraries-core:10.9.0 -| | \--- com.mikepenz:aboutlibraries-core-android-debug:10.9.0 +| +--- com.mikepenz:aboutlibraries-core:10.9.1 +| | \--- com.mikepenz:aboutlibraries-core-android-debug:10.9.1 | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 @@ -899,85 +911,76 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0 -> 1.9.10 | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | +--- org.jetbrains.compose.runtime:runtime:1.5.1 -| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.ui:ui:1.5.1 -| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.foundation:foundation:1.5.1 -| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.material:material:1.5.1 -| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-beta01 (*) | \--- org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5 (*) -+--- com.mikepenz:aboutlibraries-core:10.9.0 (*) -+--- com.google.accompanist:accompanist-placeholder-material3:0.33.1-alpha -| +--- androidx.compose.material3:material3:1.0.1 -> 1.2.0-alpha08 -| | \--- androidx.compose.material3:material3-android:1.2.0-alpha08 -| | +--- androidx.activity:activity-compose:1.5.0 -> 1.7.2 (*) -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| +--- com.google.accompanist:accompanist-placeholder:0.33.1-alpha -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -+--- com.google.accompanist:accompanist-systemuicontroller:0.33.1-alpha -| +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) ++--- com.mikepenz:aboutlibraries-core:10.9.1 (*) +--- androidx.appcompat:appcompat:1.6.1 (*) -+--- androidx.compose.material:material:1.6.0-alpha06 (*) -+--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 -| \--- androidx.compose.material:material-icons-extended-android:1.6.0-alpha06 -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) ++--- androidx.compose.material:material:1.6.0-beta01 (*) ++--- androidx.compose.material:material-icons-extended:1.6.0-beta01 +| \--- androidx.compose.material:material-icons-extended-android:1.6.0-beta01 +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -+--- androidx.compose.material3:material3:1.2.0-alpha08 (*) -+--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha08 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| +--- androidx.window:window:1.0.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| \--- androidx.compose.material3:material3:1.2.0-alpha08 (c) -+--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -+--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material:material:1.6.0-beta01 (c) +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) ++--- androidx.compose.material3:material3:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-android:1.2.0-alpha11 +| +--- androidx.activity:activity-compose:1.5.0 -> 1.8.1 (*) +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.compose.animation:animation-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-icons-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-ripple:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-text:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 (c) ++--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha11 +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.window:window:1.0.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3:1.2.0-alpha11 (c) ++--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) ++--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -+--- androidx.constraintlayout:constraintlayout-compose:1.0.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10 -> 1.9.10 (*) -| +--- androidx.compose.ui:ui:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| \--- androidx.constraintlayout:constraintlayout-core:1.0.4 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui:1.6.0-beta01 (*) ++--- androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13 +| \--- androidx.constraintlayout:constraintlayout-compose-android:1.1.0-alpha13 +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.collection:collection:1.4.0-alpha01 -> 1.4.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.constraintlayout:constraintlayout-core:1.1.0-alpha13 +| | \--- androidx.annotation:annotation:1.5.0 -> 1.7.0 (*) +| \--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) +--- androidx.core:core-splashscreen:1.0.1 | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.9.10 (*) @@ -996,9 +999,9 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | \--- androidx.datastore:datastore-core:1.0.0 (*) +--- androidx.glance:glance-appwidget:1.0.0 | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.7.0 -> 1.12.0 (*) | +--- androidx.core:core-remoteviews:1.0.0 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1012,9 +1015,9 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation-experimental:1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | | +--- androidx.datastore:datastore-core:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences-core:1.0.0 (*) @@ -1063,18 +1066,18 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | \--- androidx.glance:glance-material3:1.0.0 (c) +--- androidx.glance:glance-material3:1.0.0 | +--- androidx.annotation:annotation:1.4.0 -> 1.7.0 (*) -| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha08 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha11 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.glance:glance:1.0.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | +--- androidx.glance:glance:1.0.0 (c) | \--- androidx.glance:glance-appwidget:1.0.0 (c) +--- androidx.lifecycle:lifecycle-process:2.6.2 (*) +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-compose:2.7.3 (*) ++--- androidx.navigation:navigation-compose:2.7.5 (*) +--- androidx.paging:paging-compose:3.2.1 -| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.paging:paging-common:3.2.1 | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | +--- androidx.arch.core:core-common:2.2.0 (*) @@ -1087,13 +1090,13 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | +--- io.coil-kt:coil-compose-base:2.4.0 | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- com.google.accompanist:accompanist-drawablepainter:0.30.1 -| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) | | +--- io.coil-kt:coil-base:2.4.0 | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.appcompat:appcompat-resources:1.6.1 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) +| | | +--- androidx.collection:collection:1.2.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.exifinterface:exifinterface:1.3.6 | | | | \--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1106,14 +1109,14 @@ debugUnitTestRuntimeClasspath - Runtime classpath of /debugUnitTest. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.9.10 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.9.10 (*) | | | \--- com.squareup.okio:okio:3.3.0 (*) -| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-beta01 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | +--- io.coil-kt:coil:2.4.0 | | +--- io.coil-kt:coil-base:2.4.0 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 (*) -+--- com.google.android.material:material:1.9.0 (*) ++--- com.google.android.material:material:1.10.0 (*) +--- com.squareup.okhttp3:logging-interceptor:4.11.0 | +--- com.squareup.okhttp3:okhttp:4.11.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10 -> 1.9.10 (*) diff --git a/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt b/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt index 2789f3f..cf8f6d0 100644 --- a/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/releaseRuntimeClasspathDependencies.txt @@ -10,19 +10,23 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | \--- org.jetbrains:annotations:13.0 -> 23.0.0 | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.10 (*) -+--- androidx.activity:activity-compose:1.7.2 -| +--- androidx.activity:activity-ktx:1.7.2 -| | +--- androidx.activity:activity:1.7.2 ++--- androidx.activity:activity-compose:1.8.1 +| +--- androidx.activity:activity-ktx:1.8.1 +| | +--- androidx.activity:activity:1.8.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 | | | | \--- androidx.annotation:annotation-jvm:1.7.0 | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 -| | | | \--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 +| | | | \--- androidx.collection:collection-jvm:1.4.0-beta01 +| | | | +--- androidx.annotation:annotation:1.7.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | +--- androidx.collection:collection-ktx:1.4.0-beta01 (c) +| | | | \--- androidx.collection:collection-ktx:1.3.0-alpha01 -> 1.4.0-beta01 (c) | | | +--- androidx.core:core:1.8.0 -> 1.12.0 | | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.3.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.concurrent:concurrent-futures:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | \--- com.google.guava:listenablefuture:1.0 @@ -84,7 +88,7 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | \--- androidx.core:core-ktx:1.12.0 (c) | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -151,10 +155,10 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | +--- androidx.tracing:tracing:1.0.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | +--- androidx.activity:activity-compose:1.7.2 (c) -| | | \--- androidx.activity:activity-ktx:1.7.2 (c) -| | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | +--- androidx.activity:activity-compose:1.8.1 (c) +| | | \--- androidx.activity:activity-ktx:1.8.1 (c) +| | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.6.2 | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 (*) @@ -192,107 +196,107 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) | | | \--- androidx.savedstate:savedstate:1.2.1 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | +--- androidx.activity:activity:1.7.2 (c) -| | \--- androidx.activity:activity-compose:1.7.2 (c) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.runtime:runtime-android:1.6.0-alpha06 -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | +--- androidx.activity:activity:1.8.1 (c) +| | \--- androidx.activity:activity-compose:1.8.1 (c) +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.runtime:runtime-android:1.6.0-beta01 +| | +--- androidx.collection:collection:1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | +--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-alpha06 +| | +--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) +| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| | \--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-android:1.6.0-alpha06 -| | +--- androidx.activity:activity-ktx:1.7.0 -> 1.7.2 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| | \--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.ui:ui-android:1.6.0-beta01 +| | +--- androidx.activity:activity-ktx:1.7.0 -> 1.8.1 (*) | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | +--- androidx.autofill:autofill:1.0.0 | | | \--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | +--- androidx.collection:collection:1.2.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-alpha06 +| | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-util-android:1.6.0-alpha06 +| | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-util-android:1.6.0-beta01 | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-alpha06 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-alpha06 +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.2.0 -| | | | | +--- androidx.collection:collection:1.2.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.9.10 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection-ktx:1.2.0 -> 1.4.0-beta01 +| | | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | | \--- androidx.collection:collection:1.4.0-beta01 (c) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-text-android:1.6.0-alpha06 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-text-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.6.2 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -315,16 +319,16 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | \--- androidx.emoji2:emoji2-views-helper:1.3.0 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | +--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) @@ -338,32 +342,32 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-alpha06 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-beta01 (c) | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| +--- androidx.activity:activity-ktx:1.7.2 (c) -| \--- androidx.activity:activity:1.7.2 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.activity:activity-ktx:1.8.1 (c) +| \--- androidx.activity:activity:1.8.1 (c) +--- androidx.core:core-ktx:1.12.0 (*) +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-fragment-ktx:2.7.3 -| +--- androidx.navigation:navigation-fragment:2.7.3 -| | +--- androidx.fragment:fragment-ktx:1.6.0 -| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.7.2 (*) -| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) ++--- androidx.navigation:navigation-fragment-ktx:2.7.5 +| +--- androidx.navigation:navigation-fragment:2.7.5 +| | +--- androidx.fragment:fragment-ktx:1.6.2 +| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.8.1 (*) +| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) -| | | +--- androidx.fragment:fragment:1.6.0 -| | | | +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| | | +--- androidx.fragment:fragment:1.6.2 +| | | | +--- androidx.activity:activity:1.7.2 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -398,9 +402,9 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) -| | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | | \--- androidx.fragment:fragment-ktx:1.6.0 (c) +| | | | \--- androidx.fragment:fragment-ktx:1.6.2 (c) | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) @@ -419,16 +423,16 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.6.2 (*) | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | \--- androidx.fragment:fragment:1.6.0 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 -| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.7.2 (*) +| | | \--- androidx.fragment:fragment:1.6.2 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 +| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 +| | | +--- androidx.navigation:navigation-common:2.7.5 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) @@ -437,23 +441,23 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.customview:customview:1.1.0 (*) @@ -462,80 +466,86 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.7.3 (*) | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.core:core:1.3.2 -> 1.12.0 (*) | | | \--- androidx.transition:transition:1.4.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 -| | | +--- androidx.navigation:navigation-common:2.7.3 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) -+--- androidx.navigation:navigation-ui-ktx:2.7.3 -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) -| +--- androidx.navigation:navigation-ui:2.7.3 +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 +| | | +--- androidx.navigation:navigation-common:2.7.5 (*) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) ++--- androidx.navigation:navigation-ui-ktx:2.7.5 +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) +| +--- androidx.navigation:navigation-ui:2.7.5 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) | | +--- androidx.customview:customview:1.1.0 (*) | | +--- androidx.drawerlayout:drawerlayout:1.1.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.2.0 -> 1.12.0 (*) | | | \--- androidx.customview:customview:1.1.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) | | +--- androidx.transition:transition:1.3.0 -> 1.4.1 (*) -| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.9.0 +| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.10.0 +| | | +--- org.jetbrains.kotlin:kotlin-bom:1.8.22 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.10 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 (c) | | | +--- com.google.errorprone:error_prone_annotations:2.15.0 +| | | +--- androidx.activity:activity:1.8.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.1 -| | | | +--- androidx.activity:activity:1.6.0 -> 1.7.2 (*) +| | | +--- androidx.appcompat:appcompat:1.6.1 +| | | | +--- androidx.activity:activity:1.6.0 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | | | +--- androidx.appcompat:appcompat-resources:1.6.1 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.6.0 -> 1.12.0 (*) | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0 | | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | | | | +--- androidx.interpolator:interpolator:1.0.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | \--- androidx.appcompat:appcompat:1.6.1 (c) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.9.0 -> 1.12.0 (*) | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) | | | | +--- androidx.cursoradapter:cursoradapter:1.0.0 @@ -543,11 +553,11 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 (*) | | | | +--- androidx.emoji2:emoji2-views-helper:1.2.0 -> 1.3.0 -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.3.0 (c) -| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.0 (*) +| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 @@ -561,7 +571,7 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.constraintlayout:constraintlayout:2.0.1 | | | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.1 (*) | | | | +--- androidx.core:core:1.3.1 -> 1.12.0 (*) @@ -570,7 +580,7 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*) | | | +--- androidx.dynamicanimation:dynamicanimation:1.0.0 | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.legacy:legacy-support-core-utils:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) @@ -582,69 +592,70 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | \--- androidx.print:print:1.0.0 | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*) | | | +--- androidx.transition:transition:1.2.0 -> 1.4.1 (*) | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | \--- androidx.viewpager2:viewpager2:1.0.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.1.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 (*) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -+--- com.google.dagger:hilt-android:2.48 -| +--- com.google.dagger:dagger:2.48 ++--- com.google.dagger:hilt-android:2.48.1 +| +--- com.google.dagger:dagger:2.48.1 | | \--- javax.inject:javax.inject:1 -| +--- com.google.dagger:dagger-lint-aar:2.48 -| +--- com.google.dagger:hilt-core:2.48 -| | +--- com.google.dagger:dagger:2.48 (*) +| +--- com.google.dagger:dagger-lint-aar:2.48.1 +| +--- com.google.dagger:hilt-core:2.48.1 +| | +--- com.google.dagger:dagger:2.48.1 (*) | | +--- com.google.code.findbugs:jsr305:3.0.2 | | \--- javax.inject:javax.inject:1 | +--- com.google.code.findbugs:jsr305:3.0.2 -| +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| +--- androidx.activity:activity:1.5.1 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| +--- androidx.fragment:fragment:1.5.1 -> 1.6.0 (*) +| +--- androidx.fragment:fragment:1.5.1 -> 1.6.2 (*) | +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate:1.2.0 -> 1.2.1 (*) | +--- javax.inject:javax.inject:1 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.0 -> 1.9.10 (*) -+--- androidx.hilt:hilt-navigation-compose:1.0.0 -| +--- androidx.hilt:hilt-navigation:1.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.9.10 (*) ++--- androidx.hilt:hilt-navigation-compose:1.1.0 +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.hilt:hilt-navigation:1.1.0 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.3.2 -> 2.7.3 (*) -| | \--- com.google.dagger:hilt-android:2.35 -> 2.48 (*) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0 -> 2.6.2 +| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.7.5 (*) +| | +--- com.google.dagger:hilt-android:2.48 -> 2.48.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.6.2 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) @@ -675,53 +686,54 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2 (c) | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2 (c) | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) -| +--- androidx.navigation:navigation-compose:2.4.0 -> 2.7.3 -| | +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) -| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.animation:animation-android:1.6.0-alpha06 +| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.7.5 +| | +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) +| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.animation:animation-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 -| | | | \--- androidx.compose.animation:animation-core-android:1.6.0-alpha06 +| | | +--- androidx.compose.animation:animation-core:1.6.0-beta01 +| | | | \--- androidx.compose.animation:animation-core-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | | \--- androidx.compose.animation:animation:1.6.0-alpha06 (c) -| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 -| | | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-alpha06 +| | | | \--- androidx.compose.animation:animation:1.6.0-beta01 (c) +| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 +| | | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-alpha06 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | \--- androidx.compose.foundation:foundation:1.6.0-alpha06 (c) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | \--- androidx.compose.foundation:foundation:1.6.0-beta01 (c) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.animation:animation-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-alpha06 (*) +| | | \--- androidx.compose.animation:animation-core:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2 (*) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +--- com.michael-bull.kotlin-result:kotlin-result:1.1.18 | \--- com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) @@ -733,25 +745,25 @@ releaseRuntimeClasspath - Runtime classpath of /release. +--- com.jakewharton.timber:timber:5.0.1 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.9.10 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 -+--- com.mikepenz:aboutlibraries-compose:10.9.0 -| \--- com.mikepenz:aboutlibraries-compose-android:10.9.0 ++--- com.mikepenz:aboutlibraries-compose:10.9.1 +| \--- com.mikepenz:aboutlibraries-compose-android:10.9.1 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.5.1 -| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-alpha06 +| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) | +--- androidx.core:core-ktx:1.12.0 (*) -| +--- com.mikepenz:aboutlibraries-core:10.9.0 -| | \--- com.mikepenz:aboutlibraries-core-android:10.9.0 +| +--- com.mikepenz:aboutlibraries-core:10.9.1 +| | \--- com.mikepenz:aboutlibraries-core-android:10.9.1 | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 @@ -770,164 +782,155 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0 -> 1.9.10 | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | +--- org.jetbrains.compose.runtime:runtime:1.5.1 -| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.ui:ui:1.5.1 -| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.foundation:foundation:1.5.1 -| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.foundation:foundation-android:1.6.0-alpha06 +| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.foundation:foundation-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | \--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (c) +| | \--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (c) | +--- org.jetbrains.compose.material:material:1.5.1 -| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.material:material-android:1.6.0-alpha06 +| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.material:material-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-alpha06 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 +| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-beta01 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-ripple-android:1.6.0-alpha06 -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-ripple:1.6.0-beta01 +| | | \--- androidx.compose.material:material-ripple-android:1.6.0-beta01 +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) | \--- org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5 (*) -+--- com.mikepenz:aboutlibraries-core:10.9.0 (*) -+--- com.google.accompanist:accompanist-placeholder-material3:0.33.1-alpha -| +--- androidx.compose.material3:material3:1.0.1 -> 1.2.0-alpha08 -| | \--- androidx.compose.material3:material3-android:1.2.0-alpha08 -| | +--- androidx.activity:activity-compose:1.5.0 -> 1.7.2 (*) -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| +--- com.google.accompanist:accompanist-placeholder:0.33.1-alpha -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -+--- com.google.accompanist:accompanist-systemuicontroller:0.33.1-alpha -| +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) ++--- com.mikepenz:aboutlibraries-core:10.9.1 (*) +--- androidx.appcompat:appcompat:1.6.1 (*) -+--- androidx.compose.material:material:1.6.0-alpha06 (*) -+--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 -| \--- androidx.compose.material:material-icons-extended-android:1.6.0-alpha06 -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) ++--- androidx.compose.material:material:1.6.0-beta01 (*) ++--- androidx.compose.material:material-icons-extended:1.6.0-beta01 +| \--- androidx.compose.material:material-icons-extended-android:1.6.0-beta01 +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -+--- androidx.compose.material3:material3:1.2.0-alpha08 (*) -+--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha08 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| +--- androidx.window:window:1.0.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| \--- androidx.compose.material3:material3:1.2.0-alpha08 (c) -+--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -+--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material:material:1.6.0-beta01 (c) +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) ++--- androidx.compose.material3:material3:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-android:1.2.0-alpha11 +| +--- androidx.activity:activity-compose:1.5.0 -> 1.8.1 (*) +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.compose.animation:animation-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-icons-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-ripple:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-text:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 (c) ++--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha11 +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.window:window:1.0.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3:1.2.0-alpha11 (c) ++--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) ++--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 -| \--- androidx.compose.ui:ui-tooling-android:1.6.0-alpha06 -| +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui-tooling:1.6.0-beta01 +| \--- androidx.compose.ui:ui-tooling-android:1.6.0-beta01 +| +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-alpha06 +| +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| \--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -+--- androidx.constraintlayout:constraintlayout-compose:1.0.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10 -> 1.9.10 (*) -| +--- androidx.compose.ui:ui:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| \--- androidx.constraintlayout:constraintlayout-core:1.0.4 +| +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| \--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui:1.6.0-beta01 (*) ++--- androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13 +| \--- androidx.constraintlayout:constraintlayout-compose-android:1.1.0-alpha13 +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.collection:collection:1.4.0-alpha01 -> 1.4.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.constraintlayout:constraintlayout-core:1.1.0-alpha13 +| | \--- androidx.annotation:annotation:1.5.0 -> 1.7.0 (*) +| \--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) +--- androidx.core:core-splashscreen:1.0.1 | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.9.10 (*) @@ -946,9 +949,9 @@ releaseRuntimeClasspath - Runtime classpath of /release. | \--- androidx.datastore:datastore-core:1.0.0 (*) +--- androidx.glance:glance-appwidget:1.0.0 | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.7.0 -> 1.12.0 (*) | +--- androidx.core:core-remoteviews:1.0.0 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -962,9 +965,9 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation-experimental:1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | | +--- androidx.datastore:datastore-core:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences-core:1.0.0 (*) @@ -1013,18 +1016,18 @@ releaseRuntimeClasspath - Runtime classpath of /release. | \--- androidx.glance:glance-material3:1.0.0 (c) +--- androidx.glance:glance-material3:1.0.0 | +--- androidx.annotation:annotation:1.4.0 -> 1.7.0 (*) -| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha08 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha11 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.glance:glance:1.0.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | +--- androidx.glance:glance:1.0.0 (c) | \--- androidx.glance:glance-appwidget:1.0.0 (c) +--- androidx.lifecycle:lifecycle-process:2.6.2 (*) +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-compose:2.7.3 (*) ++--- androidx.navigation:navigation-compose:2.7.5 (*) +--- androidx.paging:paging-compose:3.2.1 -| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.paging:paging-common:3.2.1 | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | +--- androidx.arch.core:core-common:2.2.0 (*) @@ -1037,13 +1040,13 @@ releaseRuntimeClasspath - Runtime classpath of /release. | +--- io.coil-kt:coil-compose-base:2.4.0 | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- com.google.accompanist:accompanist-drawablepainter:0.30.1 -| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) | | +--- io.coil-kt:coil-base:2.4.0 | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.appcompat:appcompat-resources:1.6.1 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) +| | | +--- androidx.collection:collection:1.2.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.exifinterface:exifinterface:1.3.6 | | | | \--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1059,14 +1062,14 @@ releaseRuntimeClasspath - Runtime classpath of /release. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.9.10 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.9.10 (*) | | | \--- com.squareup.okio:okio:3.3.0 (*) -| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-beta01 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | +--- io.coil-kt:coil:2.4.0 | | +--- io.coil-kt:coil-base:2.4.0 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 (*) -+--- com.google.android.material:material:1.9.0 (*) ++--- com.google.android.material:material:1.10.0 (*) +--- com.squareup.okhttp3:logging-interceptor:4.11.0 | +--- com.squareup.okhttp3:okhttp:4.11.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10 -> 1.9.10 (*) diff --git a/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt b/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt index d0e53aa..c682fdf 100644 --- a/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt +++ b/app/versions/dependencies/releaseUnitTestRuntimeClasspathDependencies.txt @@ -15,19 +15,23 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.10 (*) -+--- androidx.activity:activity-compose:1.7.2 -| +--- androidx.activity:activity-ktx:1.7.2 -| | +--- androidx.activity:activity:1.7.2 ++--- androidx.activity:activity-compose:1.8.1 +| +--- androidx.activity:activity-ktx:1.8.1 +| | +--- androidx.activity:activity:1.8.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 | | | | \--- androidx.annotation:annotation-jvm:1.7.0 | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 -| | | | \--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 +| | | | \--- androidx.collection:collection-jvm:1.4.0-beta01 +| | | | +--- androidx.annotation:annotation:1.7.0 (*) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | | +--- androidx.collection:collection-ktx:1.4.0-beta01 (c) +| | | | \--- androidx.collection:collection-ktx:1.3.0-alpha01 -> 1.4.0-beta01 (c) | | | +--- androidx.core:core:1.8.0 -> 1.12.0 | | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.3.0 | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.10 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.concurrent:concurrent-futures:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | \--- com.google.guava:listenablefuture:1.0 @@ -89,7 +93,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) | | | | +--- androidx.versionedparcelable:versionedparcelable:1.1.1 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | \--- androidx.core:core-ktx:1.12.0 (c) | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -156,10 +160,10 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | +--- androidx.tracing:tracing:1.0.0 (*) -| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | | +--- androidx.activity:activity-compose:1.7.2 (c) -| | | \--- androidx.activity:activity-ktx:1.7.2 (c) -| | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) +| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | | +--- androidx.activity:activity-compose:1.8.1 (c) +| | | \--- androidx.activity:activity-ktx:1.8.1 (c) +| | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.6.2 | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.2 (*) @@ -197,107 +201,107 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) | | | \--- androidx.savedstate:savedstate:1.2.1 (c) -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| | +--- androidx.activity:activity:1.7.2 (c) -| | \--- androidx.activity:activity-compose:1.7.2 (c) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.runtime:runtime-android:1.6.0-alpha06 -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| | +--- androidx.activity:activity:1.8.1 (c) +| | \--- androidx.activity:activity-compose:1.8.1 (c) +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.runtime:runtime-android:1.6.0-beta01 +| | +--- androidx.collection:collection:1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | +--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| | \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-alpha06 +| | +--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| | \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) +| +--- androidx.compose.runtime:runtime-saveable:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.runtime:runtime-saveable-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| | \--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-android:1.6.0-alpha06 -| | +--- androidx.activity:activity-ktx:1.7.0 -> 1.7.2 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| | \--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 +| | \--- androidx.compose.ui:ui-android:1.6.0-beta01 +| | +--- androidx.activity:activity-ktx:1.7.0 -> 1.8.1 (*) | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | +--- androidx.autofill:autofill:1.0.0 | | | \--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | +--- androidx.collection:collection:1.2.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-alpha06 +| | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-geometry-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-util-android:1.6.0-alpha06 +| | | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-util-android:1.6.0-beta01 | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-alpha06 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-graphics-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.7.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 -| | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-alpha06 +| | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 +| | | | \--- androidx.compose.ui:ui-unit-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.2.0 -| | | | | +--- androidx.collection:collection:1.2.0 (*) -| | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.31 -> 1.9.10 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection-ktx:1.2.0 -> 1.4.0-beta01 +| | | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | | \--- androidx.collection:collection:1.4.0-beta01 (c) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 -| | | \--- androidx.compose.ui:ui-text-android:1.6.0-alpha06 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 +| | | \--- androidx.compose.ui:ui-text-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.6.2 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -320,16 +324,16 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | \--- androidx.emoji2:emoji2-views-helper:1.3.0 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | +--- androidx.customview:customview-poolingcontainer:1.0.0 | | | +--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) @@ -343,32 +347,32 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1 -> 1.7.3 (*) | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-alpha06 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| | \--- androidx.compose.foundation:foundation:1.4.0 -> 1.6.0-beta01 (c) | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) -| +--- androidx.activity:activity-ktx:1.7.2 (c) -| \--- androidx.activity:activity:1.7.2 (c) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.activity:activity-ktx:1.8.1 (c) +| \--- androidx.activity:activity:1.8.1 (c) +--- androidx.core:core-ktx:1.12.0 (*) +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-fragment-ktx:2.7.3 -| +--- androidx.navigation:navigation-fragment:2.7.3 -| | +--- androidx.fragment:fragment-ktx:1.6.0 -| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.7.2 (*) -| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) ++--- androidx.navigation:navigation-fragment-ktx:2.7.5 +| +--- androidx.navigation:navigation-fragment:2.7.5 +| | +--- androidx.fragment:fragment-ktx:1.6.2 +| | | +--- androidx.activity:activity-ktx:1.5.1 -> 1.8.1 (*) +| | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) -| | | +--- androidx.fragment:fragment:1.6.0 -| | | | +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| | | +--- androidx.fragment:fragment:1.6.2 +| | | | +--- androidx.activity:activity:1.7.2 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.2.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) @@ -403,9 +407,9 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | | \--- androidx.customview:customview:1.0.0 -> 1.1.0 | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) -| | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | | \--- androidx.fragment:fragment-ktx:1.6.0 (c) +| | | | \--- androidx.fragment:fragment-ktx:1.6.2 (c) | | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.1 -> 2.6.2 | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.6.2 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.10 -> 1.9.10 (*) @@ -424,16 +428,16 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.6.2 (*) | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 1.9.10 (*) -| | | \--- androidx.fragment:fragment:1.6.0 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 -| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.7.2 (*) +| | | \--- androidx.fragment:fragment:1.6.2 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 +| | | +--- androidx.activity:activity-ktx:1.7.1 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 +| | | +--- androidx.navigation:navigation-common:2.7.5 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection-ktx:1.1.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core-ktx:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.2 (*) @@ -442,23 +446,23 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | +--- androidx.profileinstaller:profileinstaller:1.3.0 -> 1.3.1 (*) | | | | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) | | +--- androidx.slidingpanelayout:slidingpanelayout:1.2.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.customview:customview:1.1.0 (*) @@ -467,80 +471,86 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 -> 1.7.3 (*) | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.core:core:1.3.2 -> 1.12.0 (*) | | | \--- androidx.transition:transition:1.4.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 -| | | +--- androidx.navigation:navigation-common:2.7.3 (*) -| | | +--- androidx.navigation:navigation-common:2.7.3 (c) -| | | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | | \--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) -+--- androidx.navigation:navigation-ui-ktx:2.7.3 -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) -| +--- androidx.navigation:navigation-ui:2.7.3 +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 +| | | +--- androidx.navigation:navigation-common:2.7.5 (*) +| | | +--- androidx.navigation:navigation-common:2.7.5 (c) +| | | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | | \--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) ++--- androidx.navigation:navigation-ui-ktx:2.7.5 +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) +| +--- androidx.navigation:navigation-ui:2.7.5 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) | | +--- androidx.customview:customview:1.1.0 (*) | | +--- androidx.drawerlayout:drawerlayout:1.1.1 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.core:core:1.2.0 -> 1.12.0 (*) | | | \--- androidx.customview:customview:1.1.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (*) | | +--- androidx.transition:transition:1.3.0 -> 1.4.1 (*) -| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.9.0 +| | +--- com.google.android.material:material:1.4.0-beta01 -> 1.10.0 +| | | +--- org.jetbrains.kotlin:kotlin-bom:1.8.22 +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22 -> 1.9.10 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22 -> 1.9.10 (c) +| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 (c) | | | +--- com.google.errorprone:error_prone_annotations:2.15.0 +| | | +--- androidx.activity:activity:1.8.0 -> 1.8.1 (*) | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | +--- androidx.appcompat:appcompat:1.5.0 -> 1.6.1 -| | | | +--- androidx.activity:activity:1.6.0 -> 1.7.2 (*) +| | | +--- androidx.appcompat:appcompat:1.6.1 +| | | | +--- androidx.activity:activity:1.6.0 -> 1.8.1 (*) | | | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | | | +--- androidx.appcompat:appcompat-resources:1.6.1 | | | | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.6.0 -> 1.12.0 (*) | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 | | | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.vectordrawable:vectordrawable-animated:1.1.0 | | | | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | | | | +--- androidx.interpolator:interpolator:1.0.0 (*) -| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | \--- androidx.appcompat:appcompat:1.6.1 (c) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | +--- androidx.core:core:1.9.0 -> 1.12.0 (*) | | | | +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) | | | | +--- androidx.cursoradapter:cursoradapter:1.0.0 @@ -548,11 +558,11 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | +--- androidx.drawerlayout:drawerlayout:1.0.0 -> 1.1.1 (*) | | | | +--- androidx.emoji2:emoji2:1.2.0 -> 1.3.0 (*) | | | | +--- androidx.emoji2:emoji2-views-helper:1.2.0 -> 1.3.0 -| | | | | +--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) +| | | | | +--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) | | | | | +--- androidx.core:core:1.3.0 -> 1.12.0 (*) | | | | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | | | | \--- androidx.emoji2:emoji2:1.3.0 (c) -| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.0 (*) +| | | | +--- androidx.fragment:fragment:1.3.6 -> 1.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-runtime:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | | | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 @@ -566,7 +576,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | +--- androidx.constraintlayout:constraintlayout:2.0.1 | | | | +--- androidx.appcompat:appcompat:1.2.0 -> 1.6.1 (*) | | | | +--- androidx.core:core:1.3.1 -> 1.12.0 (*) @@ -575,7 +585,7 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | +--- androidx.drawerlayout:drawerlayout:1.1.1 (*) | | | +--- androidx.dynamicanimation:dynamicanimation:1.0.0 | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) -| | | | +--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | +--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) | | | | \--- androidx.legacy:legacy-support-core-utils:1.0.0 | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.0.0 -> 1.12.0 (*) @@ -587,69 +597,70 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | \--- androidx.print:print:1.0.0 | | | | \--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*) | | | +--- androidx.annotation:annotation-experimental:1.0.0 -> 1.3.0 (*) -| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.2.5 -> 1.6.2 (*) | | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) | | | | +--- androidx.customview:customview:1.0.0 -> 1.1.0 (*) -| | | | \--- androidx.collection:collection:1.0.0 -> 1.2.0 (*) +| | | | \--- androidx.collection:collection:1.0.0 -> 1.4.0-beta01 (*) +| | | +--- androidx.resourceinspection:resourceinspection-annotation:1.0.1 (*) | | | +--- androidx.transition:transition:1.2.0 -> 1.4.1 (*) | | | +--- androidx.vectordrawable:vectordrawable:1.1.0 (*) | | | \--- androidx.viewpager2:viewpager2:1.0.0 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.0 (*) +| | | +--- androidx.fragment:fragment:1.1.0 -> 1.6.2 (*) | | | +--- androidx.recyclerview:recyclerview:1.1.0 (*) | | | +--- androidx.core:core:1.1.0 -> 1.12.0 (*) -| | | \--- androidx.collection:collection:1.1.0 -> 1.2.0 (*) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-compose:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| +--- androidx.navigation:navigation-compose:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| +--- androidx.navigation:navigation-ui:2.7.3 (c) -| +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| \--- androidx.navigation:navigation-common:2.7.3 (c) +| | | \--- androidx.collection:collection:1.1.0 -> 1.4.0-beta01 (*) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-compose:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| +--- androidx.navigation:navigation-compose:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| +--- androidx.navigation:navigation-ui:2.7.5 (c) +| +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| \--- androidx.navigation:navigation-common:2.7.5 (c) +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3 (*) +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 (*) -+--- com.google.dagger:hilt-android:2.48 -| +--- com.google.dagger:dagger:2.48 ++--- com.google.dagger:hilt-android:2.48.1 +| +--- com.google.dagger:dagger:2.48.1 | | \--- javax.inject:javax.inject:1 -| +--- com.google.dagger:dagger-lint-aar:2.48 -| +--- com.google.dagger:hilt-core:2.48 -| | +--- com.google.dagger:dagger:2.48 (*) +| +--- com.google.dagger:dagger-lint-aar:2.48.1 +| +--- com.google.dagger:hilt-core:2.48.1 +| | +--- com.google.dagger:dagger:2.48.1 (*) | | +--- com.google.code.findbugs:jsr305:3.0.2 | | \--- javax.inject:javax.inject:1 | +--- com.google.code.findbugs:jsr305:3.0.2 -| +--- androidx.activity:activity:1.5.1 -> 1.7.2 (*) +| +--- androidx.activity:activity:1.5.1 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| +--- androidx.fragment:fragment:1.5.1 -> 1.6.0 (*) +| +--- androidx.fragment:fragment:1.5.1 -> 1.6.2 (*) | +--- androidx.lifecycle:lifecycle-common:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel:2.5.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.5.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate:1.2.0 -> 1.2.1 (*) | +--- javax.inject:javax.inject:1 | \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.0 -> 1.9.10 (*) -+--- androidx.hilt:hilt-navigation-compose:1.0.0 -| +--- androidx.hilt:hilt-navigation:1.0.0 -| | +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 1.9.10 (*) ++--- androidx.hilt:hilt-navigation-compose:1.1.0 +| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) +| +--- androidx.hilt:hilt-navigation:1.1.0 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.navigation:navigation-runtime:2.3.2 -> 2.7.3 (*) -| | \--- com.google.dagger:hilt-android:2.35 -> 2.48 (*) -| +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) -| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0 -> 2.6.2 +| | +--- androidx.navigation:navigation-runtime:2.5.1 -> 2.7.5 (*) +| | +--- com.google.dagger:hilt-android:2.48 -> 2.48.1 (*) +| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1 -> 2.6.2 | | +--- androidx.annotation:annotation-experimental:1.1.0 -> 1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.0.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.0.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-common-java8:2.6.2 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | | +--- androidx.lifecycle:lifecycle-common:2.6.2 (*) @@ -680,53 +691,54 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2 (c) | | +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.6.2 (c) | | \--- androidx.lifecycle:lifecycle-service:2.6.2 (c) -| +--- androidx.navigation:navigation-compose:2.4.0 -> 2.7.3 -| | +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) -| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-alpha06 -| | | \--- androidx.compose.animation:animation-android:1.6.0-alpha06 +| +--- androidx.navigation:navigation-compose:2.5.1 -> 2.7.5 +| | +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) +| | +--- androidx.compose.animation:animation:1.5.1 -> 1.6.0-beta01 +| | | \--- androidx.compose.animation:animation-android:1.6.0-beta01 | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 -| | | | \--- androidx.compose.animation:animation-core-android:1.6.0-alpha06 +| | | +--- androidx.compose.animation:animation-core:1.6.0-beta01 +| | | | \--- androidx.compose.animation:animation-core-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.collection:collection:1.4.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1 -> 1.7.3 (*) -| | | | \--- androidx.compose.animation:animation:1.6.0-alpha06 (c) -| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 -| | | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-alpha06 +| | | | \--- androidx.compose.animation:animation:1.6.0-beta01 (c) +| | | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 +| | | | \--- androidx.compose.foundation:foundation-layout-android:1.6.0-beta01 | | | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-alpha06 (*) -| | | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | +--- androidx.compose.animation:animation-core:1.2.1 -> 1.6.0-beta01 (*) +| | | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | | +--- androidx.core:core:1.7.0 -> 1.12.0 (*) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | | \--- androidx.compose.foundation:foundation:1.6.0-alpha06 (c) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | | \--- androidx.compose.foundation:foundation:1.6.0-beta01 (c) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | | \--- androidx.compose.animation:animation-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-alpha06 (*) +| | | \--- androidx.compose.animation:animation-core:1.6.0-beta01 (c) +| | +--- androidx.compose.foundation:foundation-layout:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime-saveable:1.5.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.5.1 -> 1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2 (*) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (*) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.navigation:navigation-fragment:2.7.3 (c) -| | +--- androidx.navigation:navigation-fragment-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui:2.7.3 (c) -| | +--- androidx.navigation:navigation-ui-ktx:2.7.3 (c) -| | +--- androidx.navigation:navigation-runtime:2.7.3 (c) -| | +--- androidx.navigation:navigation-common-ktx:2.7.3 (c) -| | \--- androidx.navigation:navigation-common:2.7.3 (c) -| \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.9.10 (*) +| | +--- androidx.navigation:navigation-fragment:2.7.5 (c) +| | +--- androidx.navigation:navigation-fragment-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui:2.7.5 (c) +| | +--- androidx.navigation:navigation-ui-ktx:2.7.5 (c) +| | +--- androidx.navigation:navigation-runtime:2.7.5 (c) +| | +--- androidx.navigation:navigation-common-ktx:2.7.5 (c) +| | \--- androidx.navigation:navigation-common:2.7.5 (c) +| \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +--- com.michael-bull.kotlin-result:kotlin-result:1.1.18 | \--- com.michael-bull.kotlin-result:kotlin-result-jvm:1.1.18 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) @@ -738,25 +750,25 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. +--- com.jakewharton.timber:timber:5.0.1 | +--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.9.10 (*) | \--- org.jetbrains:annotations:20.1.0 -> 23.0.0 -+--- com.mikepenz:aboutlibraries-compose:10.9.0 -| \--- com.mikepenz:aboutlibraries-compose-android:10.9.0 ++--- com.mikepenz:aboutlibraries-compose:10.9.1 +| \--- com.mikepenz:aboutlibraries-compose-android:10.9.1 | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | +--- org.jetbrains.compose.ui:ui-tooling-preview:1.5.1 -| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-alpha06 +| | \--- androidx.compose.ui:ui-tooling-preview:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-preview-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) | +--- androidx.core:core-ktx:1.12.0 (*) -| +--- com.mikepenz:aboutlibraries-core:10.9.0 -| | \--- com.mikepenz:aboutlibraries-core-android:10.9.0 +| +--- com.mikepenz:aboutlibraries-core:10.9.1 +| | \--- com.mikepenz:aboutlibraries-core-android:10.9.1 | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | | \--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 @@ -775,164 +787,155 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0 -> 1.9.10 | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | +--- org.jetbrains.compose.runtime:runtime:1.5.1 -| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.runtime:runtime:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.ui:ui:1.5.1 -| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-alpha06 (*) +| | \--- androidx.compose.ui:ui:1.5.0 -> 1.6.0-beta01 (*) | +--- org.jetbrains.compose.foundation:foundation:1.5.1 -| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.foundation:foundation-android:1.6.0-alpha06 +| | \--- androidx.compose.foundation:foundation:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.foundation:foundation-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.core:core:1.11.0-beta02 -> 1.12.0 (*) | | +--- androidx.emoji2:emoji2:1.3.0 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | \--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (c) +| | \--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (c) | +--- org.jetbrains.compose.material:material:1.5.1 -| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-alpha06 -| | \--- androidx.compose.material:material-android:1.6.0-alpha06 +| | \--- androidx.compose.material:material:1.5.0 -> 1.6.0-beta01 +| | \--- androidx.compose.material:material-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-alpha06 -| | | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | +--- androidx.compose.animation:animation-core:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | +--- androidx.compose.foundation:foundation-layout:1.6.0-beta01 (*) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 +| | | \--- androidx.compose.material:material-icons-core-android:1.6.0-beta01 +| | | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 -| | | \--- androidx.compose.material:material-ripple-android:1.6.0-alpha06 -| | | +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | | +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| | | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | | \--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-ripple:1.6.0-beta01 +| | | \--- androidx.compose.material:material-ripple-android:1.6.0-beta01 +| | | +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| | | +--- androidx.compose.foundation:foundation:1.6.0-beta01 (*) +| | | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) +| | | +--- androidx.compose.material:material:1.6.0-beta01 (c) +| | | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | | \--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-util:1.6.0-beta01 (*) | | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) | | +--- androidx.savedstate:savedstate:1.2.1 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| | +--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 (c) -| | \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) +| | +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| | +--- androidx.compose.material:material-icons-extended:1.6.0-beta01 (c) +| | \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) | \--- org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5 (*) -+--- com.mikepenz:aboutlibraries-core:10.9.0 (*) -+--- com.google.accompanist:accompanist-placeholder-material3:0.33.1-alpha -| +--- androidx.compose.material3:material3:1.0.1 -> 1.2.0-alpha08 -| | \--- androidx.compose.material3:material3-android:1.2.0-alpha08 -| | +--- androidx.activity:activity-compose:1.5.0 -> 1.7.2 (*) -| | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.animation:animation-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha06 (*) -| | +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| | +--- androidx.compose.material:material-ripple:1.6.0-alpha06 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| | +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) -| | +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) -| | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| +--- com.google.accompanist:accompanist-placeholder:0.33.1-alpha -| | +--- androidx.compose.foundation:foundation:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-util:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) -+--- com.google.accompanist:accompanist-systemuicontroller:0.33.1-alpha -| +--- androidx.core:core-ktx:1.8.0 -> 1.12.0 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha02 -> 1.6.0-alpha06 (*) -| +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) -| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.0 -> 1.9.10 (*) ++--- com.mikepenz:aboutlibraries-core:10.9.1 (*) +--- androidx.appcompat:appcompat:1.6.1 (*) -+--- androidx.compose.material:material:1.6.0-alpha06 (*) -+--- androidx.compose.material:material-icons-extended:1.6.0-alpha06 -| \--- androidx.compose.material:material-icons-extended-android:1.6.0-alpha06 -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) ++--- androidx.compose.material:material:1.6.0-beta01 (*) ++--- androidx.compose.material:material-icons-extended:1.6.0-beta01 +| \--- androidx.compose.material:material-icons-extended-android:1.6.0-beta01 +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.material:material:1.6.0-alpha06 (c) -| +--- androidx.compose.material:material-icons-core:1.6.0-alpha06 (c) -| \--- androidx.compose.material:material-ripple:1.6.0-alpha06 (c) -+--- androidx.compose.material3:material3:1.2.0-alpha08 (*) -+--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha08 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (*) -| +--- androidx.window:window:1.0.0 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| \--- androidx.compose.material3:material3:1.2.0-alpha08 (c) -+--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -+--- androidx.compose.runtime:runtime-livedata:1.6.0-alpha06 -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material:material:1.6.0-beta01 (c) +| +--- androidx.compose.material:material-icons-core:1.6.0-beta01 (c) +| \--- androidx.compose.material:material-ripple:1.6.0-beta01 (c) ++--- androidx.compose.material3:material3:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-android:1.2.0-alpha11 +| +--- androidx.activity:activity-compose:1.5.0 -> 1.8.1 (*) +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.compose.animation:animation-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-icons-core:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.material:material-ripple:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-text:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.lifecycle:lifecycle-common-java8:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) +| +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.6.2 (*) +| +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 (c) ++--- androidx.compose.material3:material3-window-size-class:1.2.0-alpha11 +| \--- androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha11 +| +--- androidx.compose.runtime:runtime:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha08 -> 1.6.0-beta01 (*) +| +--- androidx.window:window:1.0.0 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) +| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 +| \--- androidx.compose.material3:material3:1.2.0-alpha11 (c) ++--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) ++--- androidx.compose.runtime:runtime-livedata:1.6.0-beta01 +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-livedata:2.6.1 -> 2.6.2 (*) | +--- androidx.lifecycle:lifecycle-runtime:2.6.1 -> 2.6.2 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (c) -| \--- androidx.compose.runtime:runtime-saveable:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 -| \--- androidx.compose.ui:ui-tooling-android:1.6.0-alpha06 -| +--- androidx.activity:activity-compose:1.7.0 -> 1.7.2 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (c) +| \--- androidx.compose.runtime:runtime-saveable:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui-tooling:1.6.0-beta01 +| \--- androidx.compose.ui:ui-tooling-android:1.6.0-beta01 +| +--- androidx.activity:activity-compose:1.7.0 -> 1.8.1 (*) | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.animation:animation:1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 -| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-alpha06 +| +--- androidx.compose.animation:animation:1.6.0-beta01 (*) +| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 +| | \--- androidx.compose.ui:ui-tooling-data-android:1.6.0-beta01 | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| | +--- androidx.compose.runtime:runtime:1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (*) | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) -| | +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| | +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| | \--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (*) +| | +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| | +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| | \--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (*) | +--- androidx.lifecycle:lifecycle-common:2.6.1 -> 2.6.2 (*) | +--- androidx.savedstate:savedstate-ktx:1.2.1 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 1.9.10 -| +--- androidx.compose.ui:ui:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-graphics:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-text:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-data:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-unit:1.6.0-alpha06 (c) -| +--- androidx.compose.ui:ui-util:1.6.0-alpha06 (c) -| \--- androidx.compose.ui:ui-geometry:1.6.0-alpha06 (c) -+--- androidx.compose.ui:ui:1.6.0-alpha06 (*) -+--- androidx.constraintlayout:constraintlayout-compose:1.0.1 -| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10 -> 1.9.10 (*) -| +--- androidx.compose.ui:ui:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-util:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation-layout:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.foundation:foundation:1.0.0 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.material:material:1.0.0 -> 1.6.0-alpha06 (*) -| \--- androidx.constraintlayout:constraintlayout-core:1.0.4 +| +--- androidx.compose.ui:ui:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-graphics:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-text:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-data:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-tooling-preview:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-unit:1.6.0-beta01 (c) +| +--- androidx.compose.ui:ui-util:1.6.0-beta01 (c) +| \--- androidx.compose.ui:ui-geometry:1.6.0-beta01 (c) ++--- androidx.compose.ui:ui:1.6.0-beta01 (*) ++--- androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13 +| \--- androidx.constraintlayout:constraintlayout-compose-android:1.1.0-alpha13 +| +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) +| +--- androidx.collection:collection:1.4.0-alpha01 -> 1.4.0-beta01 (*) +| +--- androidx.compose.foundation:foundation:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.foundation:foundation-layout:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-util:1.6.0-alpha07 -> 1.6.0-beta01 (*) +| +--- androidx.constraintlayout:constraintlayout-core:1.1.0-alpha13 +| | \--- androidx.annotation:annotation:1.5.0 -> 1.7.0 (*) +| \--- androidx.core:core-ktx:1.5.0 -> 1.12.0 (*) +--- androidx.core:core-splashscreen:1.0.1 | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 1.9.10 (*) @@ -951,9 +954,9 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | \--- androidx.datastore:datastore-core:1.0.0 (*) +--- androidx.glance:glance-appwidget:1.0.0 | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.core:core-ktx:1.7.0 -> 1.12.0 (*) | +--- androidx.core:core-remoteviews:1.0.0 | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -967,9 +970,9 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | +--- androidx.annotation:annotation:1.1.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) | | +--- androidx.annotation:annotation-experimental:1.3.0 (*) -| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-alpha06 (*) -| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-graphics:1.1.1 -> 1.6.0-beta01 (*) +| | +--- androidx.compose.ui:ui-unit:1.1.1 -> 1.6.0-beta01 (*) | | +--- androidx.datastore:datastore-core:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences:1.0.0 (*) | | +--- androidx.datastore:datastore-preferences-core:1.0.0 (*) @@ -1018,18 +1021,18 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | \--- androidx.glance:glance-material3:1.0.0 (c) +--- androidx.glance:glance-material3:1.0.0 | +--- androidx.annotation:annotation:1.4.0 -> 1.7.0 (*) -| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha08 (*) -| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.material3:material3:1.0.0 -> 1.2.0-alpha11 (*) +| +--- androidx.compose.runtime:runtime:1.1.1 -> 1.6.0-beta01 (*) | +--- androidx.glance:glance:1.0.0 (*) | +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 1.9.10 (*) | +--- androidx.glance:glance:1.0.0 (c) | \--- androidx.glance:glance-appwidget:1.0.0 (c) +--- androidx.lifecycle:lifecycle-process:2.6.2 (*) +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2 (*) -+--- androidx.navigation:navigation-compose:2.7.3 (*) ++--- androidx.navigation:navigation-compose:2.7.5 (*) +--- androidx.paging:paging-compose:3.2.1 -| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-alpha06 (*) -| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-alpha06 (*) +| +--- androidx.compose.foundation:foundation:1.2.1 -> 1.6.0-beta01 (*) +| +--- androidx.compose.runtime:runtime:1.2.1 -> 1.6.0-beta01 (*) | +--- androidx.paging:paging-common:3.2.1 | | +--- androidx.annotation:annotation:1.3.0 -> 1.7.0 (*) | | +--- androidx.arch.core:core-common:2.2.0 (*) @@ -1042,13 +1045,13 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | +--- io.coil-kt:coil-compose-base:2.4.0 | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | +--- com.google.accompanist:accompanist-drawablepainter:0.30.1 -| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-alpha06 (*) +| | | +--- androidx.compose.ui:ui:1.4.0 -> 1.6.0-beta01 (*) | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.7.3 (*) | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10 -> 1.9.10 (*) | | +--- io.coil-kt:coil-base:2.4.0 | | | +--- androidx.annotation:annotation:1.6.0 -> 1.7.0 (*) | | | +--- androidx.appcompat:appcompat-resources:1.6.1 (*) -| | | +--- androidx.collection:collection:1.2.0 (*) +| | | +--- androidx.collection:collection:1.2.0 -> 1.4.0-beta01 (*) | | | +--- androidx.core:core-ktx:1.9.0 -> 1.12.0 (*) | | | +--- androidx.exifinterface:exifinterface:1.3.6 | | | | \--- androidx.annotation:annotation:1.2.0 -> 1.7.0 (*) @@ -1064,14 +1067,14 @@ releaseUnitTestRuntimeClasspath - Runtime classpath of /releaseUnitTest. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.20 -> 1.9.10 (*) | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20 -> 1.9.10 (*) | | | \--- com.squareup.okio:okio:3.3.0 (*) -| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-alpha06 (*) +| | +--- androidx.compose.foundation:foundation:1.4.3 -> 1.6.0-beta01 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | +--- io.coil-kt:coil:2.4.0 | | +--- io.coil-kt:coil-base:2.4.0 (*) | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.10 (*) +--- org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0 (*) -+--- com.google.android.material:material:1.9.0 (*) ++--- com.google.android.material:material:1.10.0 (*) +--- com.squareup.okhttp3:logging-interceptor:4.11.0 | +--- com.squareup.okhttp3:okhttp:4.11.0 (*) | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10 -> 1.9.10 (*) diff --git a/app/versions/mergedManifests/debug/AndroidManifest.xml b/app/versions/mergedManifests/debug/AndroidManifest.xml index 50a7c42..9a40475 100644 --- a/app/versions/mergedManifests/debug/AndroidManifest.xml +++ b/app/versions/mergedManifests/debug/AndroidManifest.xml @@ -221,6 +221,10 @@ + + @@ -228,10 +232,6 @@ android:name="androidx.window.sidecar" android:required="false" /> - - diff --git a/app/versions/mergedManifests/release/AndroidManifest.xml b/app/versions/mergedManifests/release/AndroidManifest.xml index f31cd60..99910e4 100644 --- a/app/versions/mergedManifests/release/AndroidManifest.xml +++ b/app/versions/mergedManifests/release/AndroidManifest.xml @@ -221,6 +221,10 @@ + + @@ -228,10 +232,6 @@ android:name="androidx.window.sidecar" android:required="false" /> - - diff --git a/build-conventions/build.gradle.kts b/build-conventions/build.gradle.kts index 844395a..0a1708c 100644 --- a/build-conventions/build.gradle.kts +++ b/build-conventions/build.gradle.kts @@ -29,7 +29,7 @@ dependencies { implementation(libs.plugin.appversioning) implementation(libs.plugin.detekt) implementation(libs.plugin.easylauncher) - implementation(libs.plugin.hilt) + implementation(libs.plugin.dagger.hilt) implementation(libs.plugin.kotlin) implementation(libs.plugin.ruler) implementation(libs.plugin.spotless) diff --git a/build-conventions/src/main/kotlin/ubuntucountdownwidget.android-app-conventions.gradle.kts b/build-conventions/src/main/kotlin/ubuntucountdownwidget.android-app-conventions.gradle.kts index 82350b5..40db058 100644 --- a/build-conventions/src/main/kotlin/ubuntucountdownwidget.android-app-conventions.gradle.kts +++ b/build-conventions/src/main/kotlin/ubuntucountdownwidget.android-app-conventions.gradle.kts @@ -13,10 +13,10 @@ * You should have received a copy of the GNU General Public License along with this * program. If not, see . */ -import com.project.starter.easylauncher.filter.ChromeLikeFilter -import org.gradle.accessors.dm.LibrariesForLibs import com.mikepenz.aboutlibraries.plugin.DuplicateMode import com.mikepenz.aboutlibraries.plugin.DuplicateRule +import com.project.starter.easylauncher.filter.ChromeLikeFilter +import org.gradle.accessors.dm.LibrariesForLibs plugins { id("com.android.application") @@ -63,8 +63,8 @@ easylauncher { gravity = ChromeLikeFilter.Gravity.TOP, label = "DEBUG", textSizeRatio = 0.20f, - labelPadding = 10 - ) + labelPadding = 10, + ), ) } } @@ -85,12 +85,12 @@ dependencies { implementation(libs.androidx.navigation.ui.ktx) implementation(libs.coroutines.android) implementation(libs.coroutines.core) - implementation(libs.hilt.android) - implementation(libs.hilt.navigation.compose) + implementation(libs.dagger.hilt.android) + implementation(libs.androidx.hilt.navigation.compose) implementation(libs.kotlin.result) implementation(libs.kotlinx.collections.immutable) implementation(libs.timber) - kapt(libs.hilt.compiler) + kapt(libs.dagger.hilt.compiler) androidTestUtil(libs.androidx.test.orchestrator) } diff --git a/build-conventions/src/main/kotlin/ubuntucountdownwidget.buildlog-conventions.gradle.kts b/build-conventions/src/main/kotlin/ubuntucountdownwidget.buildlog-conventions.gradle.kts index ba69176..c0dbeb1 100644 --- a/build-conventions/src/main/kotlin/ubuntucountdownwidget.buildlog-conventions.gradle.kts +++ b/build-conventions/src/main/kotlin/ubuntucountdownwidget.buildlog-conventions.gradle.kts @@ -23,10 +23,9 @@ import java.util.Date if (config.params.saveBuildLogToFile.get()) { val datetime = SimpleDateFormat("yyyy-MM-dd-HH-mm-ss").format(Date()) - val buildLogDir = "${buildDir}/logs" + val buildLogDir = layout.buildDirectory.dir("logs") mkdir(buildLogDir) - val buildLog = File("${buildLogDir}/buildlog-${datetime}.txt") - + val buildLog = buildLogDir.get().file("buildlog-${datetime}.txt").asFile System.setProperty("org.gradle.color.error", "RED") val outputListener = StandardOutputListener { output -> buildLog.appendText(output.toString()) } diff --git a/build-conventions/src/main/kotlin/ubuntucountdownwidget.detekt-conventions.gradle.kts b/build-conventions/src/main/kotlin/ubuntucountdownwidget.detekt-conventions.gradle.kts index 8a3951f..929ef62 100644 --- a/build-conventions/src/main/kotlin/ubuntucountdownwidget.detekt-conventions.gradle.kts +++ b/build-conventions/src/main/kotlin/ubuntucountdownwidget.detekt-conventions.gradle.kts @@ -40,7 +40,7 @@ detekt { dependencies { detektPlugins(libs.detekt) detektPlugins(libs.detekt.rules.compose) - detektPlugins(libs.detekt.twitter.compose.rules) + detektPlugins(libs.detekt.nlopez.compose.rules) } tasks { diff --git a/build-conventions/src/main/kotlin/ubuntucountdownwidget.merged-manifests-conventions.gradle.kts b/build-conventions/src/main/kotlin/ubuntucountdownwidget.merged-manifests-conventions.gradle.kts index b8d8f67..267d8bc 100644 --- a/build-conventions/src/main/kotlin/ubuntucountdownwidget.merged-manifests-conventions.gradle.kts +++ b/build-conventions/src/main/kotlin/ubuntucountdownwidget.merged-manifests-conventions.gradle.kts @@ -18,7 +18,7 @@ tasks { dependsOn(tasks.matching { it.name matches "^process.*Manifest$".toRegex() }) mustRunAfter(tasks.matching { it.name matches "^process.*Manifest$".toRegex() }) mkdir("versions/mergedManifests") - from("$buildDir/intermediates/merged_manifests") { + from(layout.buildDirectory.dir("intermediates/merged_manifests")) { include("**/*.xml") } into("versions/mergedManifests") diff --git a/config/detekt/detekt.yml b/config/detekt/detekt.yml index 4f0cbb3..d9869d5 100644 --- a/config/detekt/detekt.yml +++ b/config/detekt/detekt.yml @@ -700,7 +700,6 @@ naming: EnumNaming: active: true enumEntryPattern: '[A-Z][_A-Z0-9]*' # Custom - excludes: [] ForbiddenClassName: active: false forbiddenName: [] @@ -1187,9 +1186,9 @@ style: active: true allowedNames: '(_|ignored|expected|serialVersionUID)' ignoreAnnotated: # Custom - - 'DevicePreviews' - 'Preview' - - 'ThemePreviews' + - 'PreviewDevices' + - 'PreviewThemes' UnusedPrivateProperty: active: true allowedNames: '_|ignored|expected|serialVersionUID' @@ -1259,7 +1258,9 @@ compose: ComposeFunctionName: active: true -TwitterCompose: +Compose: + ComposableAnnotationNaming: + active: true CompositionLocalAllowlist: active: false # Custom # You can optionally define a list of CompositionLocals that are allowed here @@ -1270,10 +1271,23 @@ TwitterCompose: active: true # You can optionally add your own composables here # contentEmitters: MyComposable,MyOtherComposable + DefaultsVisibility: + active: true + ModifierClickableOrder: + active: true ModifierComposable: active: true ModifierMissing: active: true + # You can optionally control the visibility of which composables to check for here + # Possible values are: `only_public`, `public_and_internal` and `all` (default is `only_public`) + # checkModifiersForVisibility: only_public + ModifierNaming: + active: true + ModifierNotUsedAtRoot: + active: true + # You can optionally add your own composables here + # contentEmitters: MyComposable,MyOtherComposable ModifierReused: active: true ModifierWithoutDefault: @@ -1283,24 +1297,28 @@ TwitterCompose: # You can optionally add your own composables here # contentEmitters: MyComposable,MyOtherComposable MutableParams: - active: false # Custom + active: false # Custom https://github.com/mrmans0n/compose-rules/issues/133 ComposableNaming: active: true # You can optionally disable the checks in this rule for regex matches against the composable name (e.g. molecule presenters) # allowedComposableFunctionNames: .*Presenter,.*MoleculePresenter ComposableParamOrder: active: true - PreviewNaming: + PreviewAnnotationNaming: active: true PreviewPublic: active: true - # You can optionally disable that only previews with @PreviewParameter are flagged - # previewPublicOnlyIfParams: false RememberMissing: active: true + RememberContentMissing: + active: true UnstableCollections: active: true ViewModelForwarding: active: true + # You can optionally use this rule on things other than types ending in "ViewModel" or "Presenter" (which are the defaults). You can add your own via a regex here: + # allowedStateHolderNames: .*ViewModel,.*Presenter ViewModelInjection: active: true + # You can optionally add your own ViewModel factories here + # viewModelFactories: hiltViewModel,potatoViewModel diff --git a/gradle.properties b/gradle.properties index b377c84..175e4e2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,18 +13,14 @@ # You should have received a copy of the GNU General Public License along with this # program. If not, see . # - # Gradle org.gradle.caching=true org.gradle.configuration-cache=true org.gradle.jvmargs=-Xms2G -Xmx6G -XX:+UseParallelGC org.gradle.parallel=true org.gradle.warning.mode=all - # Android android.builder.sdkDownload=true -android.databinding.incremental=true -android.defaults.buildfeatures.buildconfig=true android.enableJetifier=false android.enableResourceOptimizations=true android.experimental.cacheCompileLibResources=true @@ -33,7 +29,6 @@ android.nonFinalResIds=true android.nonTransitiveRClass=true android.useAndroidX=true kapt.include.compile.classpath=false - # Kotlin kotlin.code.style=official kotlin.incremental.usePreciseJavaTracking=true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ba08907..060e6aa 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,29 +1,30 @@ # Sharing dependency versions between projects # https://docs.gradle.org/current/userguide/platforms.html [versions] -aboutlibraries = "10.9.0" +aboutlibraries = "10.9.1" accompanist = "0.33.1-alpha" -androidx-compose = "1.6.0-alpha06" +androidx-compose = "1.6.0-beta01" androidx-compose-compiler = "1.5.3" androidx-datastore = "1.0.0" androidx-lifecycle = "2.6.2" -androidx-navigation = "2.7.3" -androidx-room = "2.5.2" -apollo = "3.8.2" +androidx-navigation = "2.7.5" +androidx-room = "2.6.0" +apollo = "4.0.0-beta.2" coroutines = "1.7.3" +dagger = "2.48.1" detekt = "1.23.1" diktat = "1.2.5" glance = "1.0.0" glance-tools = "0.2.2" -gradle = "8.2.1" +gradle = "8.4" greclipse = "4.19" -hilt = "2.48" kotlin = "1.9.10" kotlin-result = "1.1.18" kotlinpoet = "1.14.2" ksp = "1.9.10-1.0.13" ktlint = "0.43.0" -mockk = "1.13.7" +material3 = "1.2.0-alpha11" +mockk = "1.13.8" okhttp = "4.11.0" play-app-update = "2.1.0" prettier = "2.7.1" @@ -33,26 +34,21 @@ retrofit = "2.9.0" aboutlibraries = { module = "com.mikepenz:aboutlibraries-compose", version.ref = "aboutlibraries" } aboutlibraries-core = { module = "com.mikepenz:aboutlibraries-core", version.ref = "aboutlibraries" } accompanist-adaptive = { module = "com.google.accompanist:accompanist-adaptive", version.ref = "accompanist" } -accompanist-insets-ui = { module = "com.google.accompanist:accompanist-insets-ui", version.ref = "accompanist" } accompanist-navigation-material = { module = "com.google.accompanist:accompanist-navigation-material", version.ref = "accompanist" } -accompanist-pager-indicators = { module = "com.google.accompanist:accompanist-pager-indicators", version.ref = "accompanist" } accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" } -accompanist-placeholder = { module = "com.google.accompanist:accompanist-placeholder-material3", version.ref = "accompanist" } -accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" } -accompanist-webview = { module = "com.google.accompanist:accompanist-webview", version.ref = "accompanist" } android-maps-utils = "com.google.maps.android:android-maps-utils:3.5.3" -androidx-activity-compose = "androidx.activity:activity-compose:1.7.2" +androidx-activity-compose = "androidx.activity:activity-compose:1.8.1" androidx-appcompat = "androidx.appcompat:appcompat:1.6.1" -androidx-benchmark-macro-junit4 = "androidx.benchmark:benchmark-macro-junit4:1.2.0-beta05" +androidx-benchmark-macro-junit4 = "androidx.benchmark:benchmark-macro-junit4:1.2.1" androidx-biometric = "androidx.biometric:biometric:1.2.0-alpha05" -androidx-browser = "androidx.browser:browser:1.6.0" +androidx-browser = "androidx.browser:browser:1.7.0" androidx-compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "androidx-compose" } androidx-compose-layout = { module = "androidx.compose.foundation:foundation-layout", version.ref = "androidx-compose" } androidx-compose-material = { module = "androidx.compose.material:material", version.ref = "androidx-compose" } -androidx-compose-material-android = "androidx.compose.material:material-android:1.6.0-alpha06" +androidx-compose-material-android = { module = "androidx.compose.material:material-android", version.ref = "androidx-compose" } androidx-compose-material-icons-extended = { module = "androidx.compose.material:material-icons-extended", version.ref = "androidx-compose" } -androidx-compose-material3 = "androidx.compose.material3:material3:1.2.0-alpha08" -androidx-compose-material3-window-size = "androidx.compose.material3:material3-window-size-class-android:1.2.0-alpha08" +androidx-compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "material3" } +androidx-compose-material3-window-size = { module = "androidx.compose.material3:material3-window-size-class", version.ref = "material3" } androidx-compose-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "androidx-compose" } androidx-compose-runtime-livedata = { module = "androidx.compose.runtime:runtime-livedata", version.ref = "androidx-compose" } androidx-compose-test = { module = "androidx.compose.test:test-core", version.ref = "androidx-compose" } @@ -60,7 +56,8 @@ androidx-compose-tooling = { module = "androidx.compose.ui:ui-tooling", version. androidx-compose-ui = { module = "androidx.compose.ui:ui", version.ref = "androidx-compose" } androidx-compose-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "androidx-compose" } androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "androidx-compose" } -androidx-constraintlayout-compose = "androidx.constraintlayout:constraintlayout-compose:1.0.1" +androidx-compose-ui-util = { module = "androidx.compose.ui:ui-util", version.ref = "androidx-compose" } +androidx-constraintlayout-compose = "androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha13" androidx-core-ktx = "androidx.core:core-ktx:1.12.0" androidx-core-splashscreen = "androidx.core:core-splashscreen:1.0.1" androidx-customview = "androidx.customview:customview:1.2.0-alpha02" @@ -69,12 +66,13 @@ androidx-datastore = { module = "androidx.datastore:datastore", version.ref = "a androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "androidx-datastore" } androidx-glance = { module = "androidx.glance:glance-appwidget", version.ref = "glance" } androidx-glance-material3 = { module = "androidx.glance:glance-material3", version.ref = "glance" } +androidx-hilt-navigation-compose = "androidx.hilt:hilt-navigation-compose:1.1.0" androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version.ref = "androidx-lifecycle" } androidx-lifecycle-process = { module = "androidx.lifecycle:lifecycle-process", version.ref = "androidx-lifecycle" } androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" } -androidx-lifecycle-savedstate = "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.2" +androidx-lifecycle-savedstate = { module = "androidx.lifecycle:lifecycle-viewmodel-savedstate", version.ref = "androidx-lifecycle" } androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "androidx-lifecycle" } -androidx-lifecycle-viewmodel-compose = "androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2" +androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" } androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "androidx-navigation" } androidx-navigation-fragment = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "androidx-navigation" } androidx-navigation-ui-ktx = { module = "androidx.navigation:navigation-ui-ktx", version.ref = "androidx-navigation" } @@ -93,7 +91,7 @@ androidx-test-ext-junit = "androidx.test.ext:junit-ktx:1.1.5" androidx-test-orchestrator = "androidx.test:orchestrator:1.4.2" androidx-test-rules = "androidx.test:rules:1.5.0" androidx-test-runner = "androidx.test:runner:1.5.2" -androidx-test-uiautomator = "androidx.test.uiautomator:uiautomator:2.3.0-alpha04" +androidx-test-uiautomator = "androidx.test.uiautomator:uiautomator:2.3.0-alpha05" androidx-tracing = "androidx.tracing:tracing:1.1.0" apollo = { module = "com.apollographql.apollo3:apollo-runtime", version.ref = "apollo" } apollo-adapters = { module = "com.apollographql.apollo3:apollo-adapters", version.ref = "apollo" } @@ -107,21 +105,20 @@ coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-androi coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" } coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" } desugar = "com.android.tools:desugar_jdk_libs:2.0.3" +dagger-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "dagger" } +dagger-hilt-android-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "dagger" } +dagger-hilt-android-testing = { module = "com.google.dagger:hilt-android-testing", version.ref = "dagger" } +dagger-hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "dagger" } detekt = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" } detekt-rules-compose = "ru.kode:detekt-rules-compose:1.3.0" -detekt-twitter-compose-rules = "com.twitter.compose.rules:detekt:0.0.26" +detekt-nlopez-compose-rules = "io.nlopez.compose.rules:detekt:0.3.3" firebase-analytics = { module = "com.google.firebase:firebase-analytics-ktx" } -firebase-bom = "com.google.firebase:firebase-bom:32.3.1" +firebase-bom = "com.google.firebase:firebase-bom:32.6.0" firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics-ktx" } firebase-perf = { module = "com.google.firebase:firebase-perf-ktx" } glance-tools-configuration = { module = "com.google.android.glance.tools:appwidget-configuration", version.ref = "glance-tools" } glance-tools-host = { module = "com.google.android.glance.tools:appwidget-host", version.ref = "glance-tools" } glance-tools-viewer = { module = "com.google.android.glance.tools:appwidget-viewer", version.ref = "glance-tools" } -hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" } -hilt-android-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hilt" } -hilt-android-testing = { module = "com.google.dagger:hilt-android-testing", version.ref = "hilt" } -hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" } -hilt-navigation-compose = "androidx.hilt:hilt-navigation-compose:1.0.0" junit = "junit:junit:4.13.2" konfetti = "nl.dionsegijn:konfetti-compose:2.0.3" kotlin-extensions = { module = "org.jetbrains.kotlin:kotlin-android-extensions", version.ref = "kotlin" } @@ -138,17 +135,17 @@ kotlinx-serialization = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0" ksp-symbol-processing-api = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" } leakcanary = "com.squareup.leakcanary:leakcanary-android:2.12" lottie-compose = "com.airbnb.android:lottie-compose:6.1.0" -maps = "com.google.maps.android:maps-ktx:3.4.0" -maps-compose = "com.google.maps.android:maps-compose:2.14.1" +maps = "com.google.maps.android:maps-ktx:4.0.0" +maps-compose = "com.google.maps.android:maps-compose:3.0.0" maps-utils-ktx = "com.google.maps.android:maps-utils-ktx:3.4.0" -material = "com.google.android.material:material:1.9.0" +material = "com.google.android.material:material:1.10.0" mockk = { module = "io.mockk:mockk", version.ref = "mockk" } mockk-android = { module = "io.mockk:mockk-android", version.ref = "mockk" } okhttp3-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" } okhttp3-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttp" } play-app-update = { module = "com.google.android.play:app-update", version.ref = "play-app-update" } play-app-update-ktx = { module = "com.google.android.play:app-update-ktx", version.ref = "play-app-update" } -play-services-maps = "com.google.android.gms:play-services-maps:18.1.0" +play-services-maps = "com.google.android.gms:play-services-maps:18.2.0" process-phoenix = "com.jakewharton:process-phoenix:2.1.2" retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } retrofit-converter-scalars = { module = "com.squareup.retrofit2:converter-scalars", version.ref = "retrofit" } @@ -163,22 +160,22 @@ zoomable = "net.engawapg.lib:zoomable:1.5.1" # plugins plugin-aboutlibraries = { module = "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin", version.ref = "aboutlibraries" } -plugin-android-gradle = "com.android.tools.build:gradle:8.2.0-beta05" -plugin-androidcachefix = "gradle.plugin.org.gradle.android:android-cache-fix-gradle-plugin:2.7.3" +plugin-android-gradle = "com.android.tools.build:gradle:8.2.0-rc03" +plugin-androidcachefix = "gradle.plugin.org.gradle.android:android-cache-fix-gradle-plugin:3.0" plugin-androidx-navigation-safeargs = { module = "androidx.navigation:navigation-safe-args-gradle-plugin", version.ref = "androidx-navigation" } plugin-appversioning = "io.github.reactivecircus.appversioning:app-versioning-gradle-plugin:1.3.1" +plugin-dagger-hilt = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "dagger" } plugin-detekt = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin", version.ref = "detekt" } plugin-easylauncher = "com.project.starter:easylauncher:6.2.0" plugin-firebase-crashlytics = "com.google.firebase:firebase-crashlytics-gradle:2.9.9" plugin-firebase-perf = "com.google.firebase:perf-plugin:1.4.2" plugin-google-services = "com.google.gms:google-services:4.4.0" -plugin-hilt = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" } plugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } plugin-ksp = { module = "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin", version.ref = "ksp" } plugin-ruler = "com.spotify.ruler:ruler-gradle-plugin:1.3.0" -plugin-spotless = "com.diffplug.spotless:spotless-plugin-gradle:6.21.0" -plugin-versions = "com.github.ben-manes:gradle-versions-plugin:0.47.0" -plugin-versions-update = "nl.littlerobots.vcu:plugin:0.8.0" +plugin-spotless = "com.diffplug.spotless:spotless-plugin-gradle:6.23.2" +plugin-versions = "com.github.ben-manes:gradle-versions-plugin:0.50.0" +plugin-versions-update = "nl.littlerobots.vcu:plugin:0.8.1" plugin-violation = "se.bjurr.violations:violation-comments-to-github-gradle-plugin:1.70.0" [plugins] @@ -186,6 +183,6 @@ apollo = { id = "com.apollographql.apollo3", version.ref = "apollo" } apollo-external = { id = "com.apollographql.apollo3.external", version.ref = "apollo" } google-secrets = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:2.0.1" gradledoctor = "com.osacky.doctor:0.8.1" -kotlinx-serialization = "org.jetbrains.kotlin.plugin.serialization:1.9.10" +kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } -tripletplay = "com.github.triplet.play:3.8.4" +tripletplay = "com.github.triplet.play:3.8.6" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c747538..8838ba9 100755 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/release/decrypt-secrets.sh b/release/decrypt-secrets.sh index 3ef2ca3..19f6185 100755 --- a/release/decrypt-secrets.sh +++ b/release/decrypt-secrets.sh @@ -20,14 +20,14 @@ decrypt() { PASSPHRASE=$1 INPUT=$2 OUTPUT=$3 - gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output $OUTPUT $INPUT + gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output "$OUTPUT" "$INPUT" } -if [[ ! -z "$ENCRYPT_KEY" ]]; then +if [[ -n "$ENCRYPT_KEY" ]]; then # Decrypt Release key - decrypt ${ENCRYPT_KEY} release/app-release.gpg release/app-release.jks + decrypt "${ENCRYPT_KEY}" release/app-release.gpg release/app-release.jks # Decrypt Play Store key - decrypt ${ENCRYPT_KEY} release/play-account.gpg release/play-account.json + decrypt "${ENCRYPT_KEY}" release/play-account.gpg release/play-account.json else echo "ENCRYPT_KEY is empty" fi diff --git a/release/encrypt-secrets.sh b/release/encrypt-secrets.sh index ee821a9..a3ca263 100755 --- a/release/encrypt-secrets.sh +++ b/release/encrypt-secrets.sh @@ -20,14 +20,14 @@ encrypt() { PASSPHRASE=$1 INPUT=$2 OUTPUT=$3 - gpg --batch --yes --passphrase="$PASSPHRASE" --cipher-algo AES256 --symmetric --output $OUTPUT $INPUT + gpg --batch --yes --passphrase="$PASSPHRASE" --cipher-algo AES256 --symmetric --output "$OUTPUT" "$INPUT" } -if [[ ! -z "$ENCRYPT_KEY" ]]; then +if [[ -n "$ENCRYPT_KEY" ]]; then # Encrypt Release key - encrypt ${ENCRYPT_KEY} release/app-release.jks release/app-release.gpg + encrypt "${ENCRYPT_KEY}" release/app-release.jks release/app-release.gpg # Encrypt Play Store key - encrypt ${ENCRYPT_KEY} release/play-account.json release/play-account.gpg + encrypt "${ENCRYPT_KEY}" release/play-account.json release/play-account.gpg else echo "ENCRYPT_KEY is empty" fi diff --git a/scripts/generateFDroidVersionFile.sh b/scripts/generateFDroidVersionFile.sh index 4c3cdd9..e591f25 100755 --- a/scripts/generateFDroidVersionFile.sh +++ b/scripts/generateFDroidVersionFile.sh @@ -1,3 +1,19 @@ #!/usr/bin/env bash +# +# Ubuntu Countdown Widget +# Copyright (C) 2023 Roberto Leinardi +# +# This program is free software: you can redistribute it and/or modify it under the terms +# of the GNU General Public License as published by the Free Software Foundation, +# either version 3 of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with this +# program. If not, see . +# + cat app/build/outputs/app_versioning/release/version_name.txt <(echo -n "+") app/build/outputs/app_versioning/release/version_code.txt > version.txt && cat version.txt