fix(android): Correct architecture names (#1255)

This commit is contained in:
Keshav
2026-01-19 08:18:42 -05:00
committed by GitHub
parent a5e8d02eeb
commit e3ec38d49e
2 changed files with 8 additions and 8 deletions

8
dist/index.js vendored
View File

@@ -85979,14 +85979,14 @@ async function buildProject() {
path: (0,external_node_path_.join)(artifactsPath, `apk/arm/release/app-arm-release-unsigend.apk`),
name: app.name,
platform: targetInfo.platform,
arch: 'universal',
arch: 'arm',
bundle: 'apk',
version: app.version,
}), (0,utils/* createArtifact */.Dg)({
path: (0,external_node_path_.join)(artifactsPath, `apk/x86_64/release/app-x86_64-release-unsigend.apk`),
name: app.name,
platform: targetInfo.platform,
arch: 'arm',
arch: 'x86_64',
bundle: 'apk',
version: app.version,
}), (0,utils/* createArtifact */.Dg)({
@@ -86018,14 +86018,14 @@ async function buildProject() {
path: (0,external_node_path_.join)(artifactsPath, `apk/arm/${debug}/app-arm-${debug}.apk`),
name: app.name,
platform: targetInfo.platform,
arch: 'universal',
arch: 'arm',
bundle: 'apk',
version: app.version,
}), (0,utils/* createArtifact */.Dg)({
path: (0,external_node_path_.join)(artifactsPath, `apk/x86_64/${debug}/app-x86_64-${debug}.apk`),
name: app.name,
platform: targetInfo.platform,
arch: 'arm',
arch: 'x86_64',
bundle: 'apk',
version: app.version,
}), (0,utils/* createArtifact */.Dg)({

View File

@@ -407,7 +407,7 @@ export async function buildProject(): Promise<Artifact[]> {
),
name: app.name,
platform: targetInfo.platform,
arch: 'universal',
arch: 'arm',
bundle: 'apk',
version: app.version,
}),
@@ -418,7 +418,7 @@ export async function buildProject(): Promise<Artifact[]> {
),
name: app.name,
platform: targetInfo.platform,
arch: 'arm',
arch: 'x86_64',
bundle: 'apk',
version: app.version,
}),
@@ -461,7 +461,7 @@ export async function buildProject(): Promise<Artifact[]> {
path: join(artifactsPath, `apk/arm/${debug}/app-arm-${debug}.apk`),
name: app.name,
platform: targetInfo.platform,
arch: 'universal',
arch: 'arm',
bundle: 'apk',
version: app.version,
}),
@@ -472,7 +472,7 @@ export async function buildProject(): Promise<Artifact[]> {
),
name: app.name,
platform: targetInfo.platform,
arch: 'arm',
arch: 'x86_64',
bundle: 'apk',
version: app.version,
}),