Tweaked zip align params

This commit is contained in:
Drew Heavner
2020-05-05 11:04:01 -04:00
parent c0f7f2522e
commit 24059710d7
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ function signApkFile(apkFile, signingKeyFile, alias, keyStorePassword, keyPasswo
// Align the apk file
const alignedApkFile = apkFile.replace('.apk', '-aligned.apk');
yield exec.exec(`"${zipAlign}"`, [
'-v', '-p', '4',
'-v', '4',
apkFile,
alignedApkFile
]);
+2 -2
View File
@@ -1,13 +1,13 @@
{
"name": "sign-android-release",
"version": "1.0.0",
"version": "1.0.2",
"private": true,
"description": "GitHub action used to sign Android release packages",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"deploy": "npm run build && ./update_release.sh"
"deploy": "tsc && ./update_release.sh"
},
"repository": {
"type": "git",
+1 -1
View File
@@ -28,7 +28,7 @@ export async function signApkFile(
// Align the apk file
const alignedApkFile = apkFile.replace('.apk', '-aligned.apk');
await exec.exec(`"${zipAlign}"`, [
'-v', '-p', '4',
'-v', '4',
apkFile,
alignedApkFile
]);