Update fdroid scripts

This commit is contained in:
Leendert de Borst
2026-01-28 12:18:10 +01:00
parent c7f142de7e
commit 925be8e9eb
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
fdroiddata
fdroidserver
net.aliasvault.app.yml
*.apk
*.idsig

View File

@@ -25,8 +25,12 @@ error() { echo -e "${RED}[ERROR]${RESET} $1"; }
echo -e "${YELLOW}=== APK Debug Signer (macOS) ===${RESET}"
# --- Ask for unsigned APK ---
read -rp "Enter unsigned APK filename (example: app-release-unsigned.apk): " APK_IN
# --- Unsigned APK: from argument or prompt ---
if [[ -n "${1:-}" ]]; then
APK_IN="$1"
else
read -rp "Enter unsigned APK filename (example: app-release-unsigned.apk): " APK_IN
fi
if [[ ! -f "$APK_IN" ]]; then
error "File not found: $APK_IN"