diff options
| author | xengineering <me@xengineering.eu> | 2026-04-24 21:16:39 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2026-04-24 21:53:56 +0200 |
| commit | 6593dff284d1ab7fdb85b0992ebfdd9bbeed7441 (patch) | |
| tree | 6ff1915120d98e485dc7c8c06db695351ff05ad8 | |
| parent | a59c7dd5dcbf841cb042505a4fd30973a9f38dd9 (diff) | |
| download | sia-app-6593dff284d1ab7fdb85b0992ebfdd9bbeed7441.tar sia-app-6593dff284d1ab7fdb85b0992ebfdd9bbeed7441.tar.zst sia-app-6593dff284d1ab7fdb85b0992ebfdd9bbeed7441.zip | |
Switch to fvm
This tracks the used Flutter SDK version compatible with the [fvm][1]
Flutter version management tool.
It allows to make the build reproducible. The build documentation is
adapted and the used Flutter version committed.
[1]: https://fvm.app
| -rw-r--r-- | .fvmrc | 3 | ||||
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | README.md | 6 |
3 files changed, 9 insertions, 3 deletions
@@ -0,0 +1,3 @@ +{ + "flutter": "3.41.7" +}
\ No newline at end of file @@ -43,3 +43,6 @@ app.*.map.json /android/app/debug /android/app/profile /android/app/release + +# FVM Version Cache +.fvm/
\ No newline at end of file @@ -5,14 +5,14 @@ The app can be run in debug mode allowing a hot-reload. ``` -flutter run +fvm flutter run ``` A release version can be built for all the targets individually. ``` -flutter build linux -flutter build apk +fvm flutter build linux +fvm flutter build apk ``` ## Icon maintenance |
