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 0526176..46ae5f6 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 bc7f7a8..6600c1a 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 1bcd148..4e6d01b 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/build.gradle.kts b/tauri_app/docker/agp-resolver/build.gradle.kts index 47ae3e8..5288b01 100644 --- a/tauri_app/docker/agp-resolver/build.gradle.kts +++ b/tauri_app/docker/agp-resolver/build.gradle.kts @@ -13,42 +13,19 @@ val agpVersion: String = providers.gradleProperty("agpVersion").orElse("8.11.0") configurations { create("agp") + create("androidDeps") } dependencies { add("agp", "com.android.tools.build:gradle:$agpVersion") -} -tasks.register("exportOfflineMaven") { - dependsOn(configurations.named("agp")) - doLast { - val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } - val configuration = configurations.getByName("agp") - val resolved = configuration.resolvedConfiguration - val modules = linkedSetOf>() - - resolved.resolvedArtifacts.forEach { artifact -> - val id = artifact.moduleVersion.id - modules.add(Triple(id.group, id.name, id.version)) - installArtifact( - offlineRoot, - id.group, - id.name, - id.version, - artifact.extension ?: "jar", - artifact.file, - ) - } - - modules.forEach { (group, name, version) -> - ensurePom(offlineRoot, group, name, version) - } - - file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( - "agpVersion=$agpVersion\nmodules=${modules.size}\n", - ) - println("Exported ${modules.size} modules to ${offlineRoot.absolutePath}") - } + 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") } fun installArtifact( @@ -104,3 +81,54 @@ 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) + val modules = linkedSetOf>() + + configuration.resolvedConfiguration.resolvedArtifacts.forEach { artifact -> + val id = artifact.moduleVersion.id + modules.add(Triple(id.group, id.name, id.version)) + installArtifact( + offlineRoot, + id.group, + id.name, + id.version, + artifact.extension ?: "jar", + artifact.file, + ) + } + + modules.forEach { (group, name, version) -> + ensurePom(offlineRoot, group, name, version) + } + + println("Exported ${modules.size} modules from configuration ${configName}") + return modules.size +} + +tasks.register("exportOfflineMaven") { + dependsOn(configurations.named("agp")) + doLast { + val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } + val modules = exportConfiguration("agp", offlineRoot) + file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( + "agpVersion=$agpVersion\nmodules=$modules\n", + ) + } +} + +tasks.register("exportAllOfflineMaven") { + dependsOn(configurations.named("agp"), configurations.named("androidDeps")) + doLast { + val offlineRoot = file("${rootProject.projectDir}/../offline-maven").apply { mkdirs() } + val modules = exportConfiguration("agp", offlineRoot) + exportConfiguration("androidDeps", offlineRoot) + file("${offlineRoot.absolutePath}/.agp-offline-complete").writeText( + "agpVersion=$agpVersion\nmodules=$modules\n", + ) + file("${offlineRoot.absolutePath}/.android-deps-offline-complete").writeText( + "modules=$modules\n", + ) + println("Exported ${modules} total modules to ${offlineRoot.absolutePath}") + } +} 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 2a998e0..7ee4006 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/offline-maven/.agp-offline-complete b/tauri_app/docker/offline-maven/.agp-offline-complete index 5430171..813e5f0 100644 --- a/tauri_app/docker/offline-maven/.agp-offline-complete +++ b/tauri_app/docker/offline-maven/.agp-offline-complete @@ -1,2 +1,2 @@ agpVersion=8.11.0 -modules=124 +modules=189 diff --git a/tauri_app/docker/offline-maven/.android-deps-offline-complete b/tauri_app/docker/offline-maven/.android-deps-offline-complete new file mode 100644 index 0000000..644789c --- /dev/null +++ b/tauri_app/docker/offline-maven/.android-deps-offline-complete @@ -0,0 +1 @@ +modules=189 diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar new file mode 100644 index 0000000..8037904 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom new file mode 100644 index 0000000..6a9dfc6 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/activity/activity-ktx/1.10.1/activity-ktx-1.10.1.pom @@ -0,0 +1,79 @@ + + + + + + + + 4.0.0 + androidx.activity + activity-ktx + 1.10.1 + aar + Activity Kotlin Extensions + Kotlin extensions for 'activity' artifact + https://developer.android.com/jetpack/androidx/releases/activity#1.10.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.activity + activity + 1.10.1 + + + androidx.activity + activity-compose + 1.10.1 + + + + + + androidx.activity + activity + [1.10.1] + compile + aar + + + androidx.lifecycle + lifecycle-runtime-ktx + 2.6.1 + compile + + + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.6.1 + compile + aar + + + androidx.savedstate + savedstate-ktx + 1.2.1 + compile + aar + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar new file mode 100644 index 0000000..1b0aaaa Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom new file mode 100644 index 0000000..60dc057 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/activity/activity/1.10.1/activity-1.10.1.pom @@ -0,0 +1,132 @@ + + + + + + + + 4.0.0 + androidx.activity + activity + 1.10.1 + aar + Activity + Provides the base Activity subclass and the relevant hooks to build a composable structure on top. + https://developer.android.com/jetpack/androidx/releases/activity#1.10.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.activity + activity-compose + 1.10.1 + + + androidx.activity + activity-ktx + 1.10.1 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.22 + + + + + + androidx.annotation + annotation + 1.8.1 + compile + + + androidx.core + core-ktx + 1.13.0 + compile + aar + + + androidx.core + core-viewtree + 1.0.0 + compile + aar + + + androidx.lifecycle + lifecycle-common + 2.6.1 + compile + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + compile + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + compile + + + androidx.savedstate + savedstate + 1.2.1 + compile + + + androidx.tracing + tracing + 1.0.0 + runtime + aar + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.6.1 + compile + + + androidx.profileinstaller + profileinstaller + 1.4.0 + runtime + aar + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.7.3 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar new file mode 100644 index 0000000..1fcbb8f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom new file mode 100644 index 0000000..454cb6b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/annotation/annotation-experimental/1.4.1/annotation-experimental-1.4.1.pom @@ -0,0 +1,44 @@ + + + + + + + + 4.0.0 + androidx.annotation + annotation-experimental + 1.4.1 + aar + Experimental annotation + Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation. + https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1 + 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 + + + + org.jetbrains.kotlin + kotlin-stdlib + 1.7.10 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar new file mode 100644 index 0000000..819381c Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom new file mode 100644 index 0000000..54c2493 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/annotation/annotation-jvm/1.9.1/annotation-jvm-1.9.1.pom @@ -0,0 +1,43 @@ + + + + + + + + 4.0.0 + androidx.annotation + annotation-jvm + 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 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar new file mode 100644 index 0000000..2908631 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom new file mode 100644 index 0000000..0fe1e34 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat-resources/1.7.1/appcompat-resources-1.7.1.pom @@ -0,0 +1,80 @@ + + + + + + + + 4.0.0 + androidx.appcompat + appcompat-resources + 1.7.1 + aar + AppCompat Resources + Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming. + https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1 + 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.appcompat + appcompat + 1.7.1 + + + + + + androidx.annotation + annotation + 1.2.0 + compile + + + androidx.collection + collection + 1.0.0 + runtime + + + androidx.core + core + 1.6.0 + compile + aar + + + androidx.vectordrawable + vectordrawable + 1.1.0 + compile + aar + + + androidx.vectordrawable + vectordrawable-animated + 1.1.0 + compile + aar + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar new file mode 100644 index 0000000..f21941f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom new file mode 100644 index 0000000..ef64db2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/appcompat/appcompat/1.7.1/appcompat-1.7.1.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + androidx.appcompat + appcompat + 1.7.1 + aar + AppCompat + Provides backwards-compatible implementations of UI-related Android SDK functionality, including dark mode and Material theming. + https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.1 + 2011 + + 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.appcompat + appcompat-resources + 1.7.1 + + + + + + androidx.activity + activity + 1.8.0 + compile + aar + + + androidx.annotation + annotation + 1.3.0 + compile + + + androidx.appcompat + appcompat-resources + [1.7.1] + compile + aar + + + androidx.collection + collection + 1.0.0 + runtime + + + androidx.core + core + 1.13.0 + compile + aar + + + androidx.core + core-ktx + 1.13.0 + runtime + aar + + + androidx.cursoradapter + cursoradapter + 1.0.0 + compile + aar + + + androidx.drawerlayout + drawerlayout + 1.0.0 + compile + aar + + + androidx.emoji2 + emoji2 + 1.3.0 + runtime + aar + + + androidx.emoji2 + emoji2-views-helper + 1.2.0 + runtime + aar + + + androidx.fragment + fragment + 1.5.4 + compile + aar + + + androidx.lifecycle + lifecycle-runtime + 2.6.1 + runtime + + + androidx.lifecycle + lifecycle-viewmodel + 2.6.1 + runtime + + + androidx.profileinstaller + profileinstaller + 1.3.1 + runtime + aar + + + androidx.resourceinspection + resourceinspection-annotation + 1.0.1 + runtime + + + androidx.savedstate + savedstate + 1.2.1 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.22 + runtime + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar new file mode 100644 index 0000000..b2efafc Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom new file mode 100644 index 0000000..bd76839 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/arch/core/core-common/2.2.0/core-common-2.2.0.pom @@ -0,0 +1,40 @@ + + + + + + + + 4.0.0 + androidx.arch.core + core-common + 2.2.0 + Android Arch-Common + Android Arch-Common + https://developer.android.com/jetpack/androidx/releases/arch-core#2.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.1.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar new file mode 100644 index 0000000..efa6db6 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom new file mode 100644 index 0000000..1768a70 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/arch/core/core-runtime/2.2.0/core-runtime-2.2.0.pom @@ -0,0 +1,47 @@ + + + + + + + + 4.0.0 + androidx.arch.core + core-runtime + 2.2.0 + aar + Android Arch-Runtime + Android Arch-Runtime + https://developer.android.com/jetpack/androidx/releases/arch-core#2.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.1.0 + compile + + + androidx.arch.core + core-common + [2.2.0] + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar new file mode 100644 index 0000000..6bb67ee Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom new file mode 100644 index 0000000..b13868a --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/browser/browser/1.8.0/browser-1.8.0.pom @@ -0,0 +1,83 @@ + + + + + + + + 4.0.0 + androidx.browser + browser + 1.8.0 + aar + Browser + Provides support for embedding Custom Tabs in an app. + https://developer.android.com/jetpack/androidx/releases/browser#1.8.0 + 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.annotation + annotation + 1.2.0 + compile + + + androidx.annotation + annotation-experimental + 1.4.0 + compile + aar + + + androidx.collection + collection + 1.1.0 + runtime + + + androidx.concurrent + concurrent-futures + 1.0.0 + runtime + + + androidx.core + core + 1.1.0 + compile + aar + + + androidx.interpolator + interpolator + 1.0.0 + runtime + aar + + + com.google.guava + listenablefuture + 1.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar new file mode 100644 index 0000000..06a73c3 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom new file mode 100644 index 0000000..a563cb2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/cardview/cardview/1.0.0/cardview-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.cardview + cardview + 1.0.0 + aar + Android Support CardView v7 + Android Support CardView v7 + http://developer.android.com/tools/extras/support-library.html + 2011 + + + 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.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar new file mode 100644 index 0000000..761fe3b Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom new file mode 100644 index 0000000..65cd3a2 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/collection/collection/1.1.0/collection-1.1.0.pom @@ -0,0 +1,36 @@ + + + 4.0.0 + androidx.collection + collection + 1.1.0 + Android Support Library collections + Standalone efficient collections. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.1.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar new file mode 100644 index 0000000..833b095 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom new file mode 100644 index 0000000..7ff1457 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/concurrent/concurrent-futures/1.1.0/concurrent-futures-1.1.0.pom @@ -0,0 +1,46 @@ + + + + + + + + 4.0.0 + androidx.concurrent + concurrent-futures + 1.1.0 + AndroidX Futures + Androidx implementation of Guava's ListenableFuture + https://developer.android.com/topic/libraries/architecture/index.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.1.0 + compile + + + com.google.guava + listenablefuture + 1.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar new file mode 100644 index 0000000..c5f4844 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom new file mode 100644 index 0000000..4dc7e2c --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout-solver/2.0.1/constraintlayout-solver-2.0.1.pom @@ -0,0 +1,28 @@ + + + 4.0.0 + androidx.constraintlayout + constraintlayout-solver + 2.0.1 + Android ConstraintLayout Solver + Solver for ConstraintLayout + http://tools.android.com + 2007 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + git://android.googlesource.com/platform/tools/sherpa.git + https://android.googlesource.com/platform/tools/sherpa + + diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar new file mode 100644 index 0000000..cb56db6 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom new file mode 100644 index 0000000..02db756 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/constraintlayout/constraintlayout/2.0.1/constraintlayout-2.0.1.pom @@ -0,0 +1,49 @@ + + + 4.0.0 + androidx.constraintlayout + constraintlayout + 2.0.1 + aar + Android ConstraintLayout + ConstraintLayout for Android + http://tools.android.com + 2007 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + The Android Open Source Project + + + + git://android.googlesource.com/platform/tools/sherpa.git + https://android.googlesource.com/platform/tools/sherpa + + + + androidx.appcompat + appcompat + 1.2.0 + compile + + + androidx.core + core + 1.3.1 + compile + + + androidx.constraintlayout + constraintlayout-solver + 2.0.1 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar new file mode 100644 index 0000000..b232c04 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom new file mode 100644 index 0000000..16175c1 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/coordinatorlayout/coordinatorlayout/1.1.0/coordinatorlayout-1.1.0.pom @@ -0,0 +1,57 @@ + + + 4.0.0 + androidx.coordinatorlayout + coordinatorlayout + 1.1.0 + aar + Android Support Library Coordinator Layout + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + https://developer.android.com/jetpack/androidx + 2011 + + + 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.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.1.0 + aar + compile + + + androidx.customview + customview + 1.0.0 + aar + compile + + + androidx.collection + collection + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar new file mode 100644 index 0000000..373ff82 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom new file mode 100644 index 0000000..1f403c5 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/core/core-ktx/1.13.0/core-ktx-1.13.0.pom @@ -0,0 +1,66 @@ + + + + + + + + 4.0.0 + androidx.core + core-ktx + 1.13.0 + aar + Core Kotlin Extensions + Kotlin extensions for 'core' artifact + https://developer.android.com/jetpack/androidx/releases/core#1.13.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.core + core + 1.13.0 + + + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.13.0 + 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-viewtree/1.0.0/core-viewtree-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.aar new file mode 100644 index 0000000..044b068 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom new file mode 100644 index 0000000..af42707 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/core/core-viewtree/1.0.0/core-viewtree-1.0.0.pom @@ -0,0 +1,52 @@ + + + + + + + + 4.0.0 + androidx.core + core-viewtree + 1.0.0 + aar + androidx.core:core-viewtree + Provides ViewTree extensions packaged for use by other core androidx libraries + https://developer.android.com/jetpack/androidx/releases/core#1.0.0 + 2024 + + 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.8.22 + + + + + + org.jetbrains.kotlin + kotlin-stdlib + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar new file mode 100644 index 0000000..461fed9 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom new file mode 100644 index 0000000..ca7def0 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/core/core/1.13.0/core-1.13.0.pom @@ -0,0 +1,103 @@ + + + + + + + + 4.0.0 + androidx.core + core + 1.13.0 + aar + Core + Provides backward-compatible implementations of Android platform APIs and features. + https://developer.android.com/jetpack/androidx/releases/core#1.13.0 + 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.0 + + + androidx.core + core-testing + 1.13.0 + + + + + + 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/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar new file mode 100644 index 0000000..cd1494a Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom new file mode 100644 index 0000000..ffca433 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.cursoradapter + cursoradapter + 1.0.0 + aar + Android Support Library Cursor Adapter + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar new file mode 100644 index 0000000..3b4eda2 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom new file mode 100644 index 0000000..7ecd4c3 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/customview/customview/1.1.0/customview-1.1.0.pom @@ -0,0 +1,49 @@ + + + 4.0.0 + androidx.customview + customview + 1.1.0 + aar + Android Support Library Custom View + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + https://developer.android.com/jetpack/androidx + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.3.0 + compile + aar + + + androidx.collection + collection + 1.1.0 + runtime + + + diff --git a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar new file mode 100644 index 0000000..79fd550 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom new file mode 100644 index 0000000..dfc9aad --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/documentfile/documentfile/1.0.0/documentfile-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.documentfile + documentfile + 1.0.0 + aar + Android Support Library Document File + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar new file mode 100644 index 0000000..86dac42 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom new file mode 100644 index 0000000..3bedebb --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/drawerlayout/drawerlayout/1.1.1/drawerlayout-1.1.1.pom @@ -0,0 +1,50 @@ + + + 4.0.0 + androidx.drawerlayout + drawerlayout + 1.1.1 + aar + Android Support Library Drawer Layout + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + https://developer.android.com/jetpack/androidx + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.2.0 + compile + aar + + + androidx.customview + customview + 1.1.0 + compile + aar + + + diff --git a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar new file mode 100644 index 0000000..b9f4cc6 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom new file mode 100644 index 0000000..dc09da5 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/dynamicanimation/dynamicanimation/1.0.0/dynamicanimation-1.0.0.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + androidx.dynamicanimation + dynamicanimation + 1.0.0 + aar + Android Support DynamicAnimation + Physics-based animation in support library, where the animations are driven by physics force. You can use this Animation library to create smooth and realistic animations. + http://developer.android.com/tools/extras/support-library.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.core + core + 1.0.0 + aar + compile + + + androidx.collection + collection + 1.0.0 + compile + + + androidx.legacy + legacy-support-core-utils + 1.0.0 + aar + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar new file mode 100644 index 0000000..9c3df4f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom new file mode 100644 index 0000000..d4304ec --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2-views-helper/1.3.0/emoji2-views-helper-1.3.0.pom @@ -0,0 +1,89 @@ + + + + + + + + 4.0.0 + androidx.emoji2 + emoji2-views-helper + 1.3.0 + aar + Android Emoji2 Compat view helpers + View helpers for Emoji2 + https://developer.android.com/jetpack/androidx/releases/emoji2#1.3.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.emoji2 + emoji2-emojipicker + 1.0.0-alpha03 + + + androidx.emoji2 + emoji2-emojipicker-samples + 1.3.0 + + + androidx.emoji2 + emoji2 + 1.3.0 + + + androidx.emoji2 + emoji2-bundled + 1.3.0 + + + androidx.emoji2 + emoji2-views + 1.3.0 + + + androidx.emoji2 + emoji2-benchmark + 1.3.0 + + + + + + androidx.collection + collection + 1.1.0 + runtime + + + androidx.core + core + 1.3.0 + compile + aar + + + androidx.emoji2 + emoji2 + [1.3.0] + runtime + 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.aar b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.aar new file mode 100644 index 0000000..595fe30 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom new file mode 100644 index 0000000..26bd5c0 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/emoji2/emoji2/1.3.0/emoji2-1.3.0.pom @@ -0,0 +1,102 @@ + + + + + + + + 4.0.0 + androidx.emoji2 + emoji2 + 1.3.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.3.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.emoji2 + emoji2-emojipicker + 1.0.0-alpha03 + + + androidx.emoji2 + emoji2-emojipicker-samples + 1.3.0 + + + androidx.emoji2 + emoji2-bundled + 1.3.0 + + + androidx.emoji2 + emoji2-views + 1.3.0 + + + androidx.emoji2 + emoji2-views-helper + 1.3.0 + + + androidx.emoji2 + emoji2-benchmark + 1.3.0 + + + + + + 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/fragment/fragment/1.5.4/fragment-1.5.4.aar b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.aar new file mode 100644 index 0000000..8ca2c54 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom new file mode 100644 index 0000000..1b541ec --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/fragment/fragment/1.5.4/fragment-1.5.4.pom @@ -0,0 +1,116 @@ + + + + + + + + 4.0.0 + androidx.fragment + fragment + 1.5.4 + aar + Android Support Library fragment + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + https://developer.android.com/jetpack/androidx/releases/fragment#1.5.4 + 2011 + + + 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.activity + activity + 1.5.1 + compile + aar + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.annotation + annotation-experimental + 1.0.0 + compile + aar + + + androidx.collection + collection + 1.1.0 + compile + + + androidx.core + core-ktx + 1.2.0 + compile + aar + + + androidx.lifecycle + lifecycle-livedata-core + 2.5.1 + compile + aar + + + androidx.lifecycle + lifecycle-viewmodel + 2.5.1 + compile + aar + + + androidx.lifecycle + lifecycle-viewmodel-savedstate + 2.5.1 + compile + aar + + + androidx.loader + loader + 1.0.0 + compile + aar + + + androidx.savedstate + savedstate + 1.2.0 + compile + aar + + + androidx.viewpager + viewpager + 1.0.0 + compile + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 1.6.21 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar new file mode 100644 index 0000000..bccf86f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom new file mode 100644 index 0000000..49a6639 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.interpolator + interpolator + 1.0.0 + aar + Android Support Library Interpolators + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar new file mode 100644 index 0000000..2980f60 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom new file mode 100644 index 0000000..39f3ee8 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/legacy/legacy-support-core-utils/1.0.0/legacy-support-core-utils-1.0.0.pom @@ -0,0 +1,72 @@ + + + 4.0.0 + androidx.legacy + legacy-support-core-utils + 1.0.0 + aar + Android Support Library core utils + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 2011 + + + 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.annotation + annotation + 1.0.0 + compile + + + androidx.core + core + 1.0.0 + aar + compile + + + androidx.documentfile + documentfile + 1.0.0 + aar + compile + + + androidx.loader + loader + 1.0.0 + aar + compile + + + androidx.localbroadcastmanager + localbroadcastmanager + 1.0.0 + aar + compile + + + androidx.print + print + 1.0.0 + aar + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar new file mode 100644 index 0000000..165d43f Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom new file mode 100644 index 0000000..2fce7bc --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-common-jvm/2.10.0/lifecycle-common-jvm-2.10.0.pom @@ -0,0 +1,170 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-common-jvm + 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 + + + org.jetbrains.androidx.lifecycle + lifecycle-common + 2.9.5 + + + + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + org.jspecify + jspecify + 1.0.0 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar new file mode 100644 index 0000000..53af05e Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom new file mode 100644 index 0000000..35e0287 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core-ktx/2.10.0/lifecycle-livedata-core-ktx-2.10.0.pom @@ -0,0 +1,155 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-livedata-core-ktx + 2.10.0 + aar + LiveData Core Kotlin Extensions + Kotlin extensions for 'livedata-core' artifact + 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-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-livedata-core + [2.10.0] + compile + aar + + + 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-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar new file mode 100644 index 0000000..7d34d35 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom new file mode 100644 index 0000000..64fb7c0 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata-core/2.10.0/lifecycle-livedata-core-2.10.0.pom @@ -0,0 +1,173 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-livedata-core + 2.10.0 + aar + Lifecycle LiveData Core + Android Lifecycle LiveData Core + 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-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.arch.core + core-runtime + 2.2.0 + runtime + aar + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + androidx.arch.core + core-common + 2.2.0 + runtime + + + org.jspecify + jspecify + 1.0.0 + compile + + + androidx.lifecycle + lifecycle-common + [2.10.0] + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar new file mode 100644 index 0000000..48f67c5 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom new file mode 100644 index 0000000..405485e --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-livedata/2.10.0/lifecycle-livedata-2.10.0.pom @@ -0,0 +1,187 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-livedata + 2.10.0 + aar + Lifecycle LiveData + Android Lifecycle LiveData + 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-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.arch.core + core-common + 2.2.0 + runtime + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + androidx.arch.core + core-runtime + 2.2.0 + compile + aar + + + androidx.lifecycle + lifecycle-livedata-core + [2.10.0] + compile + aar + + + androidx.lifecycle + lifecycle-livedata-core-ktx + [2.10.0] + compile + aar + + + org.jspecify + jspecify + 1.0.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar new file mode 100644 index 0000000..8481ed3 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom new file mode 100644 index 0000000..578bfc8 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-process/2.10.0/lifecycle-process-2.10.0.pom @@ -0,0 +1,167 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-process + 2.10.0 + aar + Lifecycle Process + Android Lifecycle Process + 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-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.startup + startup-runtime + 1.1.1 + compile + aar + + + androidx.annotation + annotation + 1.9.1 + compile + + + androidx.lifecycle + lifecycle-runtime + [2.10.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-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar new file mode 100644 index 0000000..d6cb92d Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom new file mode 100644 index 0000000..376ff44 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-desktop/2.10.0/lifecycle-runtime-desktop-2.10.0.pom @@ -0,0 +1,170 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime-desktop + 2.10.0 + 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.lifecycle + lifecycle-common-jvm + [2.10.0] + compile + + + androidx.annotation + annotation-jvm + 1.9.1 + 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.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.aar new file mode 100644 index 0000000..16c4e0e Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom new file mode 100644 index 0000000..960e084 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-runtime-ktx-android/2.10.0/lifecycle-runtime-ktx-android-2.10.0.pom @@ -0,0 +1,167 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-runtime-ktx-android + 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 + + + + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + androidx.lifecycle + lifecycle-runtime-android + [2.10.0] + compile + aar + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 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-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar new file mode 100644 index 0000000..b3ab2d8 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom new file mode 100644 index 0000000..a0b9946 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-desktop/2.10.0/lifecycle-viewmodel-desktop-2.10.0.pom @@ -0,0 +1,164 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-desktop + 2.10.0 + 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 + + + + + + androidx.annotation + annotation-jvm + 1.9.1 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + 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.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.aar new file mode 100644 index 0000000..eaba497 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom new file mode 100644 index 0000000..c9262ed --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-ktx/2.10.0/lifecycle-viewmodel-ktx-2.10.0.pom @@ -0,0 +1,160 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-ktx + 2.10.0 + aar + Lifecycle ViewModel Kotlin Extensions + Kotlin extensions for 'viewmodel' artifact + 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-savedstate + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-testing + 2.10.0 + + + androidx.lifecycle + lifecycle-viewmodel-navigation3 + 2.10.0 + + + + + + androidx.lifecycle + lifecycle-viewmodel + [2.10.0] + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + 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-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar new file mode 100644 index 0000000..9ffbcf6 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom new file mode 100644 index 0000000..d7c9f2d --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel-savedstate-desktop/2.10.0/lifecycle-viewmodel-savedstate-desktop-2.10.0.pom @@ -0,0 +1,188 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel-savedstate-desktop + 2.10.0 + 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-jvm + 1.9.1 + compile + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.9.0 + compile + + + androidx.lifecycle + lifecycle-viewmodel-desktop + [2.10.0] + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + compile + + + androidx.lifecycle + lifecycle-common-jvm + [2.10.0] + runtime + + + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.7.3 + compile + + + androidx.savedstate + savedstate-desktop + 1.4.0 + 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.aar b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.aar new file mode 100644 index 0000000..6db112e Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom new file mode 100644 index 0000000..4524da5 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/lifecycle/lifecycle-viewmodel/2.10.0/lifecycle-viewmodel-2.10.0.pom @@ -0,0 +1,172 @@ + + + + + + + + 4.0.0 + androidx.lifecycle + lifecycle-viewmodel + 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 + + + + + + androidx.annotation + annotation + 1.9.1 + runtime + + + androidx.lifecycle + lifecycle-viewmodel-android + 2.10.0 + aar + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + 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/loader/loader/1.0.0/loader-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.aar new file mode 100644 index 0000000..32c5774 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom new file mode 100644 index 0000000..8bf9635 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/loader/loader/1.0.0/loader-1.0.0.pom @@ -0,0 +1,58 @@ + + + 4.0.0 + androidx.loader + loader + 1.0.0 + aar + Android Support Library loader + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 2011 + + + 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.annotation + annotation + 1.0.0 + compile + + + androidx.core + core + 1.0.0 + aar + compile + + + androidx.lifecycle + lifecycle-livedata + 2.0.0 + aar + compile + + + androidx.lifecycle + lifecycle-viewmodel + 2.0.0 + aar + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar new file mode 100644 index 0000000..e9074ee Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom new file mode 100644 index 0000000..abf4d6f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/localbroadcastmanager/localbroadcastmanager/1.0.0/localbroadcastmanager-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.localbroadcastmanager + localbroadcastmanager + 1.0.0 + aar + Android Support Library Local Broadcast Manager + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar new file mode 100644 index 0000000..7bb51fd Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom new file mode 100644 index 0000000..927140a --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/print/print/1.0.0/print-1.0.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + androidx.print + print + 1.0.0 + aar + Android Support Library Print + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar new file mode 100644 index 0000000..23a3cba Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom new file mode 100644 index 0000000..184bf8f --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/profileinstaller/profileinstaller/1.4.0/profileinstaller-1.4.0.pom @@ -0,0 +1,63 @@ + + + + + + + + 4.0.0 + androidx.profileinstaller + profileinstaller + 1.4.0 + aar + Profile Installer + Allows libraries to prepopulate ahead of time compilation traces to be read by ART + https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.0 + 2021 + + 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.annotation + annotation + 1.8.1 + runtime + + + androidx.concurrent + concurrent-futures + 1.1.0 + runtime + + + androidx.startup + startup-runtime + 1.1.1 + compile + aar + + + com.google.guava + listenablefuture + 1.0 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar new file mode 100644 index 0000000..a3d2302 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom new file mode 100644 index 0000000..775c10b --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/recyclerview/recyclerview/1.1.0/recyclerview-1.1.0.pom @@ -0,0 +1,57 @@ + + + 4.0.0 + androidx.recyclerview + recyclerview + 1.1.0 + aar + Android Support RecyclerView v7 + Android Support RecyclerView v7 + https://developer.android.com/jetpack/androidx + 2014 + + + 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.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.1.0 + aar + compile + + + androidx.customview + customview + 1.0.0 + aar + compile + + + androidx.collection + collection + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar new file mode 100644 index 0000000..21eb307 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom new file mode 100644 index 0000000..2df2368 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/resourceinspection/resourceinspection-annotation/1.0.1/resourceinspection-annotation-1.0.1.pom @@ -0,0 +1,40 @@ + + + + + + + + 4.0.0 + androidx.resourceinspection + resourceinspection-annotation + 1.0.1 + Android Resource Inspection - Annotations + Annotation processors for Android resource and layout inspection + https://developer.android.com/jetpack/androidx/releases/resourceinspection#1.0.1 + 2021 + + + 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.1.0 + runtime + + + diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar new file mode 100644 index 0000000..b75427e Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.jar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom new file mode 100644 index 0000000..caf7511 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-desktop/1.4.0/savedstate-desktop-1.4.0.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate-desktop + 1.4.0 + 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-coroutines-core + 1.9.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + compile + + + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.7.3 + compile + + + androidx.lifecycle + lifecycle-common-jvm + 2.9.2 + runtime + + + androidx.annotation + annotation-jvm + 1.9.1 + 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.aar b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.aar new file mode 100644 index 0000000..2620ace Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom new file mode 100644 index 0000000..3599586 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/savedstate/savedstate-ktx/1.4.0/savedstate-ktx-1.4.0.pom @@ -0,0 +1,73 @@ + + + + + + + + 4.0.0 + androidx.savedstate + savedstate-ktx + 1.4.0 + aar + SavedState Kotlin Extensions + Kotlin extensions for 'savedstate' artifact + https://developer.android.com/jetpack/androidx/releases/savedstate#1.4.0 + 2020 + + 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 + 1.4.0 + + + androidx.savedstate + savedstate-compose + 1.4.0 + + + androidx.savedstate + savedstate-testing + 1.4.0 + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + + + + + + androidx.savedstate + savedstate + [1.4.0] + compile + + + org.jetbrains.kotlin + kotlin-stdlib + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar new file mode 100644 index 0000000..adf44c4 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom new file mode 100644 index 0000000..37763ca --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/startup/startup-runtime/1.1.1/startup-runtime-1.1.1.pom @@ -0,0 +1,48 @@ + + + + + + + + 4.0.0 + androidx.startup + startup-runtime + 1.1.1 + aar + Android App Startup Runtime + Android App Startup Runtime + https://developer.android.com/jetpack/androidx/releases/startup#1.1.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.annotation + annotation + 1.1.0 + runtime + + + androidx.tracing + tracing + 1.0.0 + runtime + aar + + + diff --git a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar new file mode 100644 index 0000000..daec68b Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom new file mode 100644 index 0000000..d1523ab --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/tracing/tracing/1.0.0/tracing-1.0.0.pom @@ -0,0 +1,41 @@ + + + + + + + + 4.0.0 + androidx.tracing + tracing + 1.0.0 + aar + Android Tracing + Android Tracing + https://developer.android.com/jetpack/androidx/releases/tracing#1.0.0 + 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.annotation + annotation + 1.1.0 + runtime + + + diff --git a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar new file mode 100644 index 0000000..a6c44b9 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom new file mode 100644 index 0000000..53ee64c --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/transition/transition/1.5.0/transition-1.5.0.pom @@ -0,0 +1,73 @@ + + + + + + + + 4.0.0 + androidx.transition + transition + 1.5.0 + aar + Transition + Android Transition Support Library + https://developer.android.com/jetpack/androidx/releases/transition#1.5.0 + 2016 + + 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.transition + transition-ktx + 1.5.0 + + + + + + androidx.annotation + annotation + 1.2.0 + compile + + + androidx.collection + collection + 1.1.0 + runtime + + + androidx.core + core + 1.13.0 + compile + aar + + + androidx.dynamicanimation + dynamicanimation + 1.0.0 + runtime + aar + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar new file mode 100644 index 0000000..bf88577 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom new file mode 100644 index 0000000..ec234d3 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable-animated/1.1.0/vectordrawable-animated-1.1.0.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + androidx.vectordrawable + vectordrawable-animated + 1.1.0 + aar + Android Support AnimatedVectorDrawable + Android Support AnimatedVectorDrawable + https://developer.android.com/jetpack/androidx + 2015 + + + 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.vectordrawable + vectordrawable + 1.1.0 + aar + compile + + + androidx.interpolator + interpolator + 1.0.0 + aar + compile + + + androidx.collection + collection + 1.1.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar new file mode 100644 index 0000000..0746c62 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom new file mode 100644 index 0000000..80acd87 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/vectordrawable/vectordrawable/1.1.0/vectordrawable-1.1.0.pom @@ -0,0 +1,50 @@ + + + 4.0.0 + androidx.vectordrawable + vectordrawable + 1.1.0 + aar + Android Support VectorDrawable + Android Support VectorDrawable + https://developer.android.com/jetpack/androidx + 2015 + + + 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.annotation + annotation + 1.1.0 + compile + + + androidx.core + core + 1.1.0 + aar + compile + + + androidx.collection + collection + 1.1.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar new file mode 100644 index 0000000..4f5acaa Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom new file mode 100644 index 0000000..c834996 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/versionedparcelable/versionedparcelable/1.1.1/versionedparcelable-1.1.1.pom @@ -0,0 +1,43 @@ + + + 4.0.0 + androidx.versionedparcelable + versionedparcelable + 1.1.1 + aar + VersionedParcelable + Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.1.0 + compile + + + androidx.collection + collection + 1.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar new file mode 100644 index 0000000..a766729 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom new file mode 100644 index 0000000..c062095 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/viewpager/viewpager/1.0.0/viewpager-1.0.0.pom @@ -0,0 +1,51 @@ + + + 4.0.0 + androidx.viewpager + viewpager + 1.0.0 + aar + Android Support Library View Pager + The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later. + http://developer.android.com/tools/extras/support-library.html + 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 + http://source.android.com + + + + androidx.annotation + annotation + 1.0.0 + compile + + + androidx.core + core + 1.0.0 + aar + compile + + + androidx.customview + customview + 1.0.0 + aar + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar new file mode 100644 index 0000000..51496d4 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom new file mode 100644 index 0000000..6bf1732 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/viewpager2/viewpager2/1.0.0/viewpager2-1.0.0.pom @@ -0,0 +1,64 @@ + + + 4.0.0 + androidx.viewpager2 + viewpager2 + 1.0.0 + aar + AndroidX Widget ViewPager2 + AndroidX Widget ViewPager2 + https://developer.android.com/jetpack/androidx + 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.annotation + annotation + 1.1.0 + compile + + + androidx.fragment + fragment + 1.1.0 + aar + compile + + + androidx.recyclerview + recyclerview + 1.1.0 + aar + compile + + + androidx.core + core + 1.1.0 + aar + compile + + + androidx.collection + collection + 1.1.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar new file mode 100644 index 0000000..341c393 Binary files /dev/null and b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.aar differ diff --git a/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom new file mode 100644 index 0000000..277f9b8 --- /dev/null +++ b/tauri_app/docker/offline-maven/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom @@ -0,0 +1,64 @@ + + + + + + + + 4.0.0 + androidx.webkit + webkit + 1.14.0 + aar + WebKit + The WebKit Support Library is a static library you can add to your Android application in order to use android.webkit APIs that are not available for older platform versions. + https://developer.android.com/jetpack/androidx/releases/webkit#1.14.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.annotation + annotation-experimental + 1.4.1 + compile + aar + + + org.jspecify + jspecify + 1.0.0 + compile + + + androidx.core + core + 1.1.0 + compile + aar + + + androidx.annotation + annotation + 1.8.1 + compile + + + \ No newline at end of file diff --git a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar new file mode 100644 index 0000000..676d354 Binary files /dev/null and b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.aar differ diff --git a/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom new file mode 100644 index 0000000..fd53fa8 --- /dev/null +++ b/tauri_app/docker/offline-maven/com/google/android/material/material/1.12.0/material-1.12.0.pom @@ -0,0 +1,155 @@ + + + + + + + + 4.0.0 + com.google.android.material + material + 1.12.0 + aar + Material Components for Android + Material Components for Android is a static library that you can add to your Android application in order to use APIs that provide implementations of the Material Design specification. Compatible on devices running API 14 or later. + https://github.com/material-components/material-components-android + 2015 + + + 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://github.com/material-components/material-components-android.git + https://github.com/material-components/material-components-android + + + + + org.jetbrains.kotlin + kotlin-bom + 1.8.22 + pom + import + + + + + + androidx.activity + activity + 1.8.0 + compile + + + androidx.annotation + annotation + 1.2.0 + compile + + + androidx.appcompat + appcompat + 1.6.1 + compile + + + androidx.cardview + cardview + 1.0.0 + compile + + + androidx.coordinatorlayout + coordinatorlayout + 1.1.0 + compile + + + androidx.constraintlayout + constraintlayout + 2.0.1 + compile + + + androidx.core + core + 1.6.0 + compile + + + androidx.drawerlayout + drawerlayout + 1.1.1 + compile + + + androidx.dynamicanimation + dynamicanimation + 1.0.0 + compile + + + androidx.annotation + annotation-experimental + 1.0.0 + compile + + + androidx.fragment + fragment + 1.2.5 + compile + + + androidx.lifecycle + lifecycle-runtime + 2.0.0 + compile + + + androidx.recyclerview + recyclerview + 1.0.0 + compile + + + androidx.resourceinspection + resourceinspection-annotation + 1.0.1 + compile + + + androidx.transition + transition + 1.5.0 + compile + + + androidx.vectordrawable + vectordrawable + 1.1.0 + compile + + + androidx.viewpager2 + viewpager2 + 1.0.0 + compile + + + com.google.errorprone + error_prone_annotations + 2.15.0 + runtime + + + diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar new file mode 100644 index 0000000..ff3b59a Binary files /dev/null and b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.jar differ diff --git a/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom new file mode 100644 index 0000000..1bdffd2 --- /dev/null +++ b/tauri_app/docker/offline-maven/com/google/errorprone/error_prone_annotations/2.15.0/error_prone_annotations-2.15.0.pom @@ -0,0 +1,69 @@ + + + + + 4.0.0 + + + com.google.errorprone + error_prone_parent + 2.15.0 + + + error-prone annotations + error_prone_annotations + + + + junit + junit + ${junit.version} + test + + + + + + Apache 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + + maven-jar-plugin + + + + com.google.errorprone.annotations + + + + + + + diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar new file mode 100644 index 0000000..5e67692 Binary files /dev/null and b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.jar differ diff --git a/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom new file mode 100644 index 0000000..3bd8c01 --- /dev/null +++ b/tauri_app/docker/offline-maven/com/google/guava/listenablefuture/1.0/listenablefuture-1.0.pom @@ -0,0 +1,56 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 26.0-android + + listenablefuture + 1.0 + Guava ListenableFuture only + + Contains Guava's com.google.common.util.concurrent.ListenableFuture class, + without any of its other classes -- but is also available in a second + "version" that omits the class to avoid conflicts with the copy in Guava + itself. The idea is: + + - If users want only ListenableFuture, they depend on listenablefuture-1.0. + + - If users want all of Guava, they depend on guava, which, as of Guava + 27.0, depends on + listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... + version number is enough for some build systems (notably, Gradle) to select + that empty artifact over the "real" listenablefuture-1.0 -- avoiding a + conflict with the copy of ListenableFuture in guava itself. If users are + using an older version of Guava or a build system other than Gradle, they + may see class conflicts. If so, they can solve them by manually excluding + the listenablefuture artifact or manually forcing their build systems to + use 9999.0-.... + + + + + maven-source-plugin + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-javadoc-plugin + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar new file mode 100644 index 0000000..9b7f2a8 Binary files /dev/null and b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom new file mode 100644 index 0000000..c86dea1 --- /dev/null +++ b/tauri_app/docker/offline-maven/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.pom @@ -0,0 +1,61 @@ + + + + + + + + 4.0.0 + org.jetbrains.kotlin + kotlin-stdlib + 2.0.21 + Kotlin Stdlib + Kotlin Standard Library + https://kotlinlang.org/ + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Kotlin Team + JetBrains + https://www.jetbrains.com + + + + scm:git:https://github.com/JetBrains/kotlin.git + scm:git:https://github.com/JetBrains/kotlin.git + https://github.com/JetBrains/kotlin + + + + + org.jetbrains.kotlin + kotlin-stdlib-common + 2.0.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.8.0 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.8.0 + + + + + + org.jetbrains + annotations + 13.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar new file mode 100644 index 0000000..4cc6249 Binary files /dev/null and b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.jar differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom new file mode 100644 index 0000000..b5c77b8 --- /dev/null +++ b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-android/1.9.0/kotlinx-coroutines-android-1.9.0.pom @@ -0,0 +1,58 @@ + + + + + + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.9.0 + kotlinx-coroutines-android + Coroutines support libraries for Kotlin + https://github.com/Kotlin/kotlinx.coroutines + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.coroutines + + + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + 1.9.0 + pom + import + + + + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.9.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar new file mode 100644 index 0000000..9c7d0f7 Binary files /dev/null and b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.jar differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom new file mode 100644 index 0000000..cf97132 --- /dev/null +++ b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.9.0/kotlinx-coroutines-core-jvm-1.9.0.pom @@ -0,0 +1,58 @@ + + + + + + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.9.0 + kotlinx-coroutines-core + Coroutines support libraries for Kotlin + https://github.com/Kotlin/kotlinx.coroutines + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.coroutines + + + + + org.jetbrains.kotlinx + kotlinx-coroutines-bom + 1.9.0 + pom + import + + + + + + org.jetbrains + annotations + 23.0.0 + compile + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.0 + compile + + + diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar new file mode 100644 index 0000000..96a1308 Binary files /dev/null and b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.jar differ diff --git a/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom new file mode 100644 index 0000000..72e77da --- /dev/null +++ b/tauri_app/docker/offline-maven/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.7.3/kotlinx-serialization-core-jvm-1.7.3.pom @@ -0,0 +1,52 @@ + + + + + + + + 4.0.0 + org.jetbrains.kotlinx + kotlinx-serialization-core-jvm + 1.7.3 + kotlinx-serialization-core + Kotlin multiplatform serialization runtime library + https://github.com/Kotlin/kotlinx.serialization + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + JetBrains + JetBrains Team + JetBrains + https://www.jetbrains.com + + + + https://github.com/Kotlin/kotlinx.serialization + + + + + org.jetbrains.kotlinx + kotlinx-serialization-bom + 1.7.3 + pom + import + + + + + + org.jetbrains.kotlin + kotlin-stdlib + 2.0.20 + compile + + + diff --git a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar new file mode 100644 index 0000000..466b875 Binary files /dev/null and b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar differ diff --git a/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom new file mode 100644 index 0000000..ad13f32 --- /dev/null +++ b/tauri_app/docker/offline-maven/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.pom @@ -0,0 +1,34 @@ + + + + + + + + 4.0.0 + org.jspecify + jspecify + 1.0.0 + JSpecify annotations + An artifact of well-named and well-specified annotations to power static analysis checks + http://jspecify.org/ + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + kevinb9n + Kevin Bourrillion + kevinb9n@gmail.com + + + + scm:git:git@github.com:jspecify/jspecify.git + scm:git:git@github.com:jspecify/jspecify.git + https://github.com/jspecify/jspecify/ + + diff --git a/tauri_app/docker/populate-offline-agp.sh b/tauri_app/docker/populate-offline-agp.sh index 2bd9bb5..46c8c67 100644 --- a/tauri_app/docker/populate-offline-agp.sh +++ b/tauri_app/docker/populate-offline-agp.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Download Android Gradle Plugin and all transitive deps into offline-maven. -# Run once on a machine with internet access, then commit tauri_app/docker/offline-maven/. +# Download AGP + AndroidX runtime deps into offline-maven for isolated LAN builds. +# Run once on a machine with internet, then commit tauri_app/docker/offline-maven/. set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" @@ -13,22 +13,27 @@ if [ ! -x "${RESOLVER}/gradlew" ]; then exit 1 fi -echo "==> Resolving AGP ${AGP_VERSION} dependency tree into ${OFFLINE}" +echo "==> Resolving AGP ${AGP_VERSION} + AndroidX deps into ${OFFLINE}" cd "${RESOLVER}" chmod +x ./gradlew -./gradlew exportOfflineMaven --no-daemon -PagpVersion="${AGP_VERSION}" +sed -i 's/\r$//' ./gradlew 2>/dev/null || true +./gradlew exportAllOfflineMaven --no-daemon -PagpVersion="${AGP_VERSION}" -if [ ! -f "${OFFLINE}/.agp-offline-complete" ]; then - echo "Offline export did not complete successfully" >&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" +) -if [ ! -f "${OFFLINE}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" ]; then - echo "Missing required AGP dependency builder:${AGP_VERSION} in offline cache" >&2 - exit 1 -fi +for file in "${required[@]}"; do + if [ ! -f "${file}" ]; then + echo "Missing required offline artifact: ${file}" >&2 + exit 1 + fi +done TOTAL_SIZE="$(du -sh "${OFFLINE}" | awk '{print $1}')" -MODULES="$(find "${OFFLINE}" -name '*.jar' | wc -l | tr -d ' ')" -echo "==> Offline AGP cache ready: ${MODULES} jar(s), total ${TOTAL_SIZE}" +ARTIFACTS="$(find "${OFFLINE}" \( -name '*.jar' -o -name '*.aar' \) | 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 44cac04..186791a 100644 --- a/tauri_app/docker/prefetch-android-agp.sh +++ b/tauri_app/docker/prefetch-android-agp.sh @@ -15,6 +15,10 @@ copy_bundled() { echo "Bundled AGP cache is incomplete (missing builder:${AGP_VERSION}). Run populate-offline-agp.sh on a machine with internet." >&2 return 1 fi + if [ ! -f "${BUNDLED_REPO}/androidx/webkit/webkit/1.14.0/webkit-1.14.0.pom" ]; then + 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 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 5fdcb72..ea8f235 100644 --- a/tauri_app/docker/verify-offline-agp.sh +++ b/tauri_app/docker/verify-offline-agp.sh @@ -11,6 +11,9 @@ required=( "${LOCAL_REPO}/com/android/tools/build/builder/${AGP_VERSION}/builder-${AGP_VERSION}.pom" "${LOCAL_REPO}/com/android/tools/build/builder-model/${AGP_VERSION}/builder-model-${AGP_VERSION}.pom" "${LOCAL_REPO}/com/android/tools/build/gradle-api/${AGP_VERSION}/gradle-api-${AGP_VERSION}.pom" + "${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" ) for file in "${required[@]}"; do