From 3def036b3bd6273889adaaaa4ca42b698334ef6a Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Fri, 31 Jul 2026 07:44:54 +0200 Subject: [PATCH] split per abi --- pubspec.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8cf8ba4d..4320f906 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -95,14 +95,14 @@ melos: cd apps/weblibre flutter build apk --release --flavor stable --target-platform android-arm,android-arm64 --split-per-abi --no-tree-shake-icons build-browser-alpha: - description: Build arm64 alpha release APK with Impeller enabled (side-by-side installable with stable) + description: Build alpha release APKs split per ABI with Impeller enabled (side-by-side installable with stable) run: | set -e cd apps/weblibre - flutter build apk --release --flavor alpha --target-platform android-arm64 --no-tree-shake-icons + flutter build apk --release --flavor alpha --target-platform android-arm,android-arm64 --split-per-abi --no-tree-shake-icons build-browser-alpha-legacy: - description: Build arm64 alpha release APK with the legacy Skia renderer (side-by-side installable with stable) + description: Build alpha release APKs split per ABI with the legacy Skia renderer (side-by-side installable with stable) run: | set -e cd apps/weblibre - flutter build apk --release --flavor alphaLegacy --target-platform android-arm64 --no-tree-shake-icons + flutter build apk --release --flavor alphaLegacy --target-platform android-arm,android-arm64 --split-per-abi --no-tree-shake-icons