Trace: • Development FAQ
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
flutterui:faq [2021/12/14 10:41] admin |
flutterui:faq [2023/06/14 09:03] (current) admin |
||
---|---|---|---|
Line 4: | Line 4: | ||
==== Dependencies/Versions ==== | ==== Dependencies/Versions ==== | ||
- | All dependencies and version numbers are defined in [[https://github.com/sibvisions/flutterclient/blob/master/pubspec.yaml|pubscpec.yaml]] | + | All dependencies and version numbers are defined in [[https://github.com/sibvisions/flutter_jvx/blob/master/pubspec.yaml|pubscpec.yaml]]. |
+ | |||
+ | e.g. | ||
+ | <code bash> | ||
+ | environment: | ||
+ | sdk: ">=3.0.0 <4.0.0" | ||
+ | flutter: "3.10.4" | ||
+ | </code> | ||
+ | |||
+ | == Android == | ||
+ | For Android devices, we have following settings: | ||
+ | |||
+ | <code bash> | ||
+ | compileSdkVersion 33 | ||
+ | minSdkVersion 21 | ||
+ | targetSdkVersion 33 | ||
+ | </code> | ||
==== Null safety ==== | ==== Null safety ==== | ||
- | Our flutterclient uses [[https://dart.dev/null-safety/understanding-null-safety|null safety]] but not all dependencies use null safety. That is why null safety must be [[https://dart.dev/null-safety/unsound-null-safety|turned off]]. | + | Our flutterclient uses [[https://dart.dev/null-safety/understanding-null-safety|null safety]] and all dependencies use null safety. |