diff --git a/.github/workflows/android-ci.yaml b/.github/workflows/android-ci.yaml index 0240cd0..01353d7 100644 --- a/.github/workflows/android-ci.yaml +++ b/.github/workflows/android-ci.yaml @@ -160,6 +160,22 @@ jobs: echo "::error::Rename guard found un-allowlisted OPDS_SYNC / opds-sync / opds_sync references." exit 1 fi + - name: AboutLibraries JSON drift check + run: | + set -e + # app/src/main/res/raw/aboutlibraries.json is checked in and packaged + # as-is (registerAndroidTasks=false in app/build.gradle.kts) so F-Droid's + # reproducible-build check passes — the plugin's build-time collector is + # environment-dependent and produced a non-reproducible res/M7.json. + # Fail if the committed file drifts from the current release dep graph. + tmpdir="$(mktemp -d)" + ./gradlew :app:exportLibraryDefinitions \ + -PaboutLibraries.exportVariant=release \ + -PaboutLibraries.exportPath="$tmpdir" --stacktrace + if ! diff -u app/src/main/res/raw/aboutlibraries.json "$tmpdir/aboutlibraries.json"; then + echo "::error::app/src/main/res/raw/aboutlibraries.json is stale. Regenerate: scripts/dgradle :app:exportLibraryDefinitions -PaboutLibraries.exportVariant=release -PaboutLibraries.exportPath=src/main/res/raw" + exit 1 + fi - name: Assemble debug APK run: ./gradlew assembleDebug --stacktrace - name: Unit tests diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 90eda0a..6fcc993 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,12 +10,33 @@ plugins { val appVersionName: String = project.property("VERSION_NAME") as String val appVersionCode: Int = (project.property("VERSION_CODE") as String).toInt() -// Drop the build timestamp from the AboutLibraries-generated license JSON -// so the resource is byte-identical across rebuilds (matters for F-Droid's -// reproducible-build verification). Disabled by default in AboutLibraries -// 14+; explicit on 11.x. +// AboutLibraries' build-time collector is not reproducible: it scans whatever +// dependency configurations happen to be resolvable in a given build, so the +// generated license JSON (res/raw/aboutlibraries.json, obfuscated to res/M7.json +// by resource shrinking) varies by environment — debug/test artifacts leak in +// locally while F-Droid's isolated builder under-collects. That made F-Droid's +// reproducible-build verification fail on the res/M7.json contents. +// +// Fix: don't generate the resource at build time. We check in a pre-generated, +// release-only JSON and package that fixed file, so every builder (dev, CI, +// F-Droid) embeds byte-identical bytes. `LibrariesContainer` in LicensesScreen +// reads R.raw.aboutlibraries, which resolves to the committed file. +// +// Regenerate after changing dependencies (CI enforces this — see the +// "AboutLibraries JSON drift check" step in android-ci.yaml). exportPath is +// resolved relative to this module, so `src/main/res/raw` lands the file at +// app/src/main/res/raw/aboutlibraries.json: +// scripts/dgradle :app:exportLibraryDefinitions \ +// -PaboutLibraries.exportVariant=release \ +// -PaboutLibraries.exportPath=src/main/res/raw +// +// `excludeFields=["generated"]` drops the build timestamp (default in +// AboutLibraries 14+; explicit on 11.x); `filterVariants` keeps the +// regenerated file release-only. aboutLibraries { excludeFields = arrayOf("generated") + filterVariants = arrayOf("release") + registerAndroidTasks = false } android { diff --git a/app/src/main/res/raw/aboutlibraries.json b/app/src/main/res/raw/aboutlibraries.json new file mode 100644 index 0000000..3f2461c --- /dev/null +++ b/app/src/main/res/raw/aboutlibraries.json @@ -0,0 +1 @@ +{"metadata":{},"libraries":[{"uniqueId":"androidx.activity:activity","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.2","description":"Provides the base Activity subclass and the relevant hooks to build a composable structure on top.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.9.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.2","description":"Compose integration with Activity","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Compose","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.9.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.2","description":"Kotlin extensions for 'activity' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.9.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation-experimental","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.1","description":"Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Experimental annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation-jvm","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.appcompat:appcompat","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.6.1","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android AppCompat Library","website":"https://developer.android.com/jetpack/androidx/releases/appcompat#1.6.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.appcompat:appcompat-resources","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.6.1","description":"The Resources Library is a static library that you can add to your Android application in order to use resource APIs that backport the latest APIs to older versions of the platform. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Resources Library","website":"https://developer.android.com/jetpack/androidx/releases/appcompat#1.6.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.arch.core:core-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Common","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.arch.core:core-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Runtime","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.asynclayoutinflater:asynclayoutinflater","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Async Layout Inflater","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.autofill:autofill","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"AndroidX Autofill","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Autofill","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.browser:browser","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0","description":"Provides support for embedding Custom Tabs in an app.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Browser","website":"https://developer.android.com/jetpack/androidx/releases/browser#1.8.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.camera:camera-camera2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.4","description":"Camera2 implementation and extensions for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Camera2","website":"https://developer.android.com/jetpack/androidx/releases/camera#1.3.4","licenses":["Apache-2.0"]},{"uniqueId":"androidx.camera:camera-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.4","description":"Core components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Camera Core","website":"https://developer.android.com/jetpack/androidx/releases/camera#1.3.4","licenses":["Apache-2.0","44d1a25c593283261968a15c8cc213cd"]},{"uniqueId":"androidx.camera:camera-lifecycle","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.4","description":"Lifecycle components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Camera Lifecycle","website":"https://developer.android.com/jetpack/androidx/releases/camera#1.3.4","licenses":["Apache-2.0"]},{"uniqueId":"androidx.camera:camera-video","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.4","description":"Video components for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Camera Video","website":"https://developer.android.com/jetpack/androidx/releases/camera#1.3.4","licenses":["Apache-2.0"]},{"uniqueId":"androidx.camera:camera-view","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.4","description":"UI tools for the Jetpack Camera Library, a library providing a consistent and reliable camera foundation that enables great camera driven experiences across all of Android.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Camera View","website":"https://developer.android.com/jetpack/androidx/releases/camera#1.3.4","licenses":["Apache-2.0"]},{"uniqueId":"androidx.cardview:cardview","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Android Support CardView v7","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support CardView v7","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.collection:collection-jvm","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.4","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.4.4","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.collection:collection-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.4","description":"Kotlin extensions for 'collection' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Collections Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.4.4","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation-core-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Foundation","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation-layout-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose layout implementations","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Layouts","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material3:material3-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material3 Components","website":"https://developer.android.com/jetpack/androidx/releases/compose-material3#1.3.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-icons-core-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose Material Design core icons. This module contains the most commonly used set of Material icons.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Icons Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-icons-extended-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose Material Design extended icons. This module contains all Material icons. It is a very large dependency and should not be included directly.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Icons Extended","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-ripple-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Ripple","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Runtime","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime-saveable-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Saveable","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-geometry-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Geometry","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-graphics-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose graphics","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Graphics","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-text-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Text","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-tooling-preview-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Preview Tooling","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-unit-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Unit","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-util-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.2","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Util","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.7.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose:compose-bom","funding":[],"developers":[],"artifactVersion":"2024.09.02","description":"A compatible set of Jetpack Compose libraries.","name":"Jetpack Compose Libraries BOM","website":"https://developer.android.com/jetpack","licenses":["Apache-2.0"]},{"uniqueId":"androidx.concurrent:concurrent-futures","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Androidx implementation of Guava's ListenableFuture","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Futures","website":"https://developer.android.com/topic/libraries/architecture/index.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.constraintlayout:constraintlayout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.1.4","description":"ConstraintLayout for Android","scm":{"connection":"git@github.com:androidx/constraintlayout.git","url":"https://github.com/androidx/constraintlayout"},"name":"Android ConstraintLayout","website":"http://tools.android.com","licenses":["Apache-2.0"]},{"uniqueId":"androidx.constraintlayout:constraintlayout-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.4","description":"ConstraintLayout core","scm":{"connection":"git@github.com:androidx/constraintlayout.git","url":"https://github.com/androidx/constraintlayout"},"name":"Android ConstraintLayout Core","website":"http://tools.android.com","licenses":["Apache-2.0"]},{"uniqueId":"androidx.coordinatorlayout:coordinatorlayout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Coordinator Layout","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.core:core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.13.1","description":"Provides backward-compatible implementations of Android platform APIs and features.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core","website":"https://developer.android.com/jetpack/androidx/releases/core#1.13.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.core:core-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.13.1","description":"Kotlin extensions for 'core' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/core#1.13.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.cursoradapter:cursoradapter","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Cursor Adapter","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.customview:customview","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Custom View","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.customview:customview-poolingcontainer","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.customview:poolingcontainer","website":"https://developer.android.com/jetpack/androidx/releases/customview#1.0.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.databinding:viewbinding","funding":[],"developers":[],"artifactVersion":"8.4.0","description":"","name":"androidx.databinding:viewbinding","licenses":["Apache-2.0"]},{"uniqueId":"androidx.documentfile:documentfile","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Document File","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.drawerlayout:drawerlayout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Drawer Layout","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.dynamicanimation:dynamicanimation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support DynamicAnimation","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.emoji2:emoji2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Emoji2 Compat","website":"https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.emoji2:emoji2-views-helper","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"View helpers for Emoji2","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Emoji2 Compat view helpers","website":"https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.exifinterface:exifinterface","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.7","description":"Android Support ExifInterface","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Support ExifInterface","website":"https://developer.android.com/jetpack/androidx/releases/exifinterface#1.3.7","licenses":["Apache-2.0"]},{"uniqueId":"androidx.fragment:fragment","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.4","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"fragment","website":"https://developer.android.com/jetpack/androidx/releases/fragment#1.8.4","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.fragment:fragment-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.4","description":"Kotlin extensions for 'fragment' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Fragment Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/fragment#1.8.4","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.graphics:graphics-path","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.1","description":"Query segment data for android.graphics.Path objects","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Graphics Path","website":"https://developer.android.com/jetpack/androidx/releases/graphics#1.0.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.interpolator:interpolator","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Interpolators","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.legacy:legacy-support-core-ui","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support core UI","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.legacy:legacy-support-core-utils","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support core utils","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.legacy:legacy-support-v4","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support v4","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.lifecycle:lifecycle-common-java8","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle-Common for Java 8 Language","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common for Java 8","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-common-jvm","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-extensions","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Lifecycle Extensions","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Android Lifecycle Extensions","website":"https://developer.android.com/topic/libraries/architecture/index.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.lifecycle:lifecycle-livedata","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle LiveData","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle LiveData","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-livedata-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle LiveData Core","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle LiveData Core","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-livedata-core-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Kotlin extensions for 'livedata-core' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"LiveData Core Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-livedata-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Kotlin extensions for 'livedata' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"LiveData Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-process","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle Process","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Process","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-compose-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime Compose","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-ktx-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Kotlin extensions for 'lifecycle' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-service","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle Service","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Service","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-compose-android","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Compose integration with Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel Compose","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Kotlin extensions for 'viewmodel' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.6","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel with SavedState","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.6","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.loader:loader","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support loader","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.localbroadcastmanager:localbroadcastmanager","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Local Broadcast Manager","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media2:media2-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Media2 Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Media2 Common","website":"https://developer.android.com/jetpack/androidx/releases/media2#1.3.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.media2:media2-exoplayer","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Repackaged ExoPlayer for 'media2' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Media2 ExoPlayer","website":"https://developer.android.com/jetpack/androidx/releases/media2#1.3.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.media2:media2-player","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Media2 Player","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Media2 Player","website":"https://developer.android.com/jetpack/androidx/releases/media2#1.3.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.media2:media2-session","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.0","description":"Media2 Session","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Media2 Session","website":"https://developer.android.com/jetpack/androidx/releases/media2#1.3.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.media3:media3-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 common module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 common module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-container","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 Container module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 Container module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-database","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 database module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 database module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-datasource","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 DataSource module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 DataSource module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-decoder","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 decoder module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 decoder module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-exoplayer","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 ExoPlayer module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 ExoPlayer module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-extractor","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 Extractor module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 Extractor module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media3:media3-session","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Media3 Session module","scm":{"connection":"scm:git:https://github.com/androidx/media.git","url":"https://github.com/androidx/media"},"name":"Media3 Session module","licenses":["Apache-2.0"]},{"uniqueId":"androidx.media:media","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Media","website":"https://developer.android.com/jetpack/androidx/releases/media#1.7.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.navigation:navigation-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.1","description":"Android Navigation-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Navigation Common","website":"https://developer.android.com/jetpack/androidx/releases/navigation#2.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.navigation:navigation-common-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.1","description":"Android Navigation-Common-Ktx","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Navigation Common Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/navigation#2.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.navigation:navigation-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.1","description":"Compose integration with Navigation","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Navigation","website":"https://developer.android.com/jetpack/androidx/releases/navigation#2.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.navigation:navigation-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.1","description":"Android Navigation-Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Navigation Runtime","website":"https://developer.android.com/jetpack/androidx/releases/navigation#2.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.navigation:navigation-runtime-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.1","description":"Android Navigation-Runtime-Ktx","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Navigation Runtime Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/navigation#2.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.print:print","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Print","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.profileinstaller:profileinstaller","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.1","description":"Allows libraries to prepopulate ahead of time compilation traces to be read by ART","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.profileinstaller:profileinstaller","website":"https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.3.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.recyclerview:recyclerview","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.2","description":"Android Support RecyclerView","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Support RecyclerView","website":"https://developer.android.com/jetpack/androidx/releases/recyclerview#1.3.2","licenses":["Apache-2.0"]},{"uniqueId":"androidx.resourceinspection:resourceinspection-annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.1","description":"Annotation processors for Android resource and layout inspection","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Resource Inspection - Annotations","website":"https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.room:room-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.6.1","description":"Android Room-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Room-Common","website":"https://developer.android.com/jetpack/androidx/releases/room#2.6.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.room:room-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.6.1","description":"Android Room Kotlin Extensions","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Room Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/room#2.6.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.room:room-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.6.1","description":"Android Room-Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Room-Runtime","website":"https://developer.android.com/jetpack/androidx/releases/room#2.6.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.savedstate:savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Android Lifecycle Saved State","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Saved State","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.savedstate:savedstate-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Kotlin extensions for 'savedstate' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"SavedState Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.security:security-crypto","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0-alpha06","description":"AndroidX Security","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"AndroidX Security","website":"https://developer.android.com/jetpack/androidx/releases/security#1.1.0-alpha06","licenses":["Apache-2.0"]},{"uniqueId":"androidx.slidingpanelayout:slidingpanelayout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Sliding Pane Layout","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.sqlite:sqlite","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.4.0","description":"Android DB","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"SQLite","website":"https://developer.android.com/jetpack/androidx/releases/sqlite#2.4.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.sqlite:sqlite-framework","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.4.0","description":"The implementation of Support SQLite library using the framework code.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"SQLite Framework Integration","website":"https://developer.android.com/jetpack/androidx/releases/sqlite#2.4.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.startup:startup-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"Android App Startup Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android App Startup Runtime","website":"https://developer.android.com/jetpack/androidx/releases/startup#1.1.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.swiperefreshlayout:swiperefreshlayout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Custom View","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.tracing:tracing","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Android Tracing","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Tracing","website":"https://developer.android.com/jetpack/androidx/releases/tracing#1.0.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.transition:transition","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Android Transition Support Library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Transition","website":"https://developer.android.com/jetpack/androidx/releases/transition#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.vectordrawable:vectordrawable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support VectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support VectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.vectordrawable:vectordrawable-animated","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support AnimatedVectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support AnimatedVectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.versionedparcelable:versionedparcelable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.0","description":"Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"VersionedParcelable","website":"https://developer.android.com/jetpack/androidx/releases/versionedparcelable#1.2.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.viewpager2:viewpager2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"AndroidX Widget ViewPager2","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"ViewPager2","website":"https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.viewpager:viewpager","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support View Pager","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.webkit:webkit","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.11.0","description":"The WebKit Support Library is a static library you can add to your Android application in order to use android.webkit APIs that are not available for older platform versions.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"WebKit","website":"https://developer.android.com/jetpack/androidx/releases/webkit#1.11.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.work:work-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.9.1","description":"Android WorkManager runtime library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"WorkManager Runtime","website":"https://developer.android.com/jetpack/androidx/releases/work#2.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.work:work-runtime-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.9.1","description":"Android WorkManager Kotlin Extensions","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"WorkManager Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/work#2.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"com.google.accompanist:accompanist-drawablepainter","funding":[],"developers":[{"name":"Google"}],"artifactVersion":"0.32.0","description":"Utilities for Jetpack Compose","scm":{"connection":"scm:git:git://github.com/google/accompanist.git","url":"https://github.com/google/accompanist/","developerConnection":"scm:git:git://github.com/google/accompanist.git"},"name":"Accompanist Drawable Painter library","website":"https://github.com/google/accompanist/","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library common module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-common","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-container","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library container module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-container","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library core module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-core","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-database","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer database module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-database","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-datasource","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library DataSource module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-datasource","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-decoder","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library decoder module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-decoder","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-extractor","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library extractor module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-extractor","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:exoplayer-ui","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"The ExoPlayer library UI module.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"exoplayer-ui","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:extension-media2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"Media2 extension for ExoPlayer.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"extension-media2","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:extension-mediasession","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"Media session extension for ExoPlayer.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"extension-mediasession","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.exoplayer:extension-workmanager","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.19.1","description":"WorkManager extension for ExoPlayer.","scm":{"connection":"scm:git:https://github.com/google/ExoPlayer.git","url":"https://github.com/google/ExoPlayer"},"name":"extension-workmanager","licenses":["Apache-2.0"]},{"uniqueId":"com.google.android.material:material","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.12.0","description":"Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://github.com/material-components/material-components-android.git","url":"https://github.com/material-components/material-components-android"},"name":"Material Components for Android","website":"https://github.com/material-components/material-components-android","licenses":["Apache-2.0"]},{"uniqueId":"com.google.auto.value:auto-value-annotations","funding":[],"developers":[],"artifactVersion":"1.6.3","description":"Immutable value-type code generation for Java 1.6+.","scm":{"connection":"scm:git:git://github.com/google/auto.git","url":"http://github.com/google/auto","developerConnection":"scm:git:ssh://git@github.com/google/auto.git"},"name":"AutoValue Annotations","website":"https://github.com/google/auto","licenses":["Apache-2.0"],"organization":{"url":"http://www.google.com","name":"Google, Inc."}},{"uniqueId":"com.google.code.gson:gson","funding":[],"developers":[],"artifactVersion":"2.8.9","description":"Gson JSON library","scm":{"connection":"scm:git:https://github.com/google/gson.git","url":"https://github.com/google/gson/","developerConnection":"scm:git:git@github.com:google/gson.git"},"name":"Gson","website":"https://github.com/google/gson","licenses":["Apache-2.0"]},{"uniqueId":"com.google.crypto.tink:tink-android","funding":[],"developers":[{"organisationUrl":"https://www.google.com"}],"artifactVersion":"1.8.0","description":"Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks.","scm":{"connection":"scm:git:git@github.com:tink-crypto/tink-java.git","url":"https://github.com/tink-crypto/tink-java.git","developerConnection":"scm:git:git@github.com:tink-crypto/tink-java.git"},"name":"Tink Cryptography API for Android","website":"http://github.com/tink-crypto/tink-java","licenses":["Apache-2.0"]},{"uniqueId":"com.google.errorprone:error_prone_annotations","funding":[],"developers":[],"artifactVersion":"2.15.0","description":"Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.","scm":{"connection":"scm:git:https://github.com/google/error-prone.git","url":"https://github.com/google/error-prone","developerConnection":"scm:git:git@github.com:google/error-prone.git"},"name":"error-prone annotations","website":"https://errorprone.info","licenses":["Apache-2.0"],"organization":{"url":"http://www.google.com","name":"Google LLC"}},{"uniqueId":"com.google.guava:failureaccess","funding":[],"developers":[],"artifactVersion":"1.0.1","description":"Contains\n com.google.common.util.concurrent.internal.InternalFutureFailureAccess and\n InternalFutures. Most users will never need to use this artifact. Its\n classes is conceptually a part of Guava, but they're in this separate\n artifact so that Android libraries can use them without pulling in all of\n Guava (just as they can use ListenableFuture by depending on the\n listenablefuture artifact).","scm":{"connection":"scm:git:https://github.com/google/guava.git","url":"https://github.com/google/guava","developerConnection":"scm:git:git@github.com:google/guava.git"},"name":"Guava InternalFutureFailureAccess and InternalFutures","website":"https://github.com/google/guava","licenses":["Apache-2.0"]},{"uniqueId":"com.google.guava:guava","funding":[],"developers":[],"artifactVersion":"32.1.3-android","description":"Guava is a suite of core and expanded libraries that include\n utility classes, Google's collections, I/O classes, and\n much more.","scm":{"connection":"scm:git:https://github.com/google/guava.git","url":"https://github.com/google/guava","developerConnection":"scm:git:git@github.com:google/guava.git"},"name":"Guava: Google Core Libraries for Java","website":"https://github.com/google/guava","licenses":["Apache-2.0"]},{"uniqueId":"com.google.guava:listenablefuture","funding":[],"developers":[],"artifactVersion":"9999.0-empty-to-avoid-conflict-with-guava","description":"An empty artifact that Guava depends on to signal that it is providing\n ListenableFuture -- but is also available in a second \"version\" that\n contains com.google.common.util.concurrent.ListenableFuture class, without\n any other Guava classes. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....","scm":{"connection":"scm:git:https://github.com/google/guava.git","url":"https://github.com/google/guava","developerConnection":"scm:git:git@github.com:google/guava.git"},"name":"Guava ListenableFuture only","website":"https://github.com/google/guava","licenses":["Apache-2.0"]},{"uniqueId":"com.google.zxing:core","funding":[],"developers":[],"artifactVersion":"3.5.3","description":"Core barcode encoding/decoding library","scm":{"connection":"scm:git:https://github.com/zxing/zxing.git","url":"https://github.com/zxing/zxing","developerConnection":"scm:git:https://github.com/zxing/zxing.git"},"name":"ZXing Core","website":"https://github.com/zxing/zxing","licenses":["Apache-2.0"]},{"uniqueId":"com.jakewharton.timber:timber","funding":[],"developers":[{"name":"Jake Wharton"}],"artifactVersion":"5.0.1","description":"No-nonsense injectable logging.","scm":{"connection":"scm:git:git://github.com/JakeWharton/timber.git","url":"https://github.com/JakeWharton/timber","developerConnection":"scm:git:git://github.com/JakeWharton/timber.git"},"name":"Timber","website":"https://github.com/JakeWharton/timber","licenses":["Apache-2.0"]},{"uniqueId":"com.mcxiaoke.koi:async","funding":[],"developers":[{"name":"Xiaoke Zhang"}],"artifactVersion":"0.5.5","description":"Koi - Kotlin Library for Android Development","scm":{"connection":"scm:git:git@github.com:mcxiaoke/kotlin-koi.git","url":"https://github.com/mcxiaoke/kotlin-koi.git","developerConnection":"scm:git:git@github.com:mcxiaoke/kotlin-koi.git"},"name":"Koi Library Async Module","website":"https://github.com/mcxiaoke/kotlin-koi","licenses":["Apache-2.0"]},{"uniqueId":"com.mcxiaoke.koi:core","funding":[],"developers":[{"name":"Xiaoke Zhang"}],"artifactVersion":"0.5.5","description":"Koi - Kotlin Library for Android Development","scm":{"connection":"scm:git:git@github.com:mcxiaoke/kotlin-koi.git","url":"https://github.com/mcxiaoke/kotlin-koi.git","developerConnection":"scm:git:git@github.com:mcxiaoke/kotlin-koi.git"},"name":"Koi Library Core Module","website":"https://github.com/mcxiaoke/kotlin-koi","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3-android","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"11.2.3","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core-android","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"11.2.3","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okhttp3:okhttp","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"4.12.0","description":"Square\u2019s meticulous HTTP client for Java and Kotlin.","scm":{"connection":"scm:git:https://github.com/square/okhttp.git","url":"https://github.com/square/okhttp","developerConnection":"scm:git:ssh://git@github.com/square/okhttp.git"},"name":"okhttp","website":"https://square.github.io/okhttp/","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio-jvm","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.9.0","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"2.7.0","description":"An image loading library for Android backed by Kotlin Coroutines.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt:coil-base","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"2.7.0","description":"An image loading library for Android backed by Kotlin Coroutines.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-base","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"2.7.0","description":"An image loading library for Android backed by Kotlin Coroutines.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt:coil-compose-base","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"2.7.0","description":"An image loading library for Android backed by Kotlin Coroutines.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-base","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"joda-time:joda-time","funding":[],"developers":[{"name":"Stephen Colebourne"},{"name":"Brian S O'Neill"}],"artifactVersion":"2.12.7","description":"Date and time library to replace JDK date handling","scm":{"connection":"scm:git:https://github.com/JodaOrg/joda-time.git","url":"https://github.com/JodaOrg/joda-time","developerConnection":"scm:git:git@github.com:JodaOrg/joda-time.git"},"name":"Joda-Time","website":"https://www.joda.org/joda-time/","licenses":["Apache-2.0"],"organization":{"url":"https://www.joda.org","name":"Joda.org"}},{"uniqueId":"org.jetbrains.kotlin:kotlin-android-extensions-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"1.9.24","description":"Kotlin Android Extensions Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Android Extensions Runtime","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.22","description":"Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Libraries bill-of-materials","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-parcelize-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"1.9.24","description":"Runtime library for the Parcelize compiler plugin","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Parcelize Runtime","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-reflect","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"1.9.24","description":"Kotlin Full Reflection Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Reflect","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.0.20","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk7","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"1.9.0","description":"Kotlin Standard Library JDK 7 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk7","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"1.9.0","description":"Kotlin Standard Library JDK 8 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk8","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3.7","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-android","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.9.0","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-android","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.9.0","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-bom","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.9.0","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime-jvm","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.7.2","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-bom","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core-jvm","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.7.2","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json-jvm","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.7.2","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:annotations","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"23.0.0","description":"A set of annotations used for code inspection support and code documentation.","scm":{"connection":"scm:git:git://github.com/JetBrains/java-annotations.git","url":"https://github.com/JetBrains/java-annotations","developerConnection":"scm:git:ssh://github.com:JetBrains/java-annotations.git"},"name":"JetBrains Java Annotations","website":"https://github.com/JetBrains/java-annotations","licenses":["Apache-2.0"]},{"uniqueId":"org.jsoup:jsoup","funding":[],"developers":[{"name":"Jonathan Hedley"}],"artifactVersion":"1.17.2","description":"jsoup is a Java library that simplifies working with real-world HTML and XML. It offers an easy-to-use API for URL fetching, data parsing, extraction, and manipulation using DOM API methods, CSS, and xpath selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers.","scm":{"connection":"scm:git:https://github.com/jhy/jsoup.git","url":"https://github.com/jhy/jsoup"},"name":"jsoup Java HTML Parser","website":"https://jsoup.org/","licenses":["MIT"],"organization":{"url":"https://jhy.io/","name":"Jonathan Hedley"}},{"uniqueId":"org.readium.kotlin-toolkit:readium-navigator","funding":[],"developers":[{"name":"Aferdita Muriqi"},{"name":"Micka\u00ebl Menu"},{"name":"Quentin Gliosca"},{"name":"User Name"}],"artifactVersion":"3.0.0","description":"A toolkit for ebooks, audiobooks and comics written in Kotlin","scm":{"connection":"scm:git:github.com/readium/kotlin-toolkit.git","url":"https://github.com/readium/kotlin-toolkit","developerConnection":"scm:git:ssh://github.com/readium/kotlin-toolkit.git"},"name":"readium-navigator","website":"https://github.com/readium/kotlin-toolkit","licenses":["35191b70082118c99b05fb11c25b7a6d"]},{"uniqueId":"org.readium.kotlin-toolkit:readium-opds","funding":[],"developers":[{"name":"Aferdita Muriqi"},{"name":"Micka\u00ebl Menu"},{"name":"Quentin Gliosca"},{"name":"User Name"}],"artifactVersion":"3.0.0","description":"A toolkit for ebooks, audiobooks and comics written in Kotlin","scm":{"connection":"scm:git:github.com/readium/kotlin-toolkit.git","url":"https://github.com/readium/kotlin-toolkit","developerConnection":"scm:git:ssh://github.com/readium/kotlin-toolkit.git"},"name":"readium-opds","website":"https://github.com/readium/kotlin-toolkit","licenses":["35191b70082118c99b05fb11c25b7a6d"]},{"uniqueId":"org.readium.kotlin-toolkit:readium-shared","funding":[],"developers":[{"name":"Aferdita Muriqi"},{"name":"Micka\u00ebl Menu"},{"name":"Quentin Gliosca"},{"name":"User Name"}],"artifactVersion":"3.0.0","description":"A toolkit for ebooks, audiobooks and comics written in Kotlin","scm":{"connection":"scm:git:github.com/readium/kotlin-toolkit.git","url":"https://github.com/readium/kotlin-toolkit","developerConnection":"scm:git:ssh://github.com/readium/kotlin-toolkit.git"},"name":"readium-shared","website":"https://github.com/readium/kotlin-toolkit","licenses":["35191b70082118c99b05fb11c25b7a6d"]},{"uniqueId":"org.readium.kotlin-toolkit:readium-streamer","funding":[],"developers":[{"name":"Aferdita Muriqi"},{"name":"Micka\u00ebl Menu"},{"name":"Quentin Gliosca"},{"name":"User Name"}],"artifactVersion":"3.0.0","description":"A toolkit for ebooks, audiobooks and comics written in Kotlin","scm":{"connection":"scm:git:github.com/readium/kotlin-toolkit.git","url":"https://github.com/readium/kotlin-toolkit","developerConnection":"scm:git:ssh://github.com/readium/kotlin-toolkit.git"},"name":"readium-streamer","website":"https://github.com/readium/kotlin-toolkit","licenses":["35191b70082118c99b05fb11c25b7a6d"]}],"licenses":{"35191b70082118c99b05fb11c25b7a6d":{"hash":"35191b70082118c99b05fb11c25b7a6d","url":"https://github.com/readium/kotlin-toolkit/blob/main/LICENSE","name":"BSD-3-Clause license"},"44d1a25c593283261968a15c8cc213cd":{"hash":"44d1a25c593283261968a15c8cc213cd","url":"https://chromium.googlesource.com/libyuv/libyuv/+/refs/heads/main/README.chromium","name":"BSD License"},"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"},"MIT":{"content":"MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","hash":"MIT","internalHash":"MIT","url":"https://spdx.org/licenses/MIT.html","spdxId":"MIT","name":"MIT License"}}} \ No newline at end of file