A Flutter bootstrap project Cookiecutter template for packaging Flet app
Go to file
Feodor Fitsner 68f3727168
0.70.0 android crash fix (#60)
* Update serious_python dependency ref

Changed the git reference for serious_python from 'android-crash-fix' to 'android10-fix' in pubspec.yaml to use the latest fix.

* Update serious_python dependency ref

Changed the git reference for serious_python from 'android10-fix' to 'android-crash-fix' in pubspec.yaml to use the latest fix for Android crashes.

* Update serious_python dependency ref in pubspec.yaml

Changed the git ref for serious_python from 'android-crash-fix' to 'android10-fix' to use the updated branch.

* Add random suffix to UDS socket filename

Appends a random 8-character string to the Unix Domain Socket filename to avoid potential conflicts when multiple instances are running. Introduces a helper function for generating random strings.

* Revert "Add random suffix to UDS socket filename"

This reverts commit bcff44e8e1.

* Comment out debugPrint override in release mode

The line that disables debugPrint in release mode has been commented out, allowing debug messages to be printed even in release builds. This may be for troubleshooting or to temporarily enable logging.

* Fix UDS path for FLET_SERVER_UDS_PATH environment variable

Updated the UDS path assignment to use the full path by joining appTempPath and the socket filename. This ensures the environment variable points to the correct socket location.

* Fix UDS path assignment for non-Windows platforms

Corrects the construction of the Unix Domain Socket path by joining the temp directory and socket filename, ensuring the environment variable and pageUrl are set consistently.

* Enable debugPrint suppression in release mode

Uncommented the line that suppresses debugPrint output when not in debug mode and in release builds. Also updated socket address generation to use a temporary storage path from environment variables for non-TCP output.

* Fix null safety issue with environment variable access

Added a non-null assertion operator to ensure 'FLET_APP_STORAGE_TEMP' is not null when constructing the socket address path.
2025-12-16 15:51:19 -08:00
{{cookiecutter.out_dir}} 0.70.0 android crash fix (#60) 2025-12-16 15:51:19 -08:00
.DS_Store Update serious_python to 0.9.6 and .gitignore 2025-12-01 16:19:06 -08:00
.gitattributes Initial commit 2023-12-27 16:02:58 -08:00
.gitignore Update serious_python to 0.9.6 and .gitignore 2025-12-01 16:19:06 -08:00
LICENSE Initial commit 2023-12-27 16:02:58 -08:00
README.md Initial commit 2023-12-27 16:02:58 -08:00
cookiecutter.json V1 web support (#47) 2025-04-29 13:46:14 -07:00
cookiecutter_extensions.py 0.27.4 Android splash and Loading screen (#43) 2025-03-04 13:52:49 -08:00

README.md

flet-build-template

A Flutter bootstrap project Cookiecutter template for packaging Flet app