Skip to content

Commit

Permalink
fix(cli): use correct pass signature for apksigner signing (#7365)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Mar 25, 2024
1 parent 87271e2 commit e4f8610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/android/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async function signWithApkSigner(
}

if (buildOptions.keystorealiaspass) {
signingArgs.push('--key-pass', buildOptions.keystorealiaspass);
signingArgs.push('--key-pass', `pass:${buildOptions.keystorealiaspass}`);
}

await runTask('Signing Release', async () => {
Expand Down

0 comments on commit e4f8610

Please sign in to comment.