disable tree shaking of icons

This commit is contained in:
Fabian Freund
2026-03-12 15:09:29 +01:00
parent b927a9596f
commit bf852295c3
+2 -2
View File
@@ -88,12 +88,12 @@ jobs:
- name: Build APK
working-directory: app
run: flutter build apk --release --target-platform android-arm,android-arm64 --split-per-abi
run: flutter build apk --release --target-platform android-arm,android-arm64 --split-per-abi --no-tree-shake-icons
- name: Build App Bundle
if: steps.build-type.outputs.is_prerelease == 'false'
working-directory: app
run: flutter build appbundle --target-platform android-arm,android-arm64
run: flutter build appbundle --target-platform android-arm,android-arm64 --no-tree-shake-icons
- name: Create github artifact release (Prerelease)
if: steps.build-type.outputs.is_prerelease == 'true'