diff --git a/dist/index.js b/dist/index.js index 9092eea..a5a7284 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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)({ diff --git a/src/build.ts b/src/build.ts index aa75100..2307d19 100644 --- a/src/build.ts +++ b/src/build.ts @@ -407,7 +407,7 @@ export async function buildProject(): Promise { ), name: app.name, platform: targetInfo.platform, - arch: 'universal', + arch: 'arm', bundle: 'apk', version: app.version, }), @@ -418,7 +418,7 @@ export async function buildProject(): Promise { ), 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 { 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 { ), name: app.name, platform: targetInfo.platform, - arch: 'arm', + arch: 'x86_64', bundle: 'apk', version: app.version, }),