mirror of
https://github.com/izzy2lost/WeeU.git
synced 2026-07-06 00:19:59 -07:00
Fix apk signing
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user