-
-
Notifications
You must be signed in to change notification settings - Fork 169
Manually building an app bundle
Hannes Winkler edited this page Apr 5, 2025
·
1 revision
-
Follow the instructions in the flutter-engine-binaries-for-arm repo..
More Info
flutter-pi needs flutters
icudtl.dat
andlibflutter_engine.so.{debug,profile,release}
at runtime, depending on the runtime mode used. You actually have two options here:- you build the engine yourself. takes a lot of time, and it most probably won't work on the first try. But once you have it set up, you have unlimited freedom on which engine version you want to use. You can find some rough guidelines here.
- you can use the pre-built engine binaries I am providing in the flutter-engine-binaries-for-arm repo.. I will only provide binaries for some engine versions though (most likely the stable ones).
-
Make sure you've installed the flutter SDK. You must use a flutter SDK that's compatible to the installed engine binaries.
- for the flutter SDK, use flutter stable and keep it up to date.
- always use the latest available engine binaries
If you encounter error messages like
Invalid kernel binary format version
,Invalid SDK hash
orInvalid engine hash
:- Make sure your flutter SDK is on
stable
and up to date and your engine binaries are up to date. - If you made sure that's the case and the error still happens, create a new issue.
-
cd
into your app directory and runflutter build bundle
-
Deploy the asset bundle to the Raspberry Pi using
rsync
orscp
.- Using
rsync
(available on linux and macOS or on Windows when using WSL)rsync -a --info=progress2 ./build/flutter_assets/ pi@raspberrypi:/home/pi/my_apps_flutter_assets
- Using
scp
(available on linux, macOS and Windows)scp -r ./build/flutter_assets/ pi@raspberrypi:/home/pi/my_apps_flutter_assets
- Using
Example (flutter gallery)
git clone https://github.com/flutter/gallery.git flutter_gallery && cd flutter_gallery
flutter build bundle
rsync -a ./build/flutter_assets/ pi@raspberrypi:/home/pi/flutter_gallery/
Done. You can now run this app in debug-mode using flutter-pi /home/pi/flutter_gallery
.
- This is done entirely on your development machine as well.
- Find out the path to your flutter SDK. For me it's
C:\flutter
. (I'm on Windows) - Open terminal or commandline and
cd
into your app directory. - Build the asset bundle.
flutter build bundle
- Build the kernel snapshot. (Replace
my_app_name
with the name of your app)C:\flutter\bin\cache\dart-sdk\bin\dart.exe ^ C:\flutter\bin\cache\dart-sdk\bin\snapshots\frontend_server.dart.snapshot ^ --sdk-root C:\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk_product ^ --target=flutter ^ --aot ^ --tfa ^ -Ddart.vm.product=true ^ --packages .dart_tool\package_config.json ^ --output-dill build\kernel_snapshot.dill ^ --verbose ^ --depfile build\kernel_snapshot.d ^ package:my_app_name/main.dart
More information
- In versions prior to Flutter 3.3.0 the
--packages
argument should be set to.packages
. In versions greater than or equal to 3.3.0 the--packages
argument should be set to.dart_tool\package_config.json
.
- Fetch the latest
gen_snapshot_linux_x64_release
I provide in the engine binaries repo. - The following steps must be executed on a linux x64 machine. If you're on windows, you can use WSL. If you're on macOS, you can use a linux VM.
- Build the
app.so
. If you're building for arm64, you need to omit the--sim-use-hardfp
flag.gen_snapshot_linux_x64_release \ --deterministic \ --snapshot_kind=app-aot-elf \ --elf=build/flutter_assets/app.so \ --strip \ --sim-use-hardfp \ build/kernel_snapshot.dill
- Now you can switch to your normal OS again.
- Upload the asset bundle and the
app.so
to your Raspberry Pi.orrsync -a --info=progress2 ./build/flutter_assets/ pi@raspberrypi:/home/pi/my_app
scp -r ./build/flutter_assets/ pi@raspberrypi:/home/pi/my_app
- You can now launch the app in release mode using
flutter-pi --release /home/pi/my_app
- We'll build the asset bundle for
flutter_gallery
and deploy it usingrsync
in this example.git clone https://github.com/flutter/gallery.git flutter_gallery git clone --depth 1 https://github.com/ardera/flutter-engine-binaries-for-arm.git engine-binaries cd flutter_gallery git checkout d77920b4ced4a105ad35659fbe3958800d418fb9 flutter build bundle C:\flutter\bin\cache\dart-sdk\bin\dart.exe ^ C:\flutter\bin\cache\dart-sdk\bin\snapshots\frontend_server.dart.snapshot ^ --sdk-root C:\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk_product ^ --target=flutter ^ --aot ^ --tfa ^ -Ddart.vm.product=true ^ --packages .dart_tool\package_config.json ^ --output-dill build\kernel_snapshot.dill ^ --verbose ^ --depfile build\kernel_snapshot.d ^ package:gallery/main.dart wsl ../engine-binaries/arm/gen_snapshot_linux_x64_release \ --deterministic \ --snapshot_kind=app-aot-elf \ --elf=build/flutter_assets/app.so \ --strip \ --sim-use-hardfp \ build/kernel_snapshot.dill rsync -a --info=progress2 ./build/flutter_assets/ pi@raspberrypi:/home/pi/flutter_gallery/ exit
- Done. You can now run this app in release mode using
flutter-pi --release /home/pi/flutter_gallery
.