Fix apk signing

This commit is contained in:
SSimco
2025-08-31 10:04:50 +03:00
parent 0af3920844
commit f81c5fbd13
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -272,6 +272,9 @@ jobs:
if [[ -n "$ANDROID_STORE_FILE_BASE64" ]]; then
base64 --decode <<< "${ANDROID_STORE_FILE_BASE64}" > store.jks
export ANDROID_STORE_FILE=$(pwd)/store.jks
echo "Android signing store file has been set up."
else
echo "No Android signing store file provided. The APK will not be signed with a release key."
fi
./gradlew assembleRelease
+1 -1
View File
@@ -70,7 +70,7 @@ android {
jniLibs.useLegacyPackaging = true
}
val keystoreFilePath: String? = System.getenv("ANDROID_KEYSTORE_FILE")
val keystoreFilePath: String? = System.getenv("ANDROID_STORE_FILE")
signingConfigs {
if (keystoreFilePath != null) {