fix Verify APK identity step
Build Futon with Niadd patch / Build Futon Niadd debug APK (push) Successful in 12m57s

This commit is contained in:
2026-08-09 22:24:46 +03:00
parent 316a53c249
commit e8d027bca3
+7 -7
View File
@@ -280,18 +280,19 @@ jobs:
test -x "${AAPT2}"
echo "=== APK file ==="
ls -lh "${APK}"
echo "=== APK badging ==="
echo "=== Extract APK badging ==="
"${AAPT}" dump badging "${APK}" | head -n 30
"${AAPT}" dump badging "${APK}" \
> /tmp/futon-niadd-badging.txt
head -n 30 /tmp/futon-niadd-badging.txt
echo "=== Verify package name ==="
PACKAGE_INFO="$(
"${AAPT}" dump badging "${APK}" |
grep '^package:'
grep '^package:' /tmp/futon-niadd-badging.txt
)"
echo "${PACKAGE_INFO}"
@@ -310,8 +311,7 @@ jobs:
echo "=== Verify application label ==="
APP_LABEL="$(
"${AAPT}" dump badging "${APK}" |
grep '^application-label:'
grep '^application-label:' /tmp/futon-niadd-badging.txt
)"
echo "${APP_LABEL}"