diff options
author | 2024-10-07 16:25:28 +0900 | |
---|---|---|
committer | 2024-10-07 13:14:10 +0000 | |
commit | 4d058d87aebaa1d3d47a835559dfa0fe0d8b7b74 (patch) | |
tree | 4739e36eb144cd6fec0d0fde90b920ed859c6671 /lib/core | |
parent | f870bbe3c49d421ff8ea561752b3b0a38ad04e96 (diff) |
Settings: Parse version strings from text files
Version strings displayed on the settings page were tentatively
implemented as constant strings and were not updated. Let's
implement a small piece of code to parse text files, similar to
how the Qt-version of settings app did.
Bug-AGL: SPEC-5256
Change-Id: I6d3669bff5299c818c3a9f1c5439ddf1ab952760
Signed-off-by: Hiroyuki Ishii <ishii.hiroyuki002@jp.panasonic.com>
Diffstat (limited to 'lib/core')
-rw-r--r-- | lib/core/constants/constants.dart | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/core/constants/constants.dart b/lib/core/constants/constants.dart index 65aa680..edee874 100644 --- a/lib/core/constants/constants.dart +++ b/lib/core/constants/constants.dart @@ -2,8 +2,6 @@ import '../../export.dart'; const splashWarning = 'Please use the IVI system responsibly while driving. Keep your attention on the road, and use voice commands or hands-free controls when interacting with the system. Distracted driving can lead to accidents and serious injury. Follow all traffic laws and drive safely.'; -const aglVeriosn = 'AGL 16.0.2 (pike)'; -const kernelVeriosn = 'Kernel: 5.10.41.-yocto-standard'; const maxFuelLevel = 100.0; const maxSpeed = 240.0; const maxRpm = 8000; |