fix(android): emit ARM64-only Pixel 10 APK
Pixel 10 APK / build (push) Failing after 10m35s

This commit is contained in:
Codex
2026-08-10 07:47:26 +02:00
parent ac4a267d30
commit 6508dfa8a7
2 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -32,7 +32,8 @@ the generated assets and native runtime, then run:
melos run build-browser-pixel10 --no-select
```
The command produces:
The command asks Flutter for a split ARM64 artifact, verifies that no other
ABI is packaged, and publishes it under the stable path:
```text
apps/weblibre/build/app/outputs/flutter-apk/app-pixel10-release.apk
+4 -1
View File
@@ -111,5 +111,8 @@ melos:
run: |
set -e
cd apps/weblibre
flutter build apk --release --flavor pixel10 --target-platform android-arm64 --no-tree-shake-icons
flutter build apk --release --flavor pixel10 --target-platform android-arm64 --split-per-abi --no-tree-shake-icons
arm64_apk="$(find build/app/outputs/flutter-apk -maxdepth 1 -type f -name '*pixel10*' -name '*arm64-v8a*' -name '*release.apk' -print -quit)"
test -n "$arm64_apk"
mv "$arm64_apk" build/app/outputs/flutter-apk/app-pixel10-release.apk
../../scripts/verify-pixel10-apk.sh build/app/outputs/flutter-apk/app-pixel10-release.apk