diff --git a/tauri_app/docker/agp-resolver/.gitignore b/tauri_app/docker/agp-resolver/.gitignore index af68d16..d9cea7b 100644 --- a/tauri_app/docker/agp-resolver/.gitignore +++ b/tauri_app/docker/agp-resolver/.gitignore @@ -1,3 +1,4 @@ .gradle/ build/ offline-gradle/*.zip +local.properties diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock index 46ae5f6..ca39e30 100644 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock and b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/checksums.lock differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin index 6600c1a..73018f7 100644 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin and b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/md5-checksums.bin differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin index 4e6d01b..2a7a46d 100644 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin and b/tauri_app/docker/agp-resolver/.gradle/8.14.3/checksums/sha1-checksums.bin differ diff --git a/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock b/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock index e4369c2..fbb29d0 100644 Binary files a/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock and b/tauri_app/docker/agp-resolver/.gradle/8.14.3/executionHistory/executionHistory.lock differ diff --git a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock index fa3ce2a..b0e9238 100644 Binary files a/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/tauri_app/docker/agp-resolver/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/tauri_app/docker/agp-resolver/app/build.gradle.kts b/tauri_app/docker/agp-resolver/app/build.gradle.kts new file mode 100644 index 0000000..33b9b48 --- /dev/null +++ b/tauri_app/docker/agp-resolver/app/build.gradle.kts @@ -0,0 +1,38 @@ +plugins { + id("com.android.application") + id("org.jetbrains.kotlin.android") +} + +android { + namespace = "ru.lendry.offline.resolver" + compileSdk = 35 + + defaultConfig { + applicationId = "ru.lendry.offline.resolver" + minSdk = 24 + targetSdk = 35 + versionCode = 1 + versionName = "1.0" + } + + buildTypes { + release { + isMinifyEnabled = false + } + } + + kotlinOptions { + jvmTarget = "1.8" + } +} + +// Mirror Tauri Android app dependencies (apps + typical plugin transitives). +dependencies { + implementation("androidx.webkit:webkit:1.14.0") + implementation("androidx.appcompat:appcompat:1.7.1") + implementation("androidx.activity:activity-ktx:1.10.1") + implementation("com.google.android.material:material:1.12.0") + implementation("androidx.lifecycle:lifecycle-process:2.10.0") + implementation("androidx.browser:browser:1.8.0") + implementation("androidx.core:core-ktx:1.13.0") +} diff --git a/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml b/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..dc25c17 --- /dev/null +++ b/tauri_app/docker/agp-resolver/app/src/main/AndroidManifest.xml @@ -0,0 +1,4 @@ + + + + diff --git a/tauri_app/docker/agp-resolver/build.gradle.kts b/tauri_app/docker/agp-resolver/build.gradle.kts index ca5816d..1f41039 100644 --- a/tauri_app/docker/agp-resolver/build.gradle.kts +++ b/tauri_app/docker/agp-resolver/build.gradle.kts @@ -1,36 +1,10 @@ import org.gradle.api.GradleException -plugins { - java -} - -repositories { - google() - mavenCentral() -} - -val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0").get() - -configurations { - create("agp") - create("androidDeps") - create("buildPlugins") -} - -dependencies { - add("agp", "com.android.tools.build:gradle:$agpVersion") - - add("buildPlugins", "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - add("buildPlugins", "org.jetbrains.kotlin:kotlin-stdlib:1.9.25") - - add("androidDeps", "androidx.webkit:webkit:1.14.0") - add("androidDeps", "androidx.appcompat:appcompat:1.7.1") - add("androidDeps", "androidx.activity:activity-ktx:1.10.1") - add("androidDeps", "com.google.android.material:material:1.12.0") - add("androidDeps", "androidx.lifecycle:lifecycle-process:2.10.0") - add("androidDeps", "androidx.core:core-ktx:1.9.0") - add("androidDeps", "androidx.browser:browser:1.8.0") - add("androidDeps", "androidx.core:core:1.13.0") +allprojects { + repositories { + google() + mavenCentral() + } } fun installArtifact( @@ -46,6 +20,28 @@ fun installArtifact( src.copyTo(dir.resolve("$name-$version.$ext"), overwrite = true) } +fun googleMavenBases(group: String): List = + if (group.startsWith("com.android") || group.startsWith("androidx") || group.startsWith("com.google.android")) { + listOf( + "https://dl.google.com/dl/android/maven2", + "https://dl.google.com/android/maven2", + "https://maven.google.com", + ) + } else { + listOf( + "https://repo.maven.apache.org/maven2", + "https://dl.google.com/dl/android/maven2", + "https://maven.google.com", + ) + } + +fun downloadUrl(url: String, dest: File) { + dest.parentFile.mkdirs() + exec { + commandLine("curl", "-fsSL", url, "-o", dest.absolutePath) + } +} + fun ensurePom(root: File, group: String, name: String, version: String) { val dir = root.resolve("${group.replace('.', '/')}/$name/$version") dir.mkdirs() @@ -55,27 +51,10 @@ fun ensurePom(root: File, group: String, name: String, version: String) { } val groupPath = group.replace('.', '/') - val bases = when { - group.startsWith("com.android") || group.startsWith("androidx") || group.startsWith("com.google.android") -> - listOf( - "https://dl.google.com/dl/android/maven2", - "https://dl.google.com/android/maven2", - "https://maven.google.com", - ) - else -> - listOf( - "https://repo.maven.apache.org/maven2", - "https://dl.google.com/dl/android/maven2", - "https://maven.google.com", - ) - } - - for (base in bases) { + for (base in googleMavenBases(group)) { val url = "$base/$groupPath/$name/$version/$name-$version.pom" try { - exec { - commandLine("curl", "-fsSL", url, "-o", pom.absolutePath) - } + downloadUrl(url, pom) if (pom.exists() && pom.length() > 0L) { return } @@ -87,8 +66,10 @@ fun ensurePom(root: File, group: String, name: String, version: String) { throw GradleException("POM not found: $group:$name:$version") } -fun exportConfiguration(configName: String, offlineRoot: File): Int { - val configuration = configurations.getByName(configName) +fun exportConfiguration(projectPath: String, configName: String, offlineRoot: File): Int { + val target = project(projectPath) + val configuration = target.configurations.getByName(configName) + configuration.resolve() val modules = linkedSetOf>() configuration.resolvedConfiguration.resolvedArtifacts.forEach { artifact -> @@ -108,15 +89,20 @@ fun exportConfiguration(configName: String, offlineRoot: File): Int { ensurePom(offlineRoot, group, name, version) } - println("Exported ${modules.size} modules from configuration ${configName}") + println("Exported ${modules.size} modules from ${projectPath}:${configName}") return modules.size } +fun exportAndroidRuntimeClasspath(offlineRoot: File): Int = + exportConfiguration(":app", "releaseRuntimeClasspath", offlineRoot) + +val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0").get() + tasks.register("exportOfflineMaven") { - dependsOn(configurations.named("agp")) + dependsOn(":tools:compileJava") doLast { val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } - val modules = exportConfiguration("agp", offlineRoot) + val modules = exportConfiguration(":tools", "agp", offlineRoot) file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( "agpVersion=$agpVersion\nmodules=$modules\n", ) @@ -124,13 +110,14 @@ tasks.register("exportOfflineMaven") { } tasks.register("exportAllOfflineMaven") { - dependsOn(configurations.named("agp"), configurations.named("androidDeps"), configurations.named("buildPlugins")) + dependsOn(":tools:compileJava", ":app:preBuild") doLast { val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } - val modules = - exportConfiguration("agp", offlineRoot) + - exportConfiguration("androidDeps", offlineRoot) + - exportConfiguration("buildPlugins", offlineRoot) + var modules = 0 + modules += exportConfiguration(":tools", "agp", offlineRoot) + modules += exportConfiguration(":tools", "buildPlugins", offlineRoot) + modules += exportAndroidRuntimeClasspath(offlineRoot) + file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( "agpVersion=$agpVersion\nmodules=$modules\n", ) diff --git a/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html b/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html index 7ee4006..ca4a2d4 100644 --- a/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html +++ b/tauri_app/docker/agp-resolver/build/reports/problems/problems-report.html @@ -650,7 +650,7 @@ code + .copy-button { diff --git a/tauri_app/docker/agp-resolver/gradle.properties b/tauri_app/docker/agp-resolver/gradle.properties new file mode 100644 index 0000000..18825f9 --- /dev/null +++ b/tauri_app/docker/agp-resolver/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8 +android.useAndroidX=true +android.nonTransitiveRClass=true diff --git a/tauri_app/docker/agp-resolver/settings.gradle.kts b/tauri_app/docker/agp-resolver/settings.gradle.kts index 986e671..4ee8bb4 100644 --- a/tauri_app/docker/agp-resolver/settings.gradle.kts +++ b/tauri_app/docker/agp-resolver/settings.gradle.kts @@ -6,4 +6,11 @@ pluginManagement { } } +plugins { + id("com.android.application") version "8.11.0" apply false + id("org.jetbrains.kotlin.android") version "1.9.25" apply false +} + rootProject.name = "agp-resolver" +include(":app") +include(":tools") diff --git a/tauri_app/docker/agp-resolver/tools/build.gradle.kts b/tauri_app/docker/agp-resolver/tools/build.gradle.kts new file mode 100644 index 0000000..d06d306 --- /dev/null +++ b/tauri_app/docker/agp-resolver/tools/build.gradle.kts @@ -0,0 +1,21 @@ +plugins { + java +} + +repositories { + google() + mavenCentral() +} + +val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0").get() + +configurations { + create("agp") + create("buildPlugins") +} + +dependencies { + add("agp", "com.android.tools.build:gradle:$agpVersion") + add("buildPlugins", "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") + add("buildPlugins", "org.jetbrains.kotlin:kotlin-stdlib:1.9.25") +} diff --git a/tauri_app/docker/ensure-tauri-androidx-offline.sh b/tauri_app/docker/ensure-tauri-androidx-offline.sh new file mode 100644 index 0000000..76d48aa --- /dev/null +++ b/tauri_app/docker/ensure-tauri-androidx-offline.sh @@ -0,0 +1,122 @@ +#!/usr/bin/env bash +# Download AndroidX artifacts required by Tauri offline APK builds but missed by Gradle export +# (metadata POMs, version aliases, legacy lifecycle lines). +set -euo pipefail + +ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +OFFLINE="${ROOT}/docker/offline-maven" + +if [ ! -d "${OFFLINE}" ]; then + echo "Offline Maven dir not found: ${OFFLINE}" >&2 + exit 1 +fi + +MAVEN_BASES=( + "https://dl.google.com/dl/android/maven2" + "https://dl.google.com/android/maven2" + "https://maven.google.com" +) + +# group:artifact:version — from Tauri universalReleaseRuntimeClasspath resolution. +REQUIRED=( + "androidx.annotation:annotation:1.9.1" + "androidx.annotation:annotation-jvm:1.9.1" + "androidx.emoji2:emoji2:1.2.0" + "androidx.emoji2:emoji2-views-helper:1.2.0" + "androidx.emoji2:emoji2:1.3.0" + "androidx.emoji2:emoji2-views-helper:1.3.0" + "androidx.lifecycle:lifecycle-runtime:2.10.0" + "androidx.lifecycle:lifecycle-runtime-android:2.10.0" + "androidx.lifecycle:lifecycle-viewmodel:2.6.1" + "androidx.lifecycle:lifecycle-viewmodel:2.10.0" + "androidx.lifecycle:lifecycle-viewmodel-android:2.10.0" + "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1" + "androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0" + "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1" + "androidx.lifecycle:lifecycle-runtime-ktx:2.10.0" + "androidx.lifecycle:lifecycle-runtime-ktx-android:2.10.0" + "androidx.lifecycle:lifecycle-common:2.6.1" + "androidx.lifecycle:lifecycle-common:2.10.0" + "androidx.lifecycle:lifecycle-common-jvm:2.6.1" + "androidx.lifecycle:lifecycle-common-jvm:2.10.0" + "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1" + "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.10.0" + "androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.10.0" + "androidx.lifecycle:lifecycle-livedata-core:2.5.1" + "androidx.lifecycle:lifecycle-livedata-core:2.10.0" + "androidx.lifecycle:lifecycle-livedata:2.0.0" + "androidx.lifecycle:lifecycle-livedata:2.10.0" + "androidx.savedstate:savedstate:1.2.1" + "androidx.savedstate:savedstate:1.4.0" + "androidx.savedstate:savedstate-android:1.2.1" + "androidx.savedstate:savedstate-android:1.4.0" + "androidx.savedstate:savedstate-ktx:1.2.1" + "androidx.savedstate:savedstate-ktx:1.4.0" +) + +download_file() { + local url="$1" + local dest="$2" + mkdir -p "$(dirname "${dest}")" + curl -fsSL --connect-timeout 20 --max-time 120 "${url}" -o "${dest}" +} + +try_download_ext() { + local group="$1" + local artifact="$2" + local version="$3" + local ext="$4" + local group_path="${group//./\/}" + local dest="${OFFLINE}/${group_path}/${artifact}/${version}/${artifact}-${version}.${ext}" + + if [ -f "${dest}" ] && [ -s "${dest}" ]; then + return 0 + fi + + for base in "${MAVEN_BASES[@]}"; do + local url="${base}/${group_path}/${artifact}/${version}/${artifact}-${version}.${ext}" + if download_file "${url}" "${dest}" 2>/dev/null && [ -s "${dest}" ]; then + echo " + ${group}:${artifact}:${version}.${ext}" + return 0 + fi + rm -f "${dest}" + done + return 1 +} + +ensure_coordinate() { + local spec="$1" + IFS=':' read -r group artifact version <<< "${spec}" + local got=0 + for ext in pom module aar jar; do + if try_download_ext "${group}" "${artifact}" "${version}" "${ext}"; then + got=1 + fi + done + if [ "${got}" -eq 0 ]; then + echo "WARN: nothing downloaded for ${spec}" >&2 + fi +} + +echo "==> Ensuring Tauri-required AndroidX artifacts in ${OFFLINE}" +for spec in "${REQUIRED[@]}"; do + echo "-- ${spec}" + ensure_coordinate "${spec}" +done + +required_files=( + "${OFFLINE}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" + "${OFFLINE}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom" + "${OFFLINE}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom" + "${OFFLINE}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom" + "${OFFLINE}/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom" +) + +for file in "${required_files[@]}"; do + if [ ! -f "${file}" ]; then + echo "Missing required file after ensure: ${file}" >&2 + exit 1 + fi +done + +echo "==> Tauri AndroidX ensure complete" diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module new file mode 100644 index 0000000..4d082e4 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.module @@ -0,0 +1,102 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../annotation/1.9.1/annotation-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation", + "version": "1.9.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.10" + } + }, + "variants": [ + { + "name": "jvmApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.9.24" + } + } + ], + "files": [ + { + "name": "annotation-jvm-1.9.1.jar", + "url": "annotation-jvm-1.9.1.jar", + "size": 60577, + "sha512": "ee8cceeb09d0231f6de4015f078e8cb0805de6faf383a9653d5f3763c43bb137e5346c2b177972b1f70d2f648f6f32047051c0f3183bdb50dc01de41931f265a", + "sha256": "1e343917ebf27ba96fe4dc52b1cad7fd32b738fbc6355bb6cd5b3b305d7212d0", + "sha1": "b17951747e38bf3986a24431b9ba0d039958aa5f", + "md5": "01d6a04b3b9847638d000529df8ef76a" + } + ] + }, + { + "name": "jvmRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.9.24" + } + } + ], + "files": [ + { + "name": "annotation-jvm-1.9.1.jar", + "url": "annotation-jvm-1.9.1.jar", + "size": 60577, + "sha512": "ee8cceeb09d0231f6de4015f078e8cb0805de6faf383a9653d5f3763c43bb137e5346c2b177972b1f70d2f648f6f32047051c0f3183bdb50dc01de41931f265a", + "sha256": "1e343917ebf27ba96fe4dc52b1cad7fd32b738fbc6355bb6cd5b3b305d7212d0", + "sha1": "b17951747e38bf3986a24431b9ba0d039958aa5f", + "md5": "01d6a04b3b9847638d000529df8ef76a" + } + ] + }, + { + "name": "jvmSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "files": [ + { + "name": "annotation-jvm-1.9.1-sources.jar", + "url": "annotation-jvm-1.9.1-sources.jar", + "size": 71470, + "sha512": "5759f4ec9a371e59e83971070101aa8f97f1ac74ecb13198180323c42bdfa556809fe63acaddce38cb856f0ff1e422d61d230d22b52eaa3c6c0b63dfa9a48e2b", + "sha256": "c6ae897fbfb73ca09d4ae31a24bfff85c652097ad10644cdbb738488728cb39b", + "sha1": "865f245e3c1d595a6b9ae80e622a94907abc58d5", + "md5": "66f6afff7400acfe9945d6fbcd957f74" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar new file mode 100644 index 0000000..94173cf Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module new file mode 100644 index 0000000..7ead07e --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.module @@ -0,0 +1,1179 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.annotation", + "module": "annotation", + "version": "1.9.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.10" + } + }, + "variants": [ + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "files": [ + { + "name": "annotation-1.9.1-multiplatform-sources.jar", + "url": "annotation-1.9.1-multiplatform-sources.jar", + "size": 73772, + "sha512": "cdf94982015c1dbe99472b10a7039beb61d8d47a3d490ea0a4faa9948708f07bd1be7c4af0755f097da2ff1b46ffe1d550f813593d38e2abea3e297fe609b451", + "sha256": "3dd5ee2422da3c6a9dc7ad73f01eefc6d9108ecbf564ab46337eaf01a7cd95c6", + "sha1": "377915fe6725629718ef858d38e2c1558763cc4f", + "md5": "eedc0424355b8d56400b3b96a477087b" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "files": [ + { + "name": "apiLevels.json", + "url": "annotation-1.9.1-versionMetadata.json", + "size": 10678, + "sha512": "8068e9a0ce4ace1bb9ba4c302fd45b7546313644a7e8c58bdf571f0dd776494364e801b75090cc012f1ad9c680c228bb50e615b9dbb6ad1fdb24295ca6fad483", + "sha256": "0d299e1d6c95aff40ec427fe226b7a8b933281290f346ff4f9775fa4c5e154ad", + "sha1": "05d6ccae4c93baf5c027134ddb15bc84aa9b7a50", + "md5": "cdd620d5481a9de4a8c8c5ff958579b6" + } + ] + }, + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.9.24" + } + } + ], + "files": [ + { + "name": "annotation-metadata-1.9.1.jar", + "url": "annotation-1.9.1.jar", + "size": 11586, + "sha512": "fdcb6e124953fb18ae1cda4f8860fb1f062be5659a2a215f663068cd8c835b5efcb24805f94c26d37dc874de60cf0a8aaed8e595978529b797b282687429ca8f", + "sha256": "38322afa7345c37e29c65ec8852178ae1c26e23096a0634d07a4a3893931f58c", + "sha1": "7d1eff28a93c44697d9706b0b5fd63b8f50b034b", + "md5": "610bb43ec63a18c0ea167a330e7734f6" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "files": [ + { + "name": "annotation-kotlin-1.9.1-sources.jar", + "url": "annotation-1.9.1-sources.jar", + "size": 29195, + "sha512": "8bd77064aaa1e079a45f982fbdc5565a3efc3e26adc66363146de279087e27afc1e62f188fe6c0d82da585ab05f651f77f70d6db26dac9bbd0718efc1d57813d", + "sha256": "4560d6790c5174f4a6f1170fd8bd4c38ad918608fedd624fb67a35cd1a0f4e3a", + "sha1": "b4b206cb9f956d7abf27fd8c95ec1f6dcdc5a4d6", + "md5": "9772cec615ad89e9be417ed0522b41e6" + } + ] + }, + { + "name": "androidNativeArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "android_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativearm32/1.9.1/annotation-androidnativearm32-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativearm32", + "version": "1.9.1" + } + }, + { + "name": "androidNativeArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "android_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativearm32/1.9.1/annotation-androidnativearm32-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativearm32", + "version": "1.9.1" + } + }, + { + "name": "androidNativeArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "android_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativearm64/1.9.1/annotation-androidnativearm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativearm64", + "version": "1.9.1" + } + }, + { + "name": "androidNativeArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "android_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativearm64/1.9.1/annotation-androidnativearm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativearm64", + "version": "1.9.1" + } + }, + { + "name": "androidNativeX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "android_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativex64/1.9.1/annotation-androidnativex64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativex64", + "version": "1.9.1" + } + }, + { + "name": "androidNativeX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "android_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativex64/1.9.1/annotation-androidnativex64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativex64", + "version": "1.9.1" + } + }, + { + "name": "androidNativeX86ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "android_x86", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativex86/1.9.1/annotation-androidnativex86-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativex86", + "version": "1.9.1" + } + }, + { + "name": "androidNativeX86SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "android_x86", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-androidnativex86/1.9.1/annotation-androidnativex86-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-androidnativex86", + "version": "1.9.1" + } + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosarm64", + "version": "1.9.1" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosarm64", + "version": "1.9.1" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosarm64/1.9.1/annotation-iosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosarm64", + "version": "1.9.1" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iossimulatorarm64/1.9.1/annotation-iossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosx64", + "version": "1.9.1" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosx64", + "version": "1.9.1" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-iosx64/1.9.1/annotation-iosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-iosx64", + "version": "1.9.1" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-js", + "version": "1.9.1" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-js", + "version": "1.9.1" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../annotation-js/1.9.1/annotation-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-js", + "version": "1.9.1" + } + }, + { + "name": "jvmApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-jvm", + "version": "1.9.1" + } + }, + { + "name": "jvmRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-jvm", + "version": "1.9.1" + } + }, + { + "name": "jvmSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../annotation-jvm/1.9.1/annotation-jvm-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-jvm", + "version": "1.9.1" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-linuxarm64/1.9.1/annotation-linuxarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-linuxarm64", + "version": "1.9.1" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-linuxarm64/1.9.1/annotation-linuxarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-linuxarm64", + "version": "1.9.1" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-linuxx64/1.9.1/annotation-linuxx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-linuxx64", + "version": "1.9.1" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-linuxx64/1.9.1/annotation-linuxx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-linuxx64", + "version": "1.9.1" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosarm64", + "version": "1.9.1" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosarm64", + "version": "1.9.1" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosarm64/1.9.1/annotation-macosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosarm64", + "version": "1.9.1" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosx64", + "version": "1.9.1" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosx64", + "version": "1.9.1" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-macosx64/1.9.1/annotation-macosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-macosx64", + "version": "1.9.1" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-mingwx64/1.9.1/annotation-mingwx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-mingwx64", + "version": "1.9.1" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-mingwx64/1.9.1/annotation-mingwx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-mingwx64", + "version": "1.9.1" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosarm64/1.9.1/annotation-tvosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvossimulatorarm64/1.9.1/annotation-tvossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosx64", + "version": "1.9.1" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosx64", + "version": "1.9.1" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-tvosx64/1.9.1/annotation-tvosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-tvosx64", + "version": "1.9.1" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-wasm-js", + "version": "1.9.1" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-wasm-js", + "version": "1.9.1" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../annotation-wasm-js/1.9.1/annotation-wasm-js-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-wasm-js", + "version": "1.9.1" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm32", + "version": "1.9.1" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm32", + "version": "1.9.1" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm32/1.9.1/annotation-watchosarm32-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm32", + "version": "1.9.1" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosarm64/1.9.1/annotation-watchosarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosdevicearm64", + "version": "1.9.1" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosdevicearm64", + "version": "1.9.1" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosdevicearm64/1.9.1/annotation-watchosdevicearm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosdevicearm64", + "version": "1.9.1" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchossimulatorarm64/1.9.1/annotation-watchossimulatorarm64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchossimulatorarm64", + "version": "1.9.1" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosx64", + "version": "1.9.1" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosx64", + "version": "1.9.1" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../annotation-watchosx64/1.9.1/annotation-watchosx64-1.9.1.module", + "group": "androidx.annotation", + "module": "annotation-watchosx64", + "version": "1.9.1" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom new file mode 100644 index 0000000..e4d6ed1 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom @@ -0,0 +1,49 @@ + + + + + + + + 4.0.0 + androidx.annotation + annotation + 1.9.1 + Annotation + Provides source annotations for tooling and readability. + https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1 + 2013 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + org.jetbrains.kotlin + kotlin-stdlib + 1.9.24 + runtime + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar new file mode 100644 index 0000000..8c5d737 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom new file mode 100644 index 0000000..c445ebe --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.1/core-ktx-1.13.1.pom @@ -0,0 +1,66 @@ + + + + + + + + 4.0.0 + androidx.core + core-ktx + 1.13.1 + aar + Core Kotlin Extensions + Kotlin extensions for 'core' artifact + https://developer.android.com/jetpack/androidx/releases/core#1.13.1 + 2018 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.core + core + 1.13.1 + + + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.13.1 + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.22 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar new file mode 100644 index 0000000..bdf0365 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom new file mode 100644 index 0000000..b6f8b5f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/core/core/1.13.1/core-1.13.1.pom @@ -0,0 +1,103 @@ + + + + + + + + 4.0.0 + androidx.core + core + 1.13.1 + aar + Core + Provides backward-compatible implementations of Android platform APIs and features. + https://developer.android.com/jetpack/androidx/releases/core#1.13.1 + 2015 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.core + core-ktx + 1.13.1 + + + androidx.core + core-testing + 1.13.1 + + + + + + androidx.annotation + annotation + 1.6.0 + compile + + + androidx.annotation + annotation-experimental + 1.4.0 + compile + aar + + + androidx.collection + collection + 1.0.0 + runtime + + + androidx.concurrent + concurrent-futures + 1.0.0 + runtime + + + androidx.interpolator + interpolator + 1.0.0 + runtime + aar + + + androidx.lifecycle + lifecycle-runtime + 2.6.2 + compile + + + androidx.versionedparcelable + versionedparcelable + 1.1.1 + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.22 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar new file mode 100644 index 0000000..35a8b6b Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module new file mode 100644 index 0000000..357c766 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.module @@ -0,0 +1,110 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.emoji2", + "module": "emoji2-views-helper", + "version": "1.2.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "7.5-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-views-helper-1.2.0.aar", + "url": "emoji2-views-helper-1.2.0.aar", + "size": 21917, + "sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd", + "sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4", + "sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0", + "md5": "1a4b6d516e641772360a3030d6feda7f" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.collection", + "module": "collection", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2", + "version": { + "requires": "1.2.0" + } + } + ], + "files": [ + { + "name": "emoji2-views-helper-1.2.0.aar", + "url": "emoji2-views-helper-1.2.0.aar", + "size": 21917, + "sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd", + "sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4", + "sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0", + "md5": "1a4b6d516e641772360a3030d6feda7f" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "files": [ + { + "name": "emoji2-views-helper-1.2.0-sources.jar", + "url": "emoji2-views-helper-1.2.0-sources.jar", + "size": 17409, + "sha512": "b5babc8d9ebcf9faa0d0f20464d97e2ee686058fc593b801289866d5c8221df83b7ac9415ddc18eccccb5e26e69d0eda1b147d6d60685183c2d6308689500507", + "sha256": "ede24c021b055ab0bc287ce3ab784ab1fff3f336dae1ee9adae8b0d849e7b997", + "sha1": "833c4c3f1564f35f7f62b810bf3e0eaf544ebc1f", + "md5": "b7694abf3b882286206b7c00585bf461" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom new file mode 100644 index 0000000..91fb547 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom @@ -0,0 +1,55 @@ + + + + + + + + 4.0.0 + androidx.emoji2 + emoji2-views-helper + 1.2.0 + aar + Android Emoji2 Compat view helpers + View helpers for Emoji2 + https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0 + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + androidx.collection + collection + 1.1.0 + runtime + + + androidx.core + core + 1.3.0 + compile + aar + + + androidx.emoji2 + emoji2 + [1.2.0] + runtime + aar + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module new file mode 100644 index 0000000..4afcfa2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.module @@ -0,0 +1,242 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.emoji2", + "module": "emoji2-views-helper", + "version": "1.3.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-views-helper-1.3.0.aar", + "url": "emoji2-views-helper-1.3.0.aar", + "size": 22075, + "sha512": "1c5ebe19d91cd3491454de9e12615f94ed1e6e49fd97ab02709aa2e5bfeb27a89d20148854503e255c5fbbdc7d77ad5ac9cd3e5b902817ed1f32e5b0178c58ca", + "sha256": "9a1351295a4f739df0efe8344adaa9afb34856c3af584d4a9afbec105a45b90b", + "sha1": "7bef7c1117bb40ef41ee0641cd1d2d605e2d607c", + "md5": "473586f500e1ae30491f2cf67dd13870" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.collection", + "module": "collection", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2", + "version": { + "requires": "1.3.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-views-helper-1.3.0.aar", + "url": "emoji2-views-helper-1.3.0.aar", + "size": 22075, + "sha512": "1c5ebe19d91cd3491454de9e12615f94ed1e6e49fd97ab02709aa2e5bfeb27a89d20148854503e255c5fbbdc7d77ad5ac9cd3e5b902817ed1f32e5b0178c58ca", + "sha256": "9a1351295a4f739df0efe8344adaa9afb34856c3af584d4a9afbec105a45b90b", + "sha1": "7bef7c1117bb40ef41ee0641cd1d2d605e2d607c", + "md5": "473586f500e1ae30491f2cf67dd13870" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-views-helper-1.3.0-sources.jar", + "url": "emoji2-views-helper-1.3.0-sources.jar", + "size": 17409, + "sha512": "9c16707fa7227ef6ff5dd22db1a50b2c046f4da9d6e719cce0650214c8fe430112fa217c0058b09b66488533b03f514710b056b8fc33198ccef8e4e0a8ce2489", + "sha256": "ae8f9eac6a0627a136f631af717e6fab86a69e45c83765661e3795f7bbef3562", + "sha1": "070bc75b8c5681fc8d0a4026648950c1cfd90a72", + "md5": "71eca72934c7840028ba5480a3f5c33e" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar new file mode 100644 index 0000000..a372283 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module new file mode 100644 index 0000000..32b5808 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.module @@ -0,0 +1,131 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.emoji2", + "module": "emoji2", + "version": "1.2.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "7.5-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.startup", + "module": "startup-runtime", + "version": { + "requires": "1.0.0" + } + } + ], + "files": [ + { + "name": "emoji2-1.2.0.aar", + "url": "emoji2-1.2.0.aar", + "size": 134505, + "sha512": "0ccc7b0cce3f5d98bea8a865f3292c512573796fcee01c38a8a9ed682b1a14ac8c9fe8752976592177cd50ca7dd7fb73e90158b26655e10b03536513715f2dc2", + "sha256": "f31a06c150ecb03073f55a6f7b0b74a240a6a8d727c14ce76726d020570dfa8c", + "sha1": "2c95c9aa87788e4d9ce692ecfc961db004e57480", + "md5": "dd0bd8eeae51a8b91be400346dfd6783" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.collection", + "module": "collection", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.4.1" + } + }, + { + "group": "androidx.startup", + "module": "startup-runtime", + "version": { + "requires": "1.0.0" + } + } + ], + "files": [ + { + "name": "emoji2-1.2.0.aar", + "url": "emoji2-1.2.0.aar", + "size": 134505, + "sha512": "0ccc7b0cce3f5d98bea8a865f3292c512573796fcee01c38a8a9ed682b1a14ac8c9fe8752976592177cd50ca7dd7fb73e90158b26655e10b03536513715f2dc2", + "sha256": "f31a06c150ecb03073f55a6f7b0b74a240a6a8d727c14ce76726d020570dfa8c", + "sha1": "2c95c9aa87788e4d9ce692ecfc961db004e57480", + "md5": "dd0bd8eeae51a8b91be400346dfd6783" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "files": [ + { + "name": "emoji2-1.2.0-sources.jar", + "url": "emoji2-1.2.0-sources.jar", + "size": 53120, + "sha512": "805c7a029261da961b707387b21015d1569e7319b68999c14bdd1c66e9f0c29630fc01bde5499878c245886efe67de6474a051720924d1180b67a9bd30b87b94", + "sha256": "0fb791b7cb4a3c68a31b17b06a4c074e6bd2f3af6abca5051582646d649bdef1", + "sha1": "9b49601261eae202c9bf6f9fc18890b8fe0edf69", + "md5": "cd56b98aba3225e83dfa53da1d78f422" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom new file mode 100644 index 0000000..ae82bd2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.2.0/emoji2-1.2.0.pom @@ -0,0 +1,68 @@ + + + + + + + + 4.0.0 + androidx.emoji2 + emoji2 + 1.2.0 + aar + Android Emoji2 Compat + Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters. + https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0 + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + androidx.annotation + annotation + 1.2.0 + runtime + + + androidx.collection + collection + 1.1.0 + runtime + + + androidx.core + core + 1.3.0 + compile + aar + + + androidx.lifecycle + lifecycle-process + 2.4.1 + runtime + aar + + + androidx.startup + startup-runtime + 1.0.0 + compile + aar + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module new file mode 100644 index 0000000..f589270 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.module @@ -0,0 +1,263 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.emoji2", + "module": "emoji2", + "version": "1.3.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.startup", + "module": "startup-runtime", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views-helper", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-1.3.0.aar", + "url": "emoji2-1.3.0.aar", + "size": 143474, + "sha512": "e29de158918d633bb13af27d83312bd0b149db22fd8935511e422024ba7b87a700a03c9782ba9cd376e37852876781c9e0c4efb4bc20a30d8a784d68ed41a7d9", + "sha256": "2bf23818b23a996ddaa1b5fd5bb32129daff6bbb2dce15166e2fccdd2010b1a5", + "sha1": "37ed42991ddf77924510472dba632314aab1c9d9", + "md5": "0c7fe9caa3baf3da7a709d7a812616e0" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.collection", + "module": "collection", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "androidx.core", + "module": "core", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.4.1" + } + }, + { + "group": "androidx.startup", + "module": "startup-runtime", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views-helper", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-1.3.0.aar", + "url": "emoji2-1.3.0.aar", + "size": 143474, + "sha512": "e29de158918d633bb13af27d83312bd0b149db22fd8935511e422024ba7b87a700a03c9782ba9cd376e37852876781c9e0c4efb4bc20a30d8a784d68ed41a7d9", + "sha256": "2bf23818b23a996ddaa1b5fd5bb32129daff6bbb2dce15166e2fccdd2010b1a5", + "sha1": "37ed42991ddf77924510472dba632314aab1c9d9", + "md5": "0c7fe9caa3baf3da7a709d7a812616e0" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker", + "version": { + "requires": "1.0.0-alpha03" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-emojipicker-samples", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-bundled", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-views-helper", + "version": { + "requires": "1.3.0" + } + }, + { + "group": "androidx.emoji2", + "module": "emoji2-benchmark", + "version": { + "requires": "1.3.0" + } + } + ], + "files": [ + { + "name": "emoji2-1.3.0-sources.jar", + "url": "emoji2-1.3.0-sources.jar", + "size": 57650, + "sha512": "bc7fdaa283f590da3329bc4b80ebd18da770b628e69b09ed4e5e34a27a0f505a233f597700407f92e52e5a62bb50e534d1de80f9589539af1f3fb1895c4ffb96", + "sha256": "cd9b28e11cc5b9dacb5187ce2db89f97650a4c71c6ccf0aaa41a68cf8863c409", + "sha1": "788179fcab96cd6ec9a3e284e2a509545dc0fb8d", + "md5": "bcd8a79fc734e129ba2caec4e6d8d065" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module new file mode 100644 index 0000000..bc81e1c --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module @@ -0,0 +1,639 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../lifecycle-common/2.10.0/lifecycle-common-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "jvmApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-common-jvm-2.10.0.jar", + "url": "lifecycle-common-jvm-2.10.0.jar", + "size": 60791, + "sha512": "f76e1b7c81e2046772314eacb73f04f37e44b58879aedd3b163cc45033e10c020d06d0544316a004f12e1db59633bb9629b1618f79f649866f79e519fc05ba0d", + "sha256": "15943082d87bcd78830398fa377f2c8b12643de290d0906ed8e49a2d335ddb54", + "sha1": "2b7a92c746f3339efc533a2da0024e596760f816", + "md5": "cd58fd111c07594a1230669a2d3c2901" + } + ] + }, + { + "name": "jvmRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-common-jvm-2.10.0.jar", + "url": "lifecycle-common-jvm-2.10.0.jar", + "size": 60791, + "sha512": "f76e1b7c81e2046772314eacb73f04f37e44b58879aedd3b163cc45033e10c020d06d0544316a004f12e1db59633bb9629b1618f79f649866f79e519fc05ba0d", + "sha256": "15943082d87bcd78830398fa377f2c8b12643de290d0906ed8e49a2d335ddb54", + "sha1": "2b7a92c746f3339efc533a2da0024e596760f816", + "md5": "cd58fd111c07594a1230669a2d3c2901" + } + ] + }, + { + "name": "jvmSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-common-jvm-2.10.0-sources.jar", + "url": "lifecycle-common-jvm-2.10.0-sources.jar", + "size": 32181, + "sha512": "a8a3101f1067095149bec7bc68939d70527f7346adaa930accbc472b22c26ce05495a39ed81ef6395e9c47e2ce39007449f3a1f9aa6ea770a5e1c8873bdf9173", + "sha256": "7f3dd285e49950c7b4e8b493ce397ba08d672455577143509d5218f314b3dc62", + "sha1": "d115be7529a072225b056c7afe4dba33a449c160", + "md5": "379538192f6ad62acc885af46356df7b" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar new file mode 100644 index 0000000..756b401 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module new file mode 100644 index 0000000..1e4d8e2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.module @@ -0,0 +1,1702 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-common-metadata-2.10.0.jar", + "url": "lifecycle-common-2.10.0.jar", + "size": 12347, + "sha512": "95df7e43efe1391fb4f875be49bcac12472a575d85991d88056a96b2bd29cfcffed7824cc454ace71b8d819e4b8a45cc1781e162504e77246ac527e85808617b", + "sha256": "9d3a9980095b769deb4f328f7f325439b188147124d66dc42edd55e3e7beea37", + "sha1": "55e13b9d6d087da27e49b2ac9e5609cc2d5cdc27", + "md5": "90ad634c7557b8b7fcd1cc5e3382cf09" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-common-kotlin-2.10.0-sources.jar", + "url": "lifecycle-common-2.10.0-sources.jar", + "size": 15996, + "sha512": "0ef99e814ca21dedd8625e6f032cdce9b97dbec1dc84532492497fca8d45a9b76d24f206ed3a80a67a35177069ec1ad79dcf0c8260f027ad7bd5c97f8c265432", + "sha256": "3b241e3b0a4f558c06e6908d9ef19c48dfdd672a4687ca0703fc2fd9afe7d9fc", + "sha1": "8781efb2ce956e9f2b7c7f41944050dec8851962", + "md5": "d48127651b9f760d34d8347be75c0f18" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-common-2.10.0-multiplatform-sources.jar", + "url": "lifecycle-common-2.10.0-multiplatform-sources.jar", + "size": 34713, + "sha512": "900de1a628a5914b1b20cb9d2f86961b80ef583c21b86503913c1bb06d86dfab6c46cf2e1960e6498dae008b29c7a51521041091be884f510762a13a969c69c9", + "sha256": "b2bf56f3d0984fcf0345f3b74e10826dbd4f4b5944c0a48ea6aff4935b1fa057", + "sha1": "f3658e24f690b2ca507031aadc2d9f138d53bd40", + "md5": "966c4525fe0f46be6f1640fc0b268156" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-common is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "lifecycle-common-2.10.0-versionMetadata.json", + "size": 6401, + "sha512": "416513c355fc153ff77c8d3cd9fcd824aca498c6defd299b76e828388899ea4c7d30d32641ea6a062e5f142cf5a60fcc6768065d7a1865a3437a61eb2a9defa1", + "sha256": "dcaeb76267aae290e0babff79e51c77e63347ecc5e14f3f9b19187c36c72217b", + "sha1": "4a8e751c418fda7f7d3ae7197ba9ef3e42bf514f", + "md5": "a194be3659a42bd79423a2caf86a6d1a" + } + ] + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosarm64/2.10.0/lifecycle-common-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iossimulatorarm64/2.10.0/lifecycle-common-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-iosx64/2.10.0/lifecycle-common-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-iosx64", + "version": "2.10.0" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-js", + "version": "2.10.0" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-js", + "version": "2.10.0" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-common-js/2.10.0/lifecycle-common-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-js", + "version": "2.10.0" + } + }, + { + "name": "jvmApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-jvm", + "version": "2.10.0" + } + }, + { + "name": "jvmRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-jvm", + "version": "2.10.0" + } + }, + { + "name": "jvmSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-jvm", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-linuxarm64/2.10.0/lifecycle-common-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-linuxarm64/2.10.0/lifecycle-common-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-linuxx64/2.10.0/lifecycle-common-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-linuxx64/2.10.0/lifecycle-common-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosarm64/2.10.0/lifecycle-common-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-macosx64/2.10.0/lifecycle-common-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-macosx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-mingwx64/2.10.0/lifecycle-common-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-mingwx64/2.10.0/lifecycle-common-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosarm64/2.10.0/lifecycle-common-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvossimulatorarm64/2.10.0/lifecycle-common-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-tvosx64/2.10.0/lifecycle-common-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-common-wasm-js/2.10.0/lifecycle-common-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm32/2.10.0/lifecycle-common-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosarm64/2.10.0/lifecycle-common-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosdevicearm64/2.10.0/lifecycle-common-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchossimulatorarm64/2.10.0/lifecycle-common-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-common-watchosx64/2.10.0/lifecycle-common-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-common-watchosx64", + "version": "2.10.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom new file mode 100644 index 0000000..383098b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.10.0/lifecycle-common-2.10.0.pom @@ -0,0 +1,165 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-common + 2.10.0 + Lifecycle-Common + Android Lifecycle-Common + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2017 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + + + + androidx.lifecycle + lifecycle-common-jvm + 2.10.0 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + runtime + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + runtime + + + androidx.annotation + annotation + 1.9.1 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar new file mode 100644 index 0000000..fd6b42c Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module new file mode 100644 index 0000000..6e0fb15 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.module @@ -0,0 +1,639 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": "2.6.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0-rc-2" + } + }, + "variants": [ + { + "name": "apiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.jvm.version": 8, + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + }, + "excludes": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib-jdk8" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib-jdk7" + } + ] + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-common-2.6.1.jar", + "url": "lifecycle-common-2.6.1.jar", + "size": 52314, + "sha512": "0a14c05591e2f13ce875edb53e1d06c492183eedfcd762f512ed6e16f386bfde534009276eab35e260d0b2e47389f8c1fb41e9d389f6472b4b6fe2b270c8729c", + "sha256": "f34831b6c71cd844e1d35d1be49d5e79447c5ab856346531b1e8676fda7374b1", + "sha1": "10f354fdb64868baecd67128560c5a0d6312c495", + "md5": "2d1b4c15f17d8c1b5fef67713253b140" + } + ] + }, + { + "name": "runtimeElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.jvm.version": 8, + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + }, + "excludes": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib-jdk8" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib-jdk7" + } + ] + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-common-2.6.1.jar", + "url": "lifecycle-common-2.6.1.jar", + "size": 52314, + "sha512": "0a14c05591e2f13ce875edb53e1d06c492183eedfcd762f512ed6e16f386bfde534009276eab35e260d0b2e47389f8c1fb41e9d389f6472b4b6fe2b270c8729c", + "sha256": "f34831b6c71cd844e1d35d1be49d5e79447c5ab856346531b1e8676fda7374b1", + "sha1": "10f354fdb64868baecd67128560c5a0d6312c495", + "md5": "2d1b4c15f17d8c1b5fef67713253b140" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-common-2.6.1-sources.jar", + "url": "lifecycle-common-2.6.1-sources.jar", + "size": 24682, + "sha512": "7727681b4a417bb8d23a4e1640de957986454a72756dd879c891dbc4a192d8018e4bfbd75f2de6faae4640dc77b5aa67577309088b9616793cff57f81890551c", + "sha256": "9b194a75aa6724bdac277be839eddd5d49192d64389d5ac02d1f6bb6c334124e", + "sha1": "a2a417e26f5d4c961d9621d0540014e1706d0c52", + "md5": "555b73990dfd5183e738ec2fee6f4a17" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom new file mode 100644 index 0000000..ddf77ae --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common/2.6.1/lifecycle-common-2.6.1.pom @@ -0,0 +1,181 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-common + 2.6.1 + Android Lifecycle-Common + Android Lifecycle-Common + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common-java8 + 2.6.1 + + + androidx.lifecycle + lifecycle-compiler + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-truth + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-process + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.6.1 + + + androidx.lifecycle + lifecycle-service + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + + + + + + androidx.annotation + annotation + 1.1.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + compile + + + kotlin-stdlib-jdk8 + org.jetbrains.kotlin + + + kotlin-stdlib-jdk7 + org.jetbrains.kotlin + + + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module new file mode 100644 index 0000000..f5e734b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.module @@ -0,0 +1,806 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.10.0-sources.jar", + "url": "lifecycle-livedata-core-2.10.0-sources.jar", + "size": 12361, + "sha512": "a86c62426d848b859088e1931ed974dd0cd5b467251ed46f7bcdb01776ee66aee419996546c8ffa50d378a76533d87e97f7d93452e32e45a8c0cc2562e5fbdc9", + "sha256": "2a7e7f5ac6c3716d214cbeb2b6459c3d9de74e4fa169f99c198210626c701cba", + "sha1": "b27b638e9048333080231acaabe4df0a6be0c6ef", + "md5": "a2c22224955708f953531a3d48f97bf0" + } + ] + }, + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.10.0.aar", + "url": "lifecycle-livedata-core-2.10.0.aar", + "size": 34341, + "sha512": "cf26cec1f5c840ca40af846a33d3a3795b71e453e677f4517076ccceae5388750abf80837520b5c535bc34e4179924ae48c8b288f5333d4c56cecb97a19062ac", + "sha256": "12dd61a9843ccebb4547d3ebe2f6d030ca8f6988d22f8fad19c0af93b4a97e95", + "sha1": "d7f69935e30d0eef2301f9130590bcbbe4cdf618", + "md5": "b0038e7a3dbb10d4c3fbdb7f230e5a38" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.arch.core", + "module": "core-runtime", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.10.0.aar", + "url": "lifecycle-livedata-core-2.10.0.aar", + "size": 34341, + "sha512": "cf26cec1f5c840ca40af846a33d3a3795b71e453e677f4517076ccceae5388750abf80837520b5c535bc34e4179924ae48c8b288f5333d4c56cecb97a19062ac", + "sha256": "12dd61a9843ccebb4547d3ebe2f6d030ca8f6988d22f8fad19c0af93b4a97e95", + "sha1": "d7f69935e30d0eef2301f9130590bcbbe4cdf618", + "md5": "b0038e7a3dbb10d4c3fbdb7f230e5a38" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata-core is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.10.0-versionMetadata.json", + "url": "lifecycle-livedata-core-2.10.0-versionMetadata.json", + "size": 1478, + "sha512": "1761adc34d5b70f622fe16126c562500a7598dfacb99adef90b422ec60dadce9a0e7b102c761e53fc4ffa456097e94e0f0d06b73578bc52b32927c0066dc2d95", + "sha256": "bffc890c75aafe9adf105af2d499cbd59143de01772112c7b31a43cc3c0f6659", + "sha1": "fcf0173ec1d18e336aedb73447316b905ada5b56", + "md5": "3e2420dfc5d1704d1147147ff80c773e" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar new file mode 100644 index 0000000..8b67408 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module new file mode 100644 index 0000000..b5ac6be --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.module @@ -0,0 +1,110 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": "2.5.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "7.4" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.5.1" + } + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.5.1.aar", + "url": "lifecycle-livedata-core-2.5.1.aar", + "size": 10078, + "sha512": "1425f323a8248394f2a67509a4429b57f83b3b381357e0903d37c049e8c0332cf7453660572cb433397651f7eaa196fb6de94656c34e702a1d201a4c50652a43", + "sha256": "ee792103ca248bfaf150c45a93871e4cf7e8cebab990e0f62f7de5d4ff2f209f", + "sha1": "a55defc29b52baf41304c058c91dba38b5c7651c", + "md5": "0d81175396403490f8834cd6906b2b03" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.1.0" + } + }, + { + "group": "androidx.arch.core", + "module": "core-runtime", + "version": { + "requires": "2.1.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.5.1" + } + } + ], + "files": [ + { + "name": "lifecycle-livedata-core-2.5.1.aar", + "url": "lifecycle-livedata-core-2.5.1.aar", + "size": 10078, + "sha512": "1425f323a8248394f2a67509a4429b57f83b3b381357e0903d37c049e8c0332cf7453660572cb433397651f7eaa196fb6de94656c34e702a1d201a4c50652a43", + "sha256": "ee792103ca248bfaf150c45a93871e4cf7e8cebab990e0f62f7de5d4ff2f209f", + "sha1": "a55defc29b52baf41304c058c91dba38b5c7651c", + "md5": "0d81175396403490f8834cd6906b2b03" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "files": [ + { + "name": "lifecycle-livedata-core-2.5.1-sources.jar", + "url": "lifecycle-livedata-core-2.5.1-sources.jar", + "size": 6814, + "sha512": "e41cbf39485d124f79536b444e5d0ee38d52e993422c7882b4a55bf7bbf573d2fb39eb52ebeeab71222f577bf71c5c1967ce7ac7b6f78108ef6b46d5fb55cfb5", + "sha256": "a7260859d2991284ae553251a4ff9730f3b57c35d14128f9b079dd5db28958f1", + "sha1": "38ecd5651d87b6db994df01f93fc72d6e59b846a", + "md5": "1c8d3854faf03cbaa6d83d2f57345fa6" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom new file mode 100644 index 0000000..a845b6c --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.5.1/lifecycle-livedata-core-2.5.1.pom @@ -0,0 +1,54 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-livedata-core + 2.5.1 + aar + Android Lifecycle LiveData Core + Android Lifecycle LiveData Core + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.5.1 + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + androidx.arch.core + core-common + 2.1.0 + runtime + + + androidx.arch.core + core-runtime + 2.1.0 + runtime + aar + + + androidx.lifecycle + lifecycle-common + [2.5.1] + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar new file mode 100644 index 0000000..27b091c Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom new file mode 100644 index 0000000..8b38501 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.0.0/lifecycle-livedata-2.0.0.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + androidx.lifecycle + lifecycle-livedata + 2.0.0 + aar + Android Lifecycle LiveData + Android Lifecycle LiveData + https://developer.android.com/topic/libraries/architecture/index.html + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + http://source.android.com + + + + androidx.arch.core + core-runtime + 2.0.0 + aar + compile + + + androidx.lifecycle + lifecycle-livedata-core + 2.0.0 + aar + compile + + + androidx.arch.core + core-common + 2.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module new file mode 100644 index 0000000..d35c09f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.module @@ -0,0 +1,841 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-2.10.0-sources.jar", + "url": "lifecycle-livedata-2.10.0-sources.jar", + "size": 17750, + "sha512": "40e49d976f62f8c335b4093aa7eb5bc2ae383ee99178ce7dde0ee46a00172298529ed10250c6eb5b666b4392cab94ce815e8b18356f9fbe920a35b92605b67f2", + "sha256": "17b5c634db9da69c4d0d50d4d23ec83961a119aa5eb8ae7fce2d75ca9bbd2e89", + "sha1": "c7b9b48ba7397874fd93123e723ec791c14bf2c3", + "md5": "d593dbef8b58166d078186c968a949c3" + } + ] + }, + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.arch.core", + "module": "core-runtime", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-2.10.0.aar", + "url": "lifecycle-livedata-2.10.0.aar", + "size": 55037, + "sha512": "538a5746ce7e09ed40e220ba7c0662fb134e1a863ff0584f521bf47dc94c42d6ddeb261a2d3ee4014588334b07fc73db0778866a08e9539c357d983c4a47499b", + "sha256": "3e8c009fc88da1c52e4ed05a81269d5ac9bd405046f300307f5e3a17e201a6df", + "sha1": "ce0b5f930a64679a621c8bc67c060a7820c0a57b", + "md5": "8c1d4d31ac300b58e3a0210bec55ce5a" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.arch.core", + "module": "core-runtime", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-2.10.0.aar", + "url": "lifecycle-livedata-2.10.0.aar", + "size": 55037, + "sha512": "538a5746ce7e09ed40e220ba7c0662fb134e1a863ff0584f521bf47dc94c42d6ddeb261a2d3ee4014588334b07fc73db0778866a08e9539c357d983c4a47499b", + "sha256": "3e8c009fc88da1c52e4ed05a81269d5ac9bd405046f300307f5e3a17e201a6df", + "sha1": "ce0b5f930a64679a621c8bc67c060a7820c0a57b", + "md5": "8c1d4d31ac300b58e3a0210bec55ce5a" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-livedata is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-livedata-2.10.0-versionMetadata.json", + "url": "lifecycle-livedata-2.10.0-versionMetadata.json", + "size": 4142, + "sha512": "53ca1849ce69df9ec889c98f3007b6c1362c21b585e0a856dd33649549bd29266fe779e20c0b080bb6a879e92b62188d02840eb5895c2f726d6e5db7d9d90c92", + "sha256": "7aef82ea2272f506fedf6e6383e195828cc03808d9f588e7cdb79784cfa2293c", + "sha1": "801fd9f2a88649de2c7c644c037f19bce41b88eb", + "md5": "cb0e81f74d9442eab01a9631a9bccc95" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar new file mode 100644 index 0000000..dd0226f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module new file mode 100644 index 0000000..6388211 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module @@ -0,0 +1,688 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime.aar", + "url": "lifecycle-runtime-android-2.10.0.aar", + "size": 80161, + "sha512": "98566f7511856528efbb1ff1a25c24caf9a6a98d991ac49496755496aa7cc1a4667cd61715b8eb1122672df6fc4ae02126b7685c8d0bfa9d0c8ac5f957786645", + "sha256": "2193a1573d623f37b20c7d27d1a8f903a72f651cc6f32e5794f85dda744fee75", + "sha1": "40be68aed3188a20bbf08da48a4ef65ebc4abfe0", + "md5": "327b4eaa6050558c7e004b4d0b1715d0" + } + ] + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.arch.core", + "module": "core-runtime", + "version": { + "requires": "2.2.0" + } + }, + { + "group": "androidx.core", + "module": "core-viewtree", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.profileinstaller", + "module": "profileinstaller", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jspecify", + "module": "jspecify", + "version": { + "requires": "1.0.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-runtime.aar", + "url": "lifecycle-runtime-android-2.10.0.aar", + "size": 80161, + "sha512": "98566f7511856528efbb1ff1a25c24caf9a6a98d991ac49496755496aa7cc1a4667cd61715b8eb1122672df6fc4ae02126b7685c8d0bfa9d0c8ac5f957786645", + "sha256": "2193a1573d623f37b20c7d27d1a8f903a72f651cc6f32e5794f85dda744fee75", + "sha1": "40be68aed3188a20bbf08da48a4ef65ebc4abfe0", + "md5": "327b4eaa6050558c7e004b4d0b1715d0" + } + ] + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-android-2.10.0-sources.jar", + "url": "lifecycle-runtime-android-2.10.0-sources.jar", + "size": 23154, + "sha512": "73d21e9522a60296936da90a91872c02f3badfaec2b97c05f685995c4ea7f667be28f97b2c8ac66034350c01743c5d4b52ffbe057bcf0c31217cf25dcaeeeb3c", + "sha256": "d231316b84e92d179c4fc2bce85b560fe00f32b36bd4b5bde901a6ded60ca7b5", + "sha1": "6696da66195e08dada195ae27819da26f4273cb0", + "md5": "16f355bcea88e31a07e8cd8e55b570f9" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom new file mode 100644 index 0000000..b046611 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.pom @@ -0,0 +1,203 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime-android + 2.10.0 + aar + Lifecycle Runtime + Android Lifecycle Runtime + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2017 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + org.jetbrains.androidx.lifecycle + lifecycle-runtime + 2.9.5 + + + + + + androidx.arch.core + core-runtime + 2.2.0 + runtime + + + androidx.profileinstaller + profileinstaller + 1.4.0 + runtime + aar + + + org.jspecify + jspecify + 1.0.0 + compile + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.9.0 + compile + + + androidx.core + core-viewtree + 1.0.0 + runtime + aar + + + androidx.lifecycle + lifecycle-common-jvm + [2.10.0] + compile + + + androidx.arch.core + core-common + 2.2.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module new file mode 100644 index 0000000..73f7a37 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module @@ -0,0 +1,631 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx.aar", + "url": "lifecycle-runtime-ktx-android-2.10.0.aar", + "size": 5337, + "sha512": "50e2e514780d7b6e07b6d6fa5400d1a2c171b1f881ed60a5c334ab8fff6d879fed61ab08b59fb3db716f92926656606d2db13be864928fbb07c4cef445845fc3", + "sha256": "871883703339f87284d232cb436e317c6f4af5612d92b43f27c6b13b92109fa7", + "sha1": "95f019107651ac50e0402896f6eb2e9944e344be", + "md5": "ce7d2a8fc40a54f816d1e1621318408a" + } + ] + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx.aar", + "url": "lifecycle-runtime-ktx-android-2.10.0.aar", + "size": 5337, + "sha512": "50e2e514780d7b6e07b6d6fa5400d1a2c171b1f881ed60a5c334ab8fff6d879fed61ab08b59fb3db716f92926656606d2db13be864928fbb07c4cef445845fc3", + "sha256": "871883703339f87284d232cb436e317c6f4af5612d92b43f27c6b13b92109fa7", + "sha1": "95f019107651ac50e0402896f6eb2e9944e344be", + "md5": "ce7d2a8fc40a54f816d1e1621318408a" + } + ] + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-android-2.10.0-sources.jar", + "url": "lifecycle-runtime-ktx-android-2.10.0-sources.jar", + "size": 4448, + "sha512": "c7e2ae0ea4988dcba3f97532b9ea0cf78955da6f3a1356a2131f04cfbc9c874bdbf5412fc72dae90a7adf1115289158ecc9e4c2726e166632e8c7398108b585b", + "sha256": "c5df5b7bfa9c6d61ef14047bd9de207db688188c0d5d7b5f5c4ad6613806b1fc", + "sha1": "17e8e0f2128f99c4c3543e2c1529d3c75e94eb13", + "md5": "ec4925012898d8e9ca06f365036f3872" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar new file mode 100644 index 0000000..59cc69b Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar new file mode 100644 index 0000000..fa7c328 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module new file mode 100644 index 0000000..8861e10 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.module @@ -0,0 +1,821 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-metadata-2.10.0.jar", + "url": "lifecycle-runtime-ktx-2.10.0.jar", + "size": 4835, + "sha512": "5cfaec5cf07804ca53668cc006a26cf273f4b4a20e489f0f1d82217daff2274a850a6291fb51c750a9a6a2150b7781e81595212b1d10bd024c22af4b778cda1c", + "sha256": "5d74d1e9c45d538aafc48b2313e598eff9b4a13bfee9f2f3d776f5274d5cde22", + "sha1": "fb55f05d0fa494c4cbb84d7814fcd16e55c2319f", + "md5": "098b2ab23a512228e8f635a73e4364a8" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-kotlin-2.10.0-sources.jar", + "url": "lifecycle-runtime-ktx-2.10.0-sources.jar", + "size": 4448, + "sha512": "c7e2ae0ea4988dcba3f97532b9ea0cf78955da6f3a1356a2131f04cfbc9c874bdbf5412fc72dae90a7adf1115289158ecc9e4c2726e166632e8c7398108b585b", + "sha256": "c5df5b7bfa9c6d61ef14047bd9de207db688188c0d5d7b5f5c4ad6613806b1fc", + "sha1": "17e8e0f2128f99c4c3543e2c1529d3c75e94eb13", + "md5": "ec4925012898d8e9ca06f365036f3872" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-2.10.0-multiplatform-sources.jar", + "url": "lifecycle-runtime-ktx-2.10.0-multiplatform-sources.jar", + "size": 4740, + "sha512": "5fe8d9c2ea9b9eb883dccee1bf01c51bacbc00fdaf6e29339a3e0b0d953224215f16a396cde65b69aebb3e71813267b0994fd25f84765fad25610eeff2981856", + "sha256": "9a5b212cb7751d756513357f6b012901e7ca0caee4229544c64b57aa3d09f029", + "sha1": "3889f4f8f719f05a3bcafee62ac501d66b0ab15b", + "md5": "22d0c116a002878882586567cb679cc0" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "lifecycle-runtime-ktx-2.10.0-versionMetadata.json", + "size": 5626, + "sha512": "6dd830cfb7beebaefdd6f8d295b48713eaeebf9499f6ddc855c926143422891c88c245cfecd7699e4323e25ba5baabf478cdd9461f8f18d7d34e246a23a2371c", + "sha256": "6a501c6e66630ef6e7ee98833fa45736afbf25ffbb04a242f00f3de35750e4c7", + "sha1": "cece383c8c5dcbfdc9c4436129111bc5cc433058", + "md5": "864067359cadf96bdda260c705ace2c1" + } + ] + }, + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-android", + "version": "2.10.0" + } + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-android", + "version": "2.10.0" + } + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-android", + "version": "2.10.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom new file mode 100644 index 0000000..62bedd2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.10.0/lifecycle-runtime-ktx-2.10.0.pom @@ -0,0 +1,167 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + aar + Lifecycle Kotlin Extensions + Kotlin extensions for 'lifecycle' artifact + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2019 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + + + + androidx.annotation + annotation + 1.9.1 + runtime + + + androidx.lifecycle + lifecycle-runtime + [2.10.0] + runtime + + + androidx.lifecycle + lifecycle-runtime-ktx-android + 2.10.0 + aar + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar new file mode 100644 index 0000000..aa3caa4 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module new file mode 100644 index 0000000..3117f15 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.module @@ -0,0 +1,627 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": "2.6.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-2.6.1.aar", + "url": "lifecycle-runtime-ktx-2.6.1.aar", + "size": 61591, + "sha512": "f0b53fa1ce84ddd56eaef082455f1f06deacd3e602085b9faba0d95e795baf7b1007e6726f8f3e71a65355e11eaebac9a6c8359f7c2fad044da51696076ded15", + "sha256": "28a0b834f40edd52e2f8010bdc3057d2a0cc76aaa5ac9311adb0b9ce919ca9cc", + "sha1": "33decb94ec41360796e2160159bdca7dde688d0f", + "md5": "3567ed247500cd4c0e4b9ccad3f6d37e" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-2.6.1.aar", + "url": "lifecycle-runtime-ktx-2.6.1.aar", + "size": 61591, + "sha512": "f0b53fa1ce84ddd56eaef082455f1f06deacd3e602085b9faba0d95e795baf7b1007e6726f8f3e71a65355e11eaebac9a6c8359f7c2fad044da51696076ded15", + "sha256": "28a0b834f40edd52e2f8010bdc3057d2a0cc76aaa5ac9311adb0b9ce919ca9cc", + "sha1": "33decb94ec41360796e2160159bdca7dde688d0f", + "md5": "3567ed247500cd4c0e4b9ccad3f6d37e" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-runtime-ktx-2.6.1-sources.jar", + "url": "lifecycle-runtime-ktx-2.6.1-sources.jar", + "size": 7211, + "sha512": "100fd52d3422a2b8d95ebcf26ea99ce1c8eeafc5ef6676fb37a030b35b36da617e45c56748c41d7f5b2061ff78735a29573b63715e66fdf82443e2a51b03b4b5", + "sha256": "8503ed85cf65d200b9079e660a2b2c645cb322d74558034b08d364f0e349662a", + "sha1": "6ad3251adb760573a519eebbdfb90fd2384b185d", + "md5": "b30c0ae8153c899de498250c2a31db60" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom new file mode 100644 index 0000000..7318a4c --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx/2.6.1/lifecycle-runtime-ktx-2.6.1.pom @@ -0,0 +1,179 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + aar + Android Lifecycle Kotlin Extensions + Kotlin extensions for 'lifecycle' artifact + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 + 2019 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.6.1 + + + androidx.lifecycle + lifecycle-common-java8 + 2.6.1 + + + androidx.lifecycle + lifecycle-compiler + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-truth + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-process + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.6.1 + + + androidx.lifecycle + lifecycle-service + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + + + + + + androidx.annotation + annotation + 1.0.0 + compile + + + androidx.lifecycle + lifecycle-runtime + [2.6.1] + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar new file mode 100644 index 0000000..cb6bf15 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar new file mode 100644 index 0000000..7b1bf01 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module new file mode 100644 index 0000000..648cf55 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.module @@ -0,0 +1,1760 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-runtime-metadata-2.10.0.jar", + "url": "lifecycle-runtime-2.10.0.jar", + "size": 16198, + "sha512": "466ab3d2108cbc036317128475d209d3ce197647cdf8429d628ecfb17fdc12c4f465565b7e842a6aca381ed2d2e936fc255f86f1afcfe80a4e8754acf6d340fd", + "sha256": "d944d204a450ed01a32effccfb4832bf9d6460090b717a88a013381d204ab639", + "sha1": "97a9e1dd76b37012dd8ce84d3aab4aafe76d84ba", + "md5": "8918a2dd9ae82552f6d7ecfef6438ff0" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-kotlin-2.10.0-sources.jar", + "url": "lifecycle-runtime-2.10.0-sources.jar", + "size": 22332, + "sha512": "444110445c86dc51f0841cf0124106737d3f98157361cb8f6cf28927365c306240a056c6aefa479294215f90b949c28ccfd2982ccc489b55f035842b54fbd186", + "sha256": "728d94fa95980ab0f3839682bded2f7bab8c97f180badc04330cf88b7a061cc0", + "sha1": "418c10fc765fbaf8fae84c79818adbe53f09bdab", + "md5": "bb5ca5f239fddd01ba83db394b6af87a" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-runtime-2.10.0-multiplatform-sources.jar", + "url": "lifecycle-runtime-2.10.0-multiplatform-sources.jar", + "size": 35690, + "sha512": "43ddc4d14195f892b5c7e02722a95e093cfb38121033fa97401a1a4efbce2cd63676c6a600a0ae7b551a7426e2c4175b19faeb0084dadfbb7653cd95714c12e5", + "sha256": "856505ae2b07fb607029bff771502f8f1e9b97e6e1c646824322948970671d95", + "sha1": "0fffb8ee33a5112f585fe4fdf6f9319a1a528a55", + "md5": "ab9e2de004f7dec532ccf9f4b097f06c" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-runtime is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "lifecycle-runtime-2.10.0-versionMetadata.json", + "size": 4573, + "sha512": "14a8f8bb632b6726f89177baf41bbd4f910d53ae94b0234095d1c53bc2fac91dd48c8333b606f1478abfe3c9053fbb47e9e60d8695d1daef2b6456d99a5f866e", + "sha256": "2bb6ae084e357e56f7d62bb608de80f069c460e118d98a75b1dbe745349ed38e", + "sha1": "cf74d0d0bf69f658fe4bec12e39302a50f356446", + "md5": "fe09da7ea5b9562e9f26268a1c47e901" + } + ] + }, + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-android", + "version": "2.10.0" + } + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-android", + "version": "2.10.0" + } + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-android/2.10.0/lifecycle-runtime-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-android", + "version": "2.10.0" + } + }, + { + "name": "desktopApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-desktop", + "version": "2.10.0" + } + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosarm64/2.10.0/lifecycle-runtime-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iossimulatorarm64/2.10.0/lifecycle-runtime-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-iosx64/2.10.0/lifecycle-runtime-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-iosx64", + "version": "2.10.0" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-js", + "version": "2.10.0" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-js", + "version": "2.10.0" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-js/2.10.0/lifecycle-runtime-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-js", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-linuxarm64/2.10.0/lifecycle-runtime-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-linuxarm64/2.10.0/lifecycle-runtime-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-linuxx64/2.10.0/lifecycle-runtime-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-linuxx64/2.10.0/lifecycle-runtime-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosarm64/2.10.0/lifecycle-runtime-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-macosx64/2.10.0/lifecycle-runtime-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-macosx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-mingwx64/2.10.0/lifecycle-runtime-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-mingwx64/2.10.0/lifecycle-runtime-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosarm64/2.10.0/lifecycle-runtime-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvossimulatorarm64/2.10.0/lifecycle-runtime-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-tvosx64/2.10.0/lifecycle-runtime-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-runtime-wasm-js/2.10.0/lifecycle-runtime-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm32/2.10.0/lifecycle-runtime-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosarm64/2.10.0/lifecycle-runtime-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosdevicearm64/2.10.0/lifecycle-runtime-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchossimulatorarm64/2.10.0/lifecycle-runtime-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-runtime-watchosx64/2.10.0/lifecycle-runtime-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-watchosx64", + "version": "2.10.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom new file mode 100644 index 0000000..23d3aea --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom @@ -0,0 +1,172 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime + 2.10.0 + aar + Lifecycle Runtime + Android Lifecycle Runtime + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2017 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + org.jetbrains.androidx.lifecycle + lifecycle-runtime + 2.9.5 + + + + + + androidx.annotation + annotation + 1.9.1 + runtime + + + androidx.lifecycle + lifecycle-common + [2.10.0] + runtime + + + androidx.lifecycle + lifecycle-runtime-android + 2.10.0 + aar + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar new file mode 100644 index 0000000..96a8b4b Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module new file mode 100644 index 0000000..c8af0dc --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module @@ -0,0 +1,646 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel.aar", + "url": "lifecycle-viewmodel-android-2.10.0.aar", + "size": 64099, + "sha512": "9844c3668037a4e9ab0f826ae2d60d1b0b95176ebdbf0a9f3be5d5f7fa835ffbeb54c33fc56f6f506c9177acce792dacce5f8ef7a4792e150082eb3356c07059", + "sha256": "9303287030027ca0b8cf98a748ddeb121ec1bfa1312c0069428e4765bbabce78", + "sha1": "927c91fe0892e3f71d67cd430538475af9aefc29", + "md5": "02113908691c074620ce4b6d995c2f2f" + } + ] + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.core", + "module": "core-viewtree", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel.aar", + "url": "lifecycle-viewmodel-android-2.10.0.aar", + "size": 64099, + "sha512": "9844c3668037a4e9ab0f826ae2d60d1b0b95176ebdbf0a9f3be5d5f7fa835ffbeb54c33fc56f6f506c9177acce792dacce5f8ef7a4792e150082eb3356c07059", + "sha256": "9303287030027ca0b8cf98a748ddeb121ec1bfa1312c0069428e4765bbabce78", + "sha1": "927c91fe0892e3f71d67cd430538475af9aefc29", + "md5": "02113908691c074620ce4b6d995c2f2f" + } + ] + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-android-2.10.0-sources.jar", + "url": "lifecycle-viewmodel-android-2.10.0-sources.jar", + "size": 43144, + "sha512": "5d29e6a0ff10a4b99262b7b97e99d59f2cdb343a808e276e11d649e3fc65262abcf7f1bb0db95aa8bb3b0ed940aca5f02c64526d8ce2f890eaddc7a395c685fb", + "sha256": "7a544326f5a98a7091e33a4d0b78ab54db56feb1bfdac88382423200d4ada3c9", + "sha1": "adac1144ef521bf82be25279bc90de8bbd489703", + "md5": "0294b81f42b4451e033bad003d5a0ff7" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom new file mode 100644 index 0000000..8bcc92b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.pom @@ -0,0 +1,178 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-android + 2.10.0 + aar + Lifecycle ViewModel + Android Lifecycle ViewModel + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2017 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + org.jetbrains.androidx.lifecycle + lifecycle-viewmodel + 2.9.5 + + + + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.9.0 + compile + + + androidx.core + core-viewtree + 1.0.0 + runtime + aar + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module new file mode 100644 index 0000000..bdda8f6 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.module @@ -0,0 +1,792 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.10.0-sources.jar", + "url": "lifecycle-viewmodel-ktx-2.10.0-sources.jar", + "size": 4456, + "sha512": "3210804612a245fa73b486c4128db7505f2a69c52c220f82a4f2757c18f9a103a5869c101b5a0646ac63ea1759bf9a5b73fca7043937d59db689e48627129e67", + "sha256": "f15c9fbd9ade832f04d2deed9cdc1732697e63b8c34ffae0ada712197abcc6ec", + "sha1": "6b61248b684d6cc83a4855ef1b98dd76536d8ec7", + "md5": "c11d236a7f7df430fcfd0e95cbd2e66f" + } + ] + }, + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.10.0.aar", + "url": "lifecycle-viewmodel-ktx-2.10.0.aar", + "size": 5812, + "sha512": "45c2f93d084cbd479fed5a021f61c7b379d84fdd43c640a827a60afb240b9cc7b9d74ad664256ea20aae8e72d66308e8a813665686e4e20135d1c28dc4f72cf5", + "sha256": "54295ac86b67886dc0613e38f621c531995d0662005fc763e340e19a90994f84", + "sha1": "5d6ee8e35b6f1c771fc6e98db62005a05cfdefa9", + "md5": "8fe6803c2b0ee5aa740feb7df81c78d8" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.10.0.aar", + "url": "lifecycle-viewmodel-ktx-2.10.0.aar", + "size": 5812, + "sha512": "45c2f93d084cbd479fed5a021f61c7b379d84fdd43c640a827a60afb240b9cc7b9d74ad664256ea20aae8e72d66308e8a813665686e4e20135d1c28dc4f72cf5", + "sha256": "54295ac86b67886dc0613e38f621c531995d0662005fc763e340e19a90994f84", + "sha1": "5d6ee8e35b6f1c771fc6e98db62005a05cfdefa9", + "md5": "8fe6803c2b0ee5aa740feb7df81c78d8" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-ktx is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.10.0-versionMetadata.json", + "url": "lifecycle-viewmodel-ktx-2.10.0-versionMetadata.json", + "size": 1064, + "sha512": "039a18d778b0ffee554b3fd07f32f3a868e64657b390063295a157f4ac4857853989aa4bcf72c3b49cdc21b1ec163dafc4bc2cc70f8c7c6986eb2130bbbebda0", + "sha256": "0b7504ca8554d1df14e92a8f7993eae30cf7343537d3bdbb55d5910d69dc9de3", + "sha1": "5b77039c7e201889161f5edc00b99631d318b120", + "md5": "fdc4c2ceb77ccd95893781f948ba6670" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar new file mode 100644 index 0000000..adad0e5 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module new file mode 100644 index 0000000..6ae6344 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.module @@ -0,0 +1,613 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": "2.6.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.6.1.aar", + "url": "lifecycle-viewmodel-ktx-2.6.1.aar", + "size": 4793, + "sha512": "1a6dc42daacf9954856fcd15f436a05ab308a53991fe2dde7beaa5b5d7feb63d5c0a0768ccfbdde1edca32077ef5dc5a3543ba3ea21ea6ed7099e649f4bd5dd4", + "sha256": "7fc0fa234a3321b1f34db5862b17da83d1c62c1bc66ec2fd4f1bb0a771acfabb", + "sha1": "00a6214896fba4ed16b44b0c051e6ceea24be554", + "md5": "9df0b4895728001d6acb45d829cc9451" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.6.1.aar", + "url": "lifecycle-viewmodel-ktx-2.6.1.aar", + "size": 4793, + "sha512": "1a6dc42daacf9954856fcd15f436a05ab308a53991fe2dde7beaa5b5d7feb63d5c0a0768ccfbdde1edca32077ef5dc5a3543ba3ea21ea6ed7099e649f4bd5dd4", + "sha256": "7fc0fa234a3321b1f34db5862b17da83d1c62c1bc66ec2fd4f1bb0a771acfabb", + "sha1": "00a6214896fba4ed16b44b0c051e6ceea24be554", + "md5": "9df0b4895728001d6acb45d829cc9451" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-ktx-2.6.1-sources.jar", + "url": "lifecycle-viewmodel-ktx-2.6.1-sources.jar", + "size": 1410, + "sha512": "0d366e912ef3af47e3ae5b2119f41e7d26df08715e369bc0cd5116855c19ce4344d27c9dd331dc15283f36e9d41428d2d19b70410023efbd2c77ef970ba442a0", + "sha256": "dc9b84fecf2d5c7eade2d86e75a5c407c81209698e001fe822a5ed1896571d67", + "sha1": "a05e599dfc3c73f4dbbd43acef2fcaec28d0704a", + "md5": "588eac84e61d6f9ee3e62a2086187a90" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom new file mode 100644 index 0000000..7937de7 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.6.1/lifecycle-viewmodel-ktx-2.6.1.pom @@ -0,0 +1,173 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + aar + Android Lifecycle ViewModel Kotlin Extensions + Kotlin extensions for 'viewmodel' artifact + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 + 2018 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.6.1 + + + androidx.lifecycle + lifecycle-common-java8 + 2.6.1 + + + androidx.lifecycle + lifecycle-compiler + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-truth + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-process + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.6.1 + + + androidx.lifecycle + lifecycle-service + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + + + + + + androidx.lifecycle + lifecycle-viewmodel + [2.6.1] + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar new file mode 100644 index 0000000..fee982a Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module new file mode 100644 index 0000000..88bd648 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module @@ -0,0 +1,725 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.core", + "module": "core-ktx", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate.aar", + "url": "lifecycle-viewmodel-savedstate-android-2.10.0.aar", + "size": 56701, + "sha512": "077951adb910e82668cf911d9abf3e5ea1672858a9b81a4314224398fa518e332ef402270e477007b20e4983ad132bdeae638e0c5d2cad2f8f419f9b0135ed80", + "sha256": "19404239fa584322c2f81e9659e162bc011b746d29dc950a11d260624d83225e", + "sha1": "a7cc58b26d9dc7c9780dea3f2feb9b996f898412", + "md5": "41c156df4f794d67dc4092dde9010de4" + } + ] + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.core", + "module": "core-ktx", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate.aar", + "url": "lifecycle-viewmodel-savedstate-android-2.10.0.aar", + "size": 56701, + "sha512": "077951adb910e82668cf911d9abf3e5ea1672858a9b81a4314224398fa518e332ef402270e477007b20e4983ad132bdeae638e0c5d2cad2f8f419f9b0135ed80", + "sha256": "19404239fa584322c2f81e9659e162bc011b746d29dc950a11d260624d83225e", + "sha1": "a7cc58b26d9dc7c9780dea3f2feb9b996f898412", + "md5": "41c156df4f794d67dc4092dde9010de4" + } + ] + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-android-2.10.0-sources.jar", + "url": "lifecycle-viewmodel-savedstate-android-2.10.0-sources.jar", + "size": 31301, + "sha512": "cc11c5edab1044667ceb472b86810f269075c69d321512b7c73de5ef39d6eb3c28ef18687d6756bab4d8cd9be4ea03eea0236ae6eb9bb97e31cae7591208e260", + "sha256": "87ceec2affc9837225454b3db5abc4f3ed71db354edaccae12648823e88e6e29", + "sha1": "562dc1571caa9843876f2dee0fcc24b57b25c7b8", + "md5": "8b0a530ecb421f64e2bcbc0883eaa854" + }, + { + "name": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", + "url": "lifecycle-viewmodel-savedstate-android-2.10.0-samples-sources.jar", + "size": 5593, + "sha512": "dd0f37b2e8fed03d02d9c5e877884ac96df5f2a3ce667e81136d125efff42bfa5ba7bb3761ade2b1d0305a06e2c9e733fb6b3952467dc5abb2243a77cb5eaddc", + "sha256": "db875f4851cbc4a6c89085aa0acc8b9517c9df7ad2c987da1c9111c2121247bb", + "sha1": "f0e6ff50f158c97ed29349cdb28ca5b372205f46", + "md5": "1d2700ef8f867b9eb49a77117a301aeb" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom new file mode 100644 index 0000000..72c8353 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.pom @@ -0,0 +1,211 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-savedstate-android + 2.10.0 + aar + Lifecycle ViewModel with SavedState + Android Lifecycle ViewModel + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2018 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + org.jetbrains.androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.9.5 + + + + + + androidx.lifecycle + lifecycle-livedata-core + [2.10.0] + compile + aar + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.7.3 + compile + + + androidx.core + core-ktx + 1.2.0 + compile + aar + + + androidx.lifecycle + lifecycle-viewmodel-android + [2.10.0] + compile + aar + + + androidx.savedstate + savedstate-android + 1.4.0 + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + androidx.lifecycle + lifecycle-common-jvm + [2.10.0] + runtime + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.9.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar new file mode 100644 index 0000000..be8cedb Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar new file mode 100644 index 0000000..970bed0 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module new file mode 100644 index 0000000..4abb712 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.module @@ -0,0 +1,1797 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-metadata-2.10.0.jar", + "url": "lifecycle-viewmodel-savedstate-2.10.0.jar", + "size": 19736, + "sha512": "159424b37eece6a86367686f910cd0858c54c18b412b95df717585889720297307f4c902dd0b93e0749053fc28e2261d8893857910e68e19dcd49752be87a752", + "sha256": "b18144e91c4780b3b05943256053d7d4dccc45b153066d5f5ffce1839aa0511b", + "sha1": "b18297610ea1c6f5ee6035b9222800e497a43ef6", + "md5": "42b334f5ebac2576fd58d3e496eed52e" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-kotlin-2.10.0-sources.jar", + "url": "lifecycle-viewmodel-savedstate-2.10.0-sources.jar", + "size": 24809, + "sha512": "205b6af559457f22cd66f8ce0e6db968288510fc8d0928cad434bb1ced583b8a0c752de7ceb2f941d47c58ae2345f672bef4f3248822486a3c73dbb75e090386", + "sha256": "4b50b4e8a373533f6bece7076d530c85440d552bbb54ec5c73848552b414f4c4", + "sha1": "74dd525f1d56acdf477c40031bc1c5b9f96618df", + "md5": "a8fac429249eba6d98ee7ce7fdbd954a" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-2.10.0-multiplatform-sources.jar", + "url": "lifecycle-viewmodel-savedstate-2.10.0-multiplatform-sources.jar", + "size": 38115, + "sha512": "15b166a9f0a95fc0a7b340f6c68dfd350a0b42d899df40e06c06ad21bde3bd3681f2c36414b960e6b46510d6d3b0735198453bbebbed9e12c953079245d7f994", + "sha256": "dc41bd9708b0b190ffa6afa3d57390de2c351169cfa57fc951d609a41ecace59", + "sha1": "74c5f4329fca00afb5b800ba5c49f44dbefd1fce", + "md5": "76eda4664a1f968f702a6d4f695e7942" + }, + { + "name": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", + "url": "lifecycle-viewmodel-savedstate-2.10.0-samples-sources.jar", + "size": 5593, + "sha512": "dd0f37b2e8fed03d02d9c5e877884ac96df5f2a3ce667e81136d125efff42bfa5ba7bb3761ade2b1d0305a06e2c9e733fb6b3952467dc5abb2243a77cb5eaddc", + "sha256": "db875f4851cbc4a6c89085aa0acc8b9517c9df7ad2c987da1c9111c2121247bb", + "sha1": "f0e6ff50f158c97ed29349cdb28ca5b372205f46", + "md5": "1d2700ef8f867b9eb49a77117a301aeb" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel-savedstate is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "lifecycle-viewmodel-savedstate-2.10.0-versionMetadata.json", + "size": 5122, + "sha512": "2b5fafa87939102f486820ab19e069d3c4a510423525ffce5ca43f9d99fd282ab381ee00beabc38756f2226894027096175f8becbd5f4b0cb40cfa4f8991c36c", + "sha256": "b0972273e19f33910a84ac2d6d473bf3f0c352bbb0739e3ee029a5ad3142bb4c", + "sha1": "90494ad158fad7613808356c4e6698c1b6029dbc", + "md5": "b1ccdf3f2aff43b95f987014514eecae" + } + ] + }, + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-android", + "version": "2.10.0" + } + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-android", + "version": "2.10.0" + } + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-android/2.10.0/lifecycle-viewmodel-savedstate-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-android", + "version": "2.10.0" + } + }, + { + "name": "desktopApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-desktop", + "version": "2.10.0" + } + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosarm64/2.10.0/lifecycle-viewmodel-savedstate-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-iosx64/2.10.0/lifecycle-viewmodel-savedstate-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-iosx64", + "version": "2.10.0" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-js", + "version": "2.10.0" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-js", + "version": "2.10.0" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-js/2.10.0/lifecycle-viewmodel-savedstate-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-js", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-linuxarm64/2.10.0/lifecycle-viewmodel-savedstate-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-linuxarm64/2.10.0/lifecycle-viewmodel-savedstate-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-linuxx64/2.10.0/lifecycle-viewmodel-savedstate-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-linuxx64/2.10.0/lifecycle-viewmodel-savedstate-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosarm64/2.10.0/lifecycle-viewmodel-savedstate-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-macosx64/2.10.0/lifecycle-viewmodel-savedstate-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-macosx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-mingwx64/2.10.0/lifecycle-viewmodel-savedstate-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-mingwx64/2.10.0/lifecycle-viewmodel-savedstate-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosarm64/2.10.0/lifecycle-viewmodel-savedstate-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-tvosx64/2.10.0/lifecycle-viewmodel-savedstate-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-wasm-js/2.10.0/lifecycle-viewmodel-savedstate-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm32/2.10.0/lifecycle-viewmodel-savedstate-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosarm64/2.10.0/lifecycle-viewmodel-savedstate-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosdevicearm64/2.10.0/lifecycle-viewmodel-savedstate-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-savedstate-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-savedstate-watchosx64/2.10.0/lifecycle-viewmodel-savedstate-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate-watchosx64", + "version": "2.10.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom new file mode 100644 index 0000000..c68ffc4 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.10.0/lifecycle-viewmodel-savedstate-2.10.0.pom @@ -0,0 +1,196 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.10.0 + aar + Lifecycle ViewModel with SavedState + Android Lifecycle ViewModel + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.10.0 + 2018 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.10.0 + + + androidx.lifecycle + lifecycle-common-java8 + 2.10.0 + + + androidx.lifecycle + lifecycle-compiler + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-process + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.10.0 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-service + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + org.jetbrains.androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.9.5 + + + + + + androidx.annotation + annotation + 1.9.1 + runtime + + + org.jetbrains.kotlinx + kotlinx-serialization-core + 1.7.3 + runtime + + + androidx.lifecycle + lifecycle-viewmodel + [2.10.0] + runtime + + + androidx.lifecycle + lifecycle-common + [2.10.0] + runtime + + + androidx.lifecycle + lifecycle-viewmodel-savedstate-android + 2.10.0 + aar + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + runtime + + + androidx.savedstate + savedstate + 1.4.0 + runtime + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar new file mode 100644 index 0000000..d59fe1f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module new file mode 100644 index 0000000..673b42d --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.module @@ -0,0 +1,669 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": "2.6.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.core", + "module": "core-ktx", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-2.6.1.aar", + "url": "lifecycle-viewmodel-savedstate-2.6.1.aar", + "size": 39559, + "sha512": "6cefe9ad510a5d43412fe9a9ce5c0e6ebffa3086e31094675e389aeea285053a98f3516244ea92509c2724b848e3041ffa0c5d7cff4fc67e906165d417744195", + "sha256": "c82f89221adbe19df7c7adbab63f4ecc857fc746e3c9494256ab8fa5c20491b2", + "sha1": "7cac77a315e1c8235a1f0c7d041c3c5e565f0f4b", + "md5": "2ec5a2c5c6114f5882fc80bc7b8cfbea" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.core", + "module": "core-ktx", + "version": { + "requires": "1.2.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-android", + "version": { + "requires": "1.6.4" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-2.6.1.aar", + "url": "lifecycle-viewmodel-savedstate-2.6.1.aar", + "size": 39559, + "sha512": "6cefe9ad510a5d43412fe9a9ce5c0e6ebffa3086e31094675e389aeea285053a98f3516244ea92509c2724b848e3041ffa0c5d7cff4fc67e906165d417744195", + "sha256": "c82f89221adbe19df7c7adbab63f4ecc857fc746e3c9494256ab8fa5c20491b2", + "sha1": "7cac77a315e1c8235a1f0c7d041c3c5e565f0f4b", + "md5": "2ec5a2c5c6114f5882fc80bc7b8cfbea" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-savedstate-2.6.1-sources.jar", + "url": "lifecycle-viewmodel-savedstate-2.6.1-sources.jar", + "size": 15704, + "sha512": "e2ba4aed991d3e67184876b2853c768d8e68486a47628d0e31e89d287b36bf585c6e82255f11cb534018cf3066bb2417e6a716c0d60870306332c755a52e58e5", + "sha256": "3d6849e0ae21524fee6fdf4c48bd577451734ed2dbfa354b43ae0cfed20b3f2a", + "sha1": "25b778ef25c3f95955b1cc1d67ca891d85a11f77", + "md5": "62afa36a6e35e4a5069fe38dd9d4f6a4" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom new file mode 100644 index 0000000..d1f901b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate/2.6.1/lifecycle-viewmodel-savedstate-2.6.1.pom @@ -0,0 +1,200 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + aar + Android Lifecycle ViewModel with SavedState + Android Lifecycle ViewModel + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 + 2018 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.6.1 + + + androidx.lifecycle + lifecycle-common-java8 + 2.6.1 + + + androidx.lifecycle + lifecycle-compiler + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-truth + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-process + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.6.1 + + + androidx.lifecycle + lifecycle-service + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + + + + + + androidx.annotation + annotation + 1.0.0 + compile + + + androidx.core + core-ktx + 1.2.0 + compile + aar + + + androidx.lifecycle + lifecycle-livedata-core + [2.6.1] + compile + aar + + + androidx.lifecycle + lifecycle-viewmodel + [2.6.1] + compile + aar + + + androidx.savedstate + savedstate + 1.2.1 + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar new file mode 100644 index 0000000..c7490bc Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module new file mode 100644 index 0000000..8c9a800 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.module @@ -0,0 +1,1760 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": "2.10.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14428372" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "org.jetbrains.androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": { + "requires": "2.9.5" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-metadata-2.10.0.jar", + "url": "lifecycle-viewmodel-2.10.0.jar", + "size": 31692, + "sha512": "e7433ca937e837616f0c50ba5b09becdc5bde84c4369b6dd4fa5e13c869331f9e1064903b2743f1f6dbd35c9d5eb09f207b67f6c5d3fbf589d20acb15cc689cd", + "sha256": "508bf3284757169fc57f42b84bef0b8538c93af2bd0bec5ba3efe93d45a5bf79", + "sha1": "5f4afeab882b1aff0ac00bc245b8e7cfb11666e5", + "md5": "45b30da4ea1402674856ed74347d6d22" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-kotlin-2.10.0-sources.jar", + "url": "lifecycle-viewmodel-2.10.0-sources.jar", + "size": 42513, + "sha512": "c5698c25b994eab901b42ad4a07c60bc3cc7e5c7467a1738d26f3f3d0489d3df352b868050848122c409a6795de2ead204981b900d66efb5918548b2b7f0b8c0", + "sha256": "f34e746386dc027b7756bc0d4712bd8c26e4e74ab3c16436ee4395a7feed08f9", + "sha1": "e22dbd71994754dfba7d76141949eda17be42490", + "md5": "77f1b84c2f7e4e6e588ecdbe9bcafd5e" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-2.10.0-multiplatform-sources.jar", + "url": "lifecycle-viewmodel-2.10.0-multiplatform-sources.jar", + "size": 63482, + "sha512": "897ddbdc2cfef7d272e13a8a7bfdbccd5af7d754fbc412d6eda973c27693c9a4f5c8853ab4110ee1a1aa0a353abac48c982b510833e938912c2505e7bdca55e0", + "sha256": "2c303719de61f06645bd5d23814e208c0dfc5b527c20561c33591b47062f2e77", + "sha1": "c6d0816eb3933b284eb7f32b6f6e71ca2945e6cc", + "md5": "56e9bab3eb393df7b0bcb2787eee0ead" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-testing", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-navigation3", + "version": { + "requires": "2.10.0" + }, + "reason": "lifecycle-viewmodel is in atomic group androidx.lifecycle" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "lifecycle-viewmodel-2.10.0-versionMetadata.json", + "size": 12266, + "sha512": "19caac7d559245e6f50e18e8f0bf799a9865323af10e72dc92e5c941f97ba4b4c43a8f852842b61f12dec0f18705d0f3dea0ed259d084356b77d0c8ec7f76b98", + "sha256": "33ab0830cf651d0ee92252d86c7a0923e75465df6b1a5a9cc26651e91fcd3e0f", + "sha1": "a7ced24c07832c16d4c1524a5024e4a076140ef8", + "md5": "06e4e591668e68dbb0929f17b29f7568" + } + ] + }, + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-android", + "version": "2.10.0" + } + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-android", + "version": "2.10.0" + } + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-android/2.10.0/lifecycle-viewmodel-android-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-android", + "version": "2.10.0" + } + }, + { + "name": "desktopApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-desktop", + "version": "2.10.0" + } + }, + { + "name": "desktopSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-desktop", + "version": "2.10.0" + } + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosarm64/2.10.0/lifecycle-viewmodel-iosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iossimulatorarm64/2.10.0/lifecycle-viewmodel-iossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosx64", + "version": "2.10.0" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-iosx64/2.10.0/lifecycle-viewmodel-iosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-iosx64", + "version": "2.10.0" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-js", + "version": "2.10.0" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-js", + "version": "2.10.0" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-js/2.10.0/lifecycle-viewmodel-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-js", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-linuxarm64/2.10.0/lifecycle-viewmodel-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-linuxarm64/2.10.0/lifecycle-viewmodel-linuxarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-linuxarm64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-linuxx64/2.10.0/lifecycle-viewmodel-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-linuxx64/2.10.0/lifecycle-viewmodel-linuxx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-linuxx64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosarm64/2.10.0/lifecycle-viewmodel-macosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosarm64", + "version": "2.10.0" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosx64", + "version": "2.10.0" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-macosx64/2.10.0/lifecycle-viewmodel-macosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-macosx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-mingwx64/2.10.0/lifecycle-viewmodel-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-mingwx64/2.10.0/lifecycle-viewmodel-mingwx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-mingwx64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosarm64/2.10.0/lifecycle-viewmodel-tvosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvossimulatorarm64/2.10.0/lifecycle-viewmodel-tvossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-tvosx64/2.10.0/lifecycle-viewmodel-tvosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-tvosx64", + "version": "2.10.0" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-wasm-js/2.10.0/lifecycle-viewmodel-wasm-js-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-wasm-js", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm32/2.10.0/lifecycle-viewmodel-watchosarm32-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm32", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosarm64/2.10.0/lifecycle-viewmodel-watchosarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosdevicearm64/2.10.0/lifecycle-viewmodel-watchosdevicearm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosdevicearm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchossimulatorarm64/2.10.0/lifecycle-viewmodel-watchossimulatorarm64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchossimulatorarm64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosx64", + "version": "2.10.0" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../lifecycle-viewmodel-watchosx64/2.10.0/lifecycle-viewmodel-watchosx64-2.10.0.module", + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-watchosx64", + "version": "2.10.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar new file mode 100644 index 0000000..cfd1a8a Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module new file mode 100644 index 0000000..45600c9 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.module @@ -0,0 +1,599 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel", + "version": "2.6.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0-rc-2" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-2.6.1.aar", + "url": "lifecycle-viewmodel-2.6.1.aar", + "size": 39793, + "sha512": "c43bff5e79fa146f2cfe0f71719113b7a0a19896128aecf9aec94a5d1186de4c77896c5c61dc3e6f3ba3ee297a1f72ecd6b4f2e58a42867724253f33f968d072", + "sha256": "e4ff4338999e1c6c9c724719f5d4aa7dd61bf6f545d5256a27a9d375df9f2330", + "sha1": "fa35bfdbbe0e7df1573e377cbdd15de35176141d", + "md5": "ca7006a38d89dbf4791160763bc88505" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-2.6.1.aar", + "url": "lifecycle-viewmodel-2.6.1.aar", + "size": 39793, + "sha512": "c43bff5e79fa146f2cfe0f71719113b7a0a19896128aecf9aec94a5d1186de4c77896c5c61dc3e6f3ba3ee297a1f72ecd6b4f2e58a42867724253f33f968d072", + "sha256": "e4ff4338999e1c6c9c724719f5d4aa7dd61bf6f545d5256a27a9d375df9f2330", + "sha1": "fa35bfdbbe0e7df1573e377cbdd15de35176141d", + "md5": "ca7006a38d89dbf4791160763bc88505" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common-java8", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-compiler", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-core-truth", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-livedata-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-process", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-reactivestreams-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-ktx-lint", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-runtime-testing", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-service", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-compose-samples", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-ktx", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-viewmodel-savedstate", + "version": { + "requires": "2.6.1" + } + } + ], + "files": [ + { + "name": "lifecycle-viewmodel-2.6.1-sources.jar", + "url": "lifecycle-viewmodel-2.6.1-sources.jar", + "size": 16948, + "sha512": "bbb30f6445e60375a5fc87fcd7eb9e88143fb04a50f70a648620fa61ebebc4357ce40cdaaeceec4efdaf5b12da1cf2321b6ca8f561ec6effcccd5aa73bc2f3f0", + "sha256": "4eed85c3e86326da8b6949fd3964d2380aa5c56730de402e3c6f1c6d747596e0", + "sha1": "dc2aa94a7174f4b67e6923496dc195cbf726a63b", + "md5": "af7cb9f20450bc2d43f4fefc060cacb5" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom new file mode 100644 index 0000000..d8bfbd5 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.6.1/lifecycle-viewmodel-2.6.1.pom @@ -0,0 +1,166 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + aar + Android Lifecycle ViewModel + Android Lifecycle ViewModel + https://developer.android.com/jetpack/androidx/releases/lifecycle#2.6.1 + 2017 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.lifecycle + lifecycle-common + 2.6.1 + + + androidx.lifecycle + lifecycle-common-java8 + 2.6.1 + + + androidx.lifecycle + lifecycle-compiler + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-core-truth + 2.6.1 + + + androidx.lifecycle + lifecycle-livedata-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-process + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams + 2.6.1 + + + androidx.lifecycle + lifecycle-reactivestreams-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-ktx-lint + 2.6.1 + + + androidx.lifecycle + lifecycle-runtime-testing + 2.6.1 + + + androidx.lifecycle + lifecycle-service + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-compose-samples + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + + + + + + androidx.annotation + annotation + 1.1.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar new file mode 100644 index 0000000..69e9803 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module new file mode 100644 index 0000000..2551dab --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.module @@ -0,0 +1,283 @@ +{ + "formatVersion": "1.1", + "component": { + "url": "../../savedstate/1.4.0/savedstate-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate", + "version": "1.4.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14329657" + } + }, + "variants": [ + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.8.1" + } + }, + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib" + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + } + ], + "files": [ + { + "name": "savedstate.aar", + "url": "savedstate-android-1.4.0.aar", + "size": 136412, + "sha512": "848bd45a9017e2ecfdd002faa6264fdab491e65c5d532513e5fcfb4808cd12e2b9704f8b14ffc18bb11d5577731f35151e177358216676702b2f31e3b8eb074c", + "sha256": "1656ce62cd233d488bdbbd42e533b80b22435b7a690acae6dbe7302392512c14", + "sha1": "8cf8663a8d810d4d50110ff135b3cd1d7227c867", + "md5": "a92dbdc46006ac0bccbb1edda5bccaef" + } + ] + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.8.1" + } + }, + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.core", + "module": "core-ktx", + "version": { + "requires": "1.13.1" + } + }, + { + "group": "androidx.core", + "module": "core-viewtree", + "version": { + "requires": "1.0.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.9.2" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib" + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "org.jetbrains.androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.3.2" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "savedstate.aar", + "url": "savedstate-android-1.4.0.aar", + "size": 136412, + "sha512": "848bd45a9017e2ecfdd002faa6264fdab491e65c5d532513e5fcfb4808cd12e2b9704f8b14ffc18bb11d5577731f35151e177358216676702b2f31e3b8eb074c", + "sha256": "1656ce62cd233d488bdbbd42e533b80b22435b7a690acae6dbe7302392512c14", + "sha1": "8cf8663a8d810d4d50110ff135b3cd1d7227c867", + "md5": "a92dbdc46006ac0bccbb1edda5bccaef" + } + ] + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "savedstate-android-1.4.0-sources.jar", + "url": "savedstate-android-1.4.0-sources.jar", + "size": 57475, + "sha512": "0d91b7d3a022a47e8a521b126ad0dd003598f502392deaf29c10c6143617b5546a71d07ebb23d4c773731fddc9161dea71657eb47da3e34ccbb156e1ebfc591a", + "sha256": "ab5ddfcea3cf8507428183cac36144629aa9a5cd8631afdfbb762e844c8785d9", + "sha1": "fddb1b8f7f11f495560f3fb75088a4e5814411db", + "md5": "55818ade30bcfcf529bd01a356133f00" + }, + { + "name": "savedstate-1.4.0-samples-sources.jar", + "url": "savedstate-android-1.4.0-samples-sources.jar", + "size": 7330, + "sha512": "f1b77905da38cc98f6efcd3f9a440b2f2e91887e64fa966f707f4613163bbbc5893f32d235b4a5e6ecea3847264af93f898d4585eee2d1f4558ed0c0545de34d", + "sha256": "55d183dec7a7b59cfc754f1fde95262298a33ae1abc9a2554d7640ee1360ee1e", + "sha1": "45540714f2e54e94c96da6214912c134ffcd9d32", + "md5": "6cf2c87e40e1ebafa911b4df0300f2cb" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom new file mode 100644 index 0000000..3d0122f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-android/1.4.0/savedstate-android-1.4.0.pom @@ -0,0 +1,110 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate-android + 1.4.0 + aar + Saved State + Android Lifecycle Saved State + https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 + 2018 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.savedstate + savedstate-compose + 1.4.0 + + + androidx.savedstate + savedstate-ktx + 1.4.0 + + + androidx.savedstate + savedstate-testing + 1.4.0 + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + + + org.jetbrains.androidx.savedstate + savedstate + 1.3.2 + + + + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + androidx.core + core-ktx + 1.13.1 + runtime + aar + + + androidx.core + core-viewtree + 1.0.0 + runtime + aar + + + androidx.lifecycle + lifecycle-common-jvm + 2.9.2 + runtime + + + org.jetbrains.kotlin + kotlin-stdlib + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.7.3 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar new file mode 100644 index 0000000..e984fef Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module new file mode 100644 index 0000000..958df2f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.module @@ -0,0 +1,137 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": "1.2.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-ktx-1.2.1.aar", + "url": "savedstate-ktx-1.2.1.aar", + "size": 3375, + "sha512": "eb4b1d681d59a1235c252f1b0ffe1b8295fa98508cc5245cb139a24cc25e1810bdda573eef0c7ca1d4025f2682b1f4eb94f6ec3a3614c905f05f6a34fe8a7958", + "sha256": "8553f87e7136c24ec5243560f48f1c32cba56daa77722f89589a5cafcb8f7894", + "sha1": "b86d338d91b1c26193a42b1d87be9bb02123fa16", + "md5": "232e75b56e6fea8591d591f98b2ecff2" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-ktx-1.2.1.aar", + "url": "savedstate-ktx-1.2.1.aar", + "size": 3375, + "sha512": "eb4b1d681d59a1235c252f1b0ffe1b8295fa98508cc5245cb139a24cc25e1810bdda573eef0c7ca1d4025f2682b1f4eb94f6ec3a3614c905f05f6a34fe8a7958", + "sha256": "8553f87e7136c24ec5243560f48f1c32cba56daa77722f89589a5cafcb8f7894", + "sha1": "b86d338d91b1c26193a42b1d87be9bb02123fa16", + "md5": "232e75b56e6fea8591d591f98b2ecff2" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-ktx-1.2.1-sources.jar", + "url": "savedstate-ktx-1.2.1-sources.jar", + "size": 1225, + "sha512": "c22f31974b323e4490f052e34818283817c70764ae3f01aa98d61cce6f6713bfa72a512e7429f72885d3243cd2cd1b83090d7e9fa8cdbe1e7b43524173f9048d", + "sha256": "45f49fe9075235c62d409f2d11d795b3c7308bccb475ed43ed8312638119cc27", + "sha1": "396eb83ce13cac3986e1e8a8b60f60ac0447ffbf", + "md5": "0dd36a3a26c3ff2ccac7c085855f1176" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom new file mode 100644 index 0000000..cd8bdf8 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.2.1/savedstate-ktx-1.2.1.pom @@ -0,0 +1,57 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate-ktx + 1.2.1 + aar + SavedState Kotlin Extensions + Kotlin extensions for 'savedstate' artifact + https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1 + 2020 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.savedstate + savedstate + 1.2.1 + + + + + + androidx.savedstate + savedstate + [1.2.1] + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module new file mode 100644 index 0000000..ba25195 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.module @@ -0,0 +1,242 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": "1.4.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14329657" + } + }, + "variants": [ + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "savedstate-ktx-1.4.0-sources.jar", + "url": "savedstate-ktx-1.4.0-sources.jar", + "size": 4426, + "sha512": "470b68b1ba0bbefe5afcf0a072635a72e5080f040860d900c972c9797c1ab4c2402ad6a622477ea916ecc6ece19b0290e15a391f7f1a0ea00c612b1da3ea6d82", + "sha256": "b1e8d78600a68fb3c0029793146ac07ea0335819f813554e85c568caa35cb5e4", + "sha1": "d281a4d66d1b5ed25c21373dedb46a67918618d9", + "md5": "c7dd8c25948273de8256385c8a05e3d7" + } + ] + }, + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib" + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + } + ], + "files": [ + { + "name": "savedstate-ktx-1.4.0.aar", + "url": "savedstate-ktx-1.4.0.aar", + "size": 5764, + "sha512": "b5ef95f1175b44c162b8f104d5885ff46aefe3c46ccabed67a5aa65a358295546fbdb3e751421ddf57276554c9cd0a4756cc4958c612f8947f51aae2d5adf0ff", + "sha256": "23593939446bc5a154a1e35fddd87b82f19e2adf072207f115bf29a8b431c1d3", + "sha1": "e41710c322b045e933fa8710d0c4540987574daa", + "md5": "da1726763178d846c8b4264fdc20a293" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib" + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + } + ], + "files": [ + { + "name": "savedstate-ktx-1.4.0.aar", + "url": "savedstate-ktx-1.4.0.aar", + "size": 5764, + "sha512": "b5ef95f1175b44c162b8f104d5885ff46aefe3c46ccabed67a5aa65a358295546fbdb3e751421ddf57276554c9cd0a4756cc4958c612f8947f51aae2d5adf0ff", + "sha256": "23593939446bc5a154a1e35fddd87b82f19e2adf072207f115bf29a8b431c1d3", + "sha1": "e41710c322b045e933fa8710d0c4540987574daa", + "md5": "da1726763178d846c8b4264fdc20a293" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate-ktx is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "savedstate-ktx-1.4.0-versionMetadata.json", + "url": "savedstate-ktx-1.4.0-versionMetadata.json", + "size": 191, + "sha512": "225072cf1e54fc7479700f5339019ceafe1f9e4d514a8893a626190d42dfb31b35804c73597292ee864e5f3034bc73b4c5806109ed130eb268c531948a4be4b7", + "sha256": "ff1847220d3c526a133e4f76baed2060de09a72ac96f5b8e1fef2ab1d21ba85e", + "sha1": "a1a2692ed79fa0caa20fafeb33e56bd48993f6de", + "md5": "57c4eed7a9c15485d30d344fdc944a0a" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar new file mode 100644 index 0000000..51b4970 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module new file mode 100644 index 0000000..3a1a33b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.module @@ -0,0 +1,151 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.savedstate", + "module": "savedstate", + "version": "1.2.1", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "8.0" + } + }, + "variants": [ + { + "name": "releaseVariantReleaseApiPublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-1.2.1.aar", + "url": "savedstate-1.2.1.aar", + "size": 20217, + "sha512": "847b0d39c56189b5ce459ac9408c9b24671917c2fe1529fc3e4e6b152d905d46fab39f98f4bc8cc654f162565b156895b8aae85442f0165418f236e3fb856b02", + "sha256": "21a7d4bcf6bdb94ad7b9283801529300b4fbb8808ca4f191e0cdce6fd8e4705a", + "sha1": "e364fc9dec32aa569d855f85864e50250318a093", + "md5": "86008fd3502c84e4343f040ea929c52a" + } + ] + }, + { + "name": "releaseVariantReleaseRuntimePublication", + "attributes": { + "org.gradle.category": "library", + "org.gradle.dependency.bundling": "external", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.1.0" + } + }, + { + "group": "androidx.arch.core", + "module": "core-common", + "version": { + "requires": "2.1.0" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.6.1" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "1.8.10" + } + } + ], + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-1.2.1.aar", + "url": "savedstate-1.2.1.aar", + "size": 20217, + "sha512": "847b0d39c56189b5ce459ac9408c9b24671917c2fe1529fc3e4e6b152d905d46fab39f98f4bc8cc654f162565b156895b8aae85442f0165418f236e3fb856b02", + "sha256": "21a7d4bcf6bdb94ad7b9283801529300b4fbb8808ca4f191e0cdce6fd8e4705a", + "sha1": "e364fc9dec32aa569d855f85864e50250318a093", + "md5": "86008fd3502c84e4343f040ea929c52a" + } + ] + }, + { + "name": "sourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "java-runtime" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.2.1" + } + } + ], + "files": [ + { + "name": "savedstate-1.2.1-sources.jar", + "url": "savedstate-1.2.1-sources.jar", + "size": 8863, + "sha512": "e7fd1822fa56aaf70c1e5479a13214f2dc3aab87b73a69f961f839973b2ba71a53930a37147d86017cf9c4b2613caf539a4d39a1b269817b5e8b280a089330fb", + "sha256": "fd201fb9ea2d3e66262cb09bf1e33cbbe41050fcfcb96c9ce197f1780b614a73", + "sha1": "58d4c9fd35e826d3bce813974006451ee9ba4344", + "md5": "5ea0a7491fd6532e1dfee96c19fd73cc" + } + ] + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom new file mode 100644 index 0000000..6ad5871 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom @@ -0,0 +1,68 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate + 1.2.1 + aar + Saved State + Android Lifecycle Saved State + https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1 + 2018 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.savedstate + savedstate-ktx + 1.2.1 + + + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.arch.core + core-common + 2.1.0 + runtime + + + androidx.lifecycle + lifecycle-common + 2.6.1 + runtime + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.10 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar new file mode 100644 index 0000000..2af170f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar new file mode 100644 index 0000000..b2cf403 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module new file mode 100644 index 0000000..af4d1c2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.module @@ -0,0 +1,1243 @@ +{ + "formatVersion": "1.1", + "component": { + "group": "androidx.savedstate", + "module": "savedstate", + "version": "1.4.0", + "attributes": { + "org.gradle.status": "release" + } + }, + "createdBy": { + "gradle": { + "version": "9.1.0", + "buildId:": "14329657" + } + }, + "variants": [ + { + "name": "metadataApiElements", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencies": [ + { + "group": "androidx.annotation", + "module": "annotation", + "version": { + "requires": "1.9.1" + } + }, + { + "group": "androidx.lifecycle", + "module": "lifecycle-common", + "version": { + "requires": "2.9.2" + } + }, + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib" + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-coroutines-core", + "version": { + "requires": "1.9.0" + } + }, + { + "group": "org.jetbrains.kotlinx", + "module": "kotlinx-serialization-core", + "version": { + "requires": "1.7.3" + } + } + ], + "dependencyConstraints": [ + { + "group": "org.jetbrains.kotlin", + "module": "kotlin-stdlib", + "version": { + "requires": "2.0.21" + } + }, + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "org.jetbrains.androidx.savedstate", + "module": "savedstate", + "version": { + "requires": "1.3.2" + }, + "reason": "prevents symbols duplication" + } + ], + "files": [ + { + "name": "savedstate-metadata-1.4.0.jar", + "url": "savedstate-1.4.0.jar", + "size": 36776, + "sha512": "9b6e64c126776e0b3cb16f86af0e4cac9a4e65fec434f746391ad8a9d0f115a835f23ff3cc2ae1db0e5c5504a1a4cccaf3d502f1c36a1fe0da023a819dfa2988", + "sha256": "098596c8dfba2bef44be037f3d3f89cdd011587505ed82fa625f2a83a22d6415", + "sha1": "eeda9569d1fdadab9a0a8e323910adafeee3b2ae", + "md5": "d13fd5324c2c16161161fb8a4d4c4ad0" + } + ] + }, + { + "name": "metadataSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "common" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "savedstate-kotlin-1.4.0-sources.jar", + "url": "savedstate-1.4.0-sources.jar", + "size": 52666, + "sha512": "1bbb90c6c669b301fdb8265100f4abc42ae0ad33c46e4cb685d7924e46fe1ec1ef8e948ef8dc0566967d8b09e113ab1d7bcb10e4bbbb00180ccecce270e3fa6f", + "sha256": "02cdc0f1b8f1313ba1e22193910618edc6f7877e542d2d83cbba5d2d68d16dd5", + "sha1": "0eaea653a0a2a8bdb6f3f8b15adcc1c9cbaf49c1", + "md5": "5094a35df0b069f1e600adecc4e827cd" + } + ] + }, + { + "name": "androidxSourcesElements", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.usage": "androidx-multiplatform-docs" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "savedstate-1.4.0-multiplatform-sources.jar", + "url": "savedstate-1.4.0-multiplatform-sources.jar", + "size": 76542, + "sha512": "1ac9daa0fa610bf3f1bf8ea9dd4856ce7141c30b513942c57a6baf02464f6e88d4f397af013443bf9a5695d1732c33ccb6d9dd6d8d698696c2d00df6659cb2df", + "sha256": "423d93fcfb218bd9bdd039e7733765ed881f43617493a719da7ed495211b2caf", + "sha1": "ae35b56a270a6f9688c2eb52a03abd36358ef466", + "md5": "06e55871c5c081166688b55732bd28aa" + }, + { + "name": "savedstate-1.4.0-samples-sources.jar", + "url": "savedstate-1.4.0-samples-sources.jar", + "size": 7330, + "sha512": "f1b77905da38cc98f6efcd3f9a440b2f2e91887e64fa966f707f4613163bbbc5893f32d235b4a5e6ecea3847264af93f898d4585eee2d1f4558ed0c0545de34d", + "sha256": "55d183dec7a7b59cfc754f1fde95262298a33ae1abc9a2554d7640ee1360ee1e", + "sha1": "45540714f2e54e94c96da6214912c134ffcd9d32", + "md5": "6cf2c87e40e1ebafa911b4df0300f2cb" + } + ] + }, + { + "name": "libraryVersionMetadata", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.usage": "library-version-metadata" + }, + "dependencyConstraints": [ + { + "group": "androidx.savedstate", + "module": "savedstate-compose", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-ktx", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + }, + { + "group": "androidx.savedstate", + "module": "savedstate-testing", + "version": { + "requires": "1.4.0" + }, + "reason": "savedstate is in atomic group androidx.savedstate" + } + ], + "files": [ + { + "name": "apiLevels.json", + "url": "savedstate-1.4.0-versionMetadata.json", + "size": 31596, + "sha512": "a825dbe1401ccfd30de170339b6c62c61efd307d66e454886423cfed961e72bf403edf6f8ada18d53c4d84daf4684c6c54e0faf816812ab919de84de79673fde", + "sha256": "f87c8b689c5106784c062cb9875108530e6a999802281d8f0bb7ec6daabec458", + "sha1": "b2ac690fd9ee106f2434d70320a6f6e62e0f4375", + "md5": "2b8c55bb4c880f9af36ca1dc63d23e1e" + } + ] + }, + { + "name": "androidApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-android", + "version": "1.4.0" + } + }, + { + "name": "androidRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "aar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-android", + "version": "1.4.0" + } + }, + { + "name": "androidSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "android", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-android/1.4.0/savedstate-android-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-android", + "version": "1.4.0" + } + }, + { + "name": "desktopApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-api", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-desktop", + "version": "1.4.0" + } + }, + { + "name": "desktopRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-desktop", + "version": "1.4.0" + } + }, + { + "name": "desktopSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "standard-jvm", + "org.gradle.libraryelements": "jar", + "org.gradle.usage": "java-runtime", + "org.jetbrains.kotlin.platform.type": "jvm" + }, + "available-at": { + "url": "../../savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-desktop", + "version": "1.4.0" + } + }, + { + "name": "iosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosarm64", + "version": "1.4.0" + } + }, + { + "name": "iosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosarm64", + "version": "1.4.0" + } + }, + { + "name": "iosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosarm64/1.4.0/savedstate-iosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosarm64", + "version": "1.4.0" + } + }, + { + "name": "iosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "iosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "iosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iossimulatorarm64/1.4.0/savedstate-iossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "iosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosx64", + "version": "1.4.0" + } + }, + { + "name": "iosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosx64", + "version": "1.4.0" + } + }, + { + "name": "iosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "ios_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-iosx64/1.4.0/savedstate-iosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-iosx64", + "version": "1.4.0" + } + }, + { + "name": "jsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-js", + "version": "1.4.0" + } + }, + { + "name": "jsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-js", + "version": "1.4.0" + } + }, + { + "name": "jsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.js.compiler": "ir", + "org.jetbrains.kotlin.platform.type": "js" + }, + "available-at": { + "url": "../../savedstate-js/1.4.0/savedstate-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-js", + "version": "1.4.0" + } + }, + { + "name": "linuxArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-linuxarm64/1.4.0/savedstate-linuxarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-linuxarm64", + "version": "1.4.0" + } + }, + { + "name": "linuxArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-linuxarm64/1.4.0/savedstate-linuxarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-linuxarm64", + "version": "1.4.0" + } + }, + { + "name": "linuxX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-linuxx64/1.4.0/savedstate-linuxx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-linuxx64", + "version": "1.4.0" + } + }, + { + "name": "linuxX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "linux_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-linuxx64/1.4.0/savedstate-linuxx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-linuxx64", + "version": "1.4.0" + } + }, + { + "name": "macosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosarm64", + "version": "1.4.0" + } + }, + { + "name": "macosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosarm64", + "version": "1.4.0" + } + }, + { + "name": "macosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosarm64/1.4.0/savedstate-macosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosarm64", + "version": "1.4.0" + } + }, + { + "name": "macosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosx64", + "version": "1.4.0" + } + }, + { + "name": "macosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosx64", + "version": "1.4.0" + } + }, + { + "name": "macosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "macos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-macosx64/1.4.0/savedstate-macosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-macosx64", + "version": "1.4.0" + } + }, + { + "name": "mingwX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-mingwx64/1.4.0/savedstate-mingwx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-mingwx64", + "version": "1.4.0" + } + }, + { + "name": "mingwX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "mingw_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-mingwx64/1.4.0/savedstate-mingwx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-mingwx64", + "version": "1.4.0" + } + }, + { + "name": "tvosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosarm64/1.4.0/savedstate-tvosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvossimulatorarm64/1.4.0/savedstate-tvossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "tvosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosx64", + "version": "1.4.0" + } + }, + { + "name": "tvosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosx64", + "version": "1.4.0" + } + }, + { + "name": "tvosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "tvos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-tvosx64/1.4.0/savedstate-tvosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-tvosx64", + "version": "1.4.0" + } + }, + { + "name": "wasmJsApiElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-wasm-js", + "version": "1.4.0" + } + }, + { + "name": "wasmJsRuntimeElements-published", + "attributes": { + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-wasm-js", + "version": "1.4.0" + } + }, + { + "name": "wasmJsSourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.platform.type": "wasm", + "org.jetbrains.kotlin.wasm.target": "js" + }, + "available-at": { + "url": "../../savedstate-wasm-js/1.4.0/savedstate-wasm-js-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-wasm-js", + "version": "1.4.0" + } + }, + { + "name": "watchosArm32ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm32", + "version": "1.4.0" + } + }, + { + "name": "watchosArm32SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm32", + "version": "1.4.0" + } + }, + { + "name": "watchosArm32MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm32", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm32/1.4.0/savedstate-watchosarm32-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm32", + "version": "1.4.0" + } + }, + { + "name": "watchosArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosarm64/1.4.0/savedstate-watchosarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosDeviceArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosdevicearm64", + "version": "1.4.0" + } + }, + { + "name": "watchosDeviceArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosdevicearm64", + "version": "1.4.0" + } + }, + { + "name": "watchosDeviceArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_device_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosdevicearm64/1.4.0/savedstate-watchosdevicearm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosdevicearm64", + "version": "1.4.0" + } + }, + { + "name": "watchosSimulatorArm64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosSimulatorArm64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosSimulatorArm64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_simulator_arm64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchossimulatorarm64/1.4.0/savedstate-watchossimulatorarm64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchossimulatorarm64", + "version": "1.4.0" + } + }, + { + "name": "watchosX64ApiElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-api", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosx64", + "version": "1.4.0" + } + }, + { + "name": "watchosX64SourcesElements-published", + "attributes": { + "org.gradle.category": "documentation", + "org.gradle.dependency.bundling": "external", + "org.gradle.docstype": "sources", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-runtime", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosx64", + "version": "1.4.0" + } + }, + { + "name": "watchosX64MetadataElements-published", + "attributes": { + "artifactType": "org.jetbrains.kotlin.klib", + "org.gradle.category": "library", + "org.gradle.jvm.environment": "non-jvm", + "org.gradle.usage": "kotlin-metadata", + "org.jetbrains.kotlin.native.target": "watchos_x64", + "org.jetbrains.kotlin.platform.type": "native" + }, + "available-at": { + "url": "../../savedstate-watchosx64/1.4.0/savedstate-watchosx64-1.4.0.module", + "group": "androidx.savedstate", + "module": "savedstate-watchosx64", + "version": "1.4.0" + } + } + ] +} \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom new file mode 100644 index 0000000..3206230 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate/1.4.0/savedstate-1.4.0.pom @@ -0,0 +1,103 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate + 1.4.0 + aar + Saved State + Android Lifecycle Saved State + https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 + 2018 + + The Android Open Source Project + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + scm:git:https://android.googlesource.com/platform/frameworks/support + https://cs.android.com/androidx/platform/frameworks/support + + + + + androidx.savedstate + savedstate-compose + 1.4.0 + + + androidx.savedstate + savedstate-ktx + 1.4.0 + + + androidx.savedstate + savedstate-testing + 1.4.0 + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + + + org.jetbrains.androidx.savedstate + savedstate + 1.3.2 + + + + + + org.jetbrains.kotlinx + kotlinx-serialization-core + 1.7.3 + runtime + + + org.jetbrains.kotlin + kotlin-stdlib + runtime + + + androidx.lifecycle + lifecycle-common + 2.9.2 + runtime + + + androidx.savedstate + savedstate-android + 1.4.0 + aar + compile + + + androidx.annotation + annotation + 1.9.1 + runtime + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/populate-offline-agp.sh b/tauri_app/docker/populate-offline-agp.sh index 5c5862f..cbad27d 100644 --- a/tauri_app/docker/populate-offline-agp.sh +++ b/tauri_app/docker/populate-offline-agp.sh @@ -13,17 +13,49 @@ if [ ! -x "${RESOLVER}/gradlew" ]; then exit 1 fi -echo "==> Resolving AGP ${AGP_VERSION} + AndroidX deps into ${OFFLINE}" -cd "${RESOLVER}" -chmod +x ./gradlew -sed -i 's/\r$//' ./gradlew 2>/dev/null || true -./gradlew exportAllOfflineMaven --no-daemon -PagpVersion="${AGP_VERSION}" +run_export() { + cd "${RESOLVER}" + chmod +x ./gradlew + sed -i 's/\r$//' ./gradlew 2>/dev/null || true + if [ -n "${ANDROID_HOME:-}" ]; then + printf 'sdk.dir=%s\n' "${ANDROID_HOME}" > local.properties + fi + ./gradlew exportAllOfflineMaven --no-daemon -PagpVersion="${AGP_VERSION}" + "${ROOT}/docker/ensure-tauri-androidx-offline.sh" +} + +echo "==> Resolving AGP ${AGP_VERSION} + Android runtime deps into ${OFFLINE}" + +for script in "${ROOT}/docker/populate-offline-agp.sh" "${ROOT}/docker/ensure-tauri-androidx-offline.sh"; do + sed -i 's/\r$//' "${script}" 2>/dev/null || true +done + +if [ -n "${ANDROID_HOME:-}" ] && [ -d "${ANDROID_HOME}/platforms" ]; then + run_export +elif command -v docker >/dev/null 2>&1; then + echo "==> ANDROID_HOME not set; using Docker (ghcr.io/cirruslabs/android-sdk:35-ndk)" + docker run --rm \ + -v "${ROOT}/..:/workspace" \ + -w /workspace/tauri_app/docker/agp-resolver \ + -e ANDROID_HOME=/opt/android-sdk \ + -e ANDROID_SDK_ROOT=/opt/android-sdk \ + -e JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64 \ + ghcr.io/cirruslabs/android-sdk:35-ndk \ + bash -lc "echo sdk.dir=\${ANDROID_HOME} > local.properties && ./gradlew exportAllOfflineMaven --no-daemon -PagpVersion=${AGP_VERSION} && /workspace/tauri_app/docker/ensure-tauri-androidx-offline.sh" +else + echo "Set ANDROID_HOME or install Docker to populate the offline AndroidX cache." >&2 + exit 1 +fi required=( "${OFFLINE}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" "${OFFLINE}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" "${OFFLINE}/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom" "${OFFLINE}/androidx/browser/browser/1.8.0/browser-1.8.0.pom" + "${OFFLINE}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" + "${OFFLINE}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.pom" + "${OFFLINE}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.pom" + "${OFFLINE}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.pom" "${OFFLINE}/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom" ) @@ -34,7 +66,7 @@ for file in "${required[@]}"; do fi done -TOTAL_SIZE="$(du -sh "${OFFLINE}" | awk '{print $1}')" -ARTIFACTS="$(find "${OFFLINE}" \( -name '*.jar' -o -name '*.aar' \) | wc -l | tr -d ' ')" +TOTAL_SIZE="$(du -sh "${OFFLINE}" 2>/dev/null | awk '{print $1}' || echo '?')" +ARTIFACTS="$(find "${OFFLINE}" \( -name '*.jar' -o -name '*.aar' \) 2>/dev/null | wc -l | tr -d ' ')" echo "==> Offline Maven cache ready: ${ARTIFACTS} jar/aar, total ${TOTAL_SIZE}" echo "==> Commit tauri_app/docker/offline-maven/ and push to the server" diff --git a/tauri_app/docker/prefetch-android-agp.sh b/tauri_app/docker/prefetch-android-agp.sh index 186791a..2e50d7c 100644 --- a/tauri_app/docker/prefetch-android-agp.sh +++ b/tauri_app/docker/prefetch-android-agp.sh @@ -19,6 +19,14 @@ copy_bundled() { echo "Bundled AndroidX cache is incomplete (missing webkit:1.14.0). Run populate-offline-agp.sh on a machine with internet." >&2 return 1 fi + if [ ! -f "${BUNDLED_REPO}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" ]; then + echo "Bundled AndroidX cache is incomplete (missing annotation:1.9.1). Run populate-offline-agp.sh on a machine with internet." >&2 + return 1 + fi + if [ ! -f "${BUNDLED_REPO}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar" ]; then + echo "Bundled AndroidX cache is incomplete (missing lifecycle-runtime:2.10.0). Run populate-offline-agp.sh on a machine with internet." >&2 + return 1 + fi mkdir -p "${LOCAL_REPO}" cp -a "${BUNDLED_REPO}/." "${LOCAL_REPO}/" echo "==> AGP ${AGP_VERSION} copied from bundled offline cache (${BUNDLED_REPO})" diff --git a/tauri_app/docker/verify-offline-agp.sh b/tauri_app/docker/verify-offline-agp.sh index 40418c8..671e037 100644 --- a/tauri_app/docker/verify-offline-agp.sh +++ b/tauri_app/docker/verify-offline-agp.sh @@ -14,6 +14,10 @@ required=( "${LOCAL_REPO}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" "${LOCAL_REPO}/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom" "${LOCAL_REPO}/androidx/browser/browser/1.8.0/browser-1.8.0.pom" + "${LOCAL_REPO}/androidx/annotation/annotation/1.9.1/annotation-1.9.1.pom" + "${LOCAL_REPO}/androidx/lifecycle/lifecycle-runtime/2.10.0/lifecycle-runtime-2.10.0.aar" + "${LOCAL_REPO}/androidx/emoji2/emoji2-views-helper/1.2.0/emoji2-views-helper-1.2.0.aar" + "${LOCAL_REPO}/androidx/savedstate/savedstate/1.2.1/savedstate-1.2.1.aar" "${LOCAL_REPO}/org/jetbrains/kotlin/kotlin-gradle-plugin/1.9.25/kotlin-gradle-plugin-1.9.25.pom" )