Skip to content

Commit

Permalink
Fix signing release apk (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
SyncedSynapse authored May 28, 2018
1 parent 179e0fb commit e6470a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/jenkins/android/packaging/apksign
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ SIGN_STOREPASS=$2
SIGN_KEY=$3
SIGN_KEYPASS=$4



echo "Signing..."
$ZIPALIGN_JENKINS -f 4 $WORKSPACE/app/build/outputs/apk/app-full-release-unsigned.apk $WORKSPACE/kore-release.apk
$ZIPALIGN_JENKINS -f 4 $WORKSPACE/app/build/outputs/apk/release/app-release-unsigned.apk $WORKSPACE/kore-release.apk
$APKSIGNER_JENKINS sign --ks $SIGN_STORE --ks-key-alias $SIGN_KEY --ks-pass pass:$SIGN_STOREPASS $WORKSPACE/kore-release.apk
echo "$WORKSPACE/kore-release.apk created"

0 comments on commit e6470a1

Please sign in to comment.