fix docker for tauri android build

This commit is contained in:
lendry
2026-06-27 00:10:28 +03:00
parent 886b7e9ade
commit 1a30e7e21c
98 changed files with 24218 additions and 68 deletions

View File

@@ -0,0 +1,110 @@
{
"formatVersion": "1.1",
"component": {
"group": "androidx.emoji2",
"module": "emoji2-views-helper",
"version": "1.2.0",
"attributes": {
"org.gradle.status": "release"
}
},
"createdBy": {
"gradle": {
"version": "7.5-rc-2"
}
},
"variants": [
{
"name": "releaseVariantReleaseApiPublication",
"attributes": {
"org.gradle.category": "library",
"org.gradle.dependency.bundling": "external",
"org.gradle.libraryelements": "aar",
"org.gradle.usage": "java-api"
},
"dependencies": [
{
"group": "androidx.core",
"module": "core",
"version": {
"requires": "1.3.0"
}
}
],
"files": [
{
"name": "emoji2-views-helper-1.2.0.aar",
"url": "emoji2-views-helper-1.2.0.aar",
"size": 21917,
"sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd",
"sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4",
"sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0",
"md5": "1a4b6d516e641772360a3030d6feda7f"
}
]
},
{
"name": "releaseVariantReleaseRuntimePublication",
"attributes": {
"org.gradle.category": "library",
"org.gradle.dependency.bundling": "external",
"org.gradle.libraryelements": "aar",
"org.gradle.usage": "java-runtime"
},
"dependencies": [
{
"group": "androidx.collection",
"module": "collection",
"version": {
"requires": "1.1.0"
}
},
{
"group": "androidx.core",
"module": "core",
"version": {
"requires": "1.3.0"
}
},
{
"group": "androidx.emoji2",
"module": "emoji2",
"version": {
"requires": "1.2.0"
}
}
],
"files": [
{
"name": "emoji2-views-helper-1.2.0.aar",
"url": "emoji2-views-helper-1.2.0.aar",
"size": 21917,
"sha512": "f93f48ca072dfe10289b790deb9703f3d313fa0457f37cbc92881d31428372178f74d1fa41fb6605ab3ccb41ad2f02b710e72fa319b92e82926c0b523d9e8ebd",
"sha256": "7ffa4d464d9db259fca0cdb50fbd4ab63d6872bcda59468b9f7555504c7d5ac4",
"sha1": "4a22802fc9e88ad232522f04a35d1fdc3e5b4df0",
"md5": "1a4b6d516e641772360a3030d6feda7f"
}
]
},
{
"name": "sourcesElements",
"attributes": {
"org.gradle.category": "documentation",
"org.gradle.dependency.bundling": "external",
"org.gradle.docstype": "sources",
"org.gradle.usage": "java-runtime"
},
"files": [
{
"name": "emoji2-views-helper-1.2.0-sources.jar",
"url": "emoji2-views-helper-1.2.0-sources.jar",
"size": 17409,
"sha512": "b5babc8d9ebcf9faa0d0f20464d97e2ee686058fc593b801289866d5c8221df83b7ac9415ddc18eccccb5e26e69d0eda1b147d6d60685183c2d6308689500507",
"sha256": "ede24c021b055ab0bc287ce3ab784ab1fff3f336dae1ee9adae8b0d849e7b997",
"sha1": "833c4c3f1564f35f7f62b810bf3e0eaf544ebc1f",
"md5": "b7694abf3b882286206b7c00585bf461"
}
]
}
]
}

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>androidx.emoji2</groupId>
<artifactId>emoji2-views-helper</artifactId>
<version>1.2.0</version>
<packaging>aar</packaging>
<name>Android Emoji2 Compat view helpers</name>
<description>View helpers for Emoji2</description>
<url>https://developer.android.com/jetpack/androidx/releases/emoji2#1.2.0</url>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>The Android Open Source Project</name>
</developer>
</developers>
<scm>
<connection>scm:git:https://android.googlesource.com/platform/frameworks/support</connection>
<url>https://cs.android.com/androidx/platform/frameworks/support</url>
</scm>
<dependencies>
<dependency>
<groupId>androidx.collection</groupId>
<artifactId>collection</artifactId>
<version>1.1.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>androidx.core</groupId>
<artifactId>core</artifactId>
<version>1.3.0</version>
<scope>compile</scope>
<type>aar</type>
</dependency>
<dependency>
<groupId>androidx.emoji2</groupId>
<artifactId>emoji2</artifactId>
<version>[1.2.0]</version>
<scope>runtime</scope>
<type>aar</type>
</dependency>
</dependencies>
</project>