Update keystore path for release builds

The keystore path was updated to point to a specific keystore file (pallectrum.keystore) instead of the default .keystore directory to ensure the correct keystore is used during APK signing.
This commit is contained in:
2025-11-24 15:57:49 +01:00
parent 516ef1cf56
commit 62d8749b49

View File

@@ -51,7 +51,7 @@ if [[ "$3" == "release" ]] ; then
TARGET="release"
export P4A_RELEASE_KEYSTORE_PASSWD="$4"
export P4A_RELEASE_KEYALIAS_PASSWD="$4"
export P4A_RELEASE_KEYSTORE=~/.keystore
export P4A_RELEASE_KEYSTORE=~/.keystore/pallectrum.keystore
export P4A_RELEASE_KEYALIAS=pallectrum
if [ -z "$P4A_RELEASE_KEYSTORE_PASSWD" ] || [ -z "$P4A_RELEASE_KEYALIAS_PASSWD" ]; then
echo "p4a password not defined"