From 7e5885e5c8f66375ffed9e65188e5d6ac8a16aa9 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Tue, 10 Dec 2024 20:38:09 +0100 Subject: [PATCH] chore: cleanup fvm configuration I guess fvm changed the way it does it's configuration at some point, but rather than having .fvm/fmv_config.json checked in .fvmrc should be checked in. The .fvm directory is used to store files and symlinks related to the installed Flutter version and as such should not be commited at all. --- .fvm/fvm_config.json | 4 ---- .fvmrc | 4 ++++ .gitignore | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 .fvm/fvm_config.json create mode 100644 .fvmrc diff --git a/.fvm/fvm_config.json b/.fvm/fvm_config.json deleted file mode 100644 index 5cb9b8f..0000000 --- a/.fvm/fvm_config.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "flutterSdkVersion": "3.7.11", - "flavors": {} -} \ No newline at end of file diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 0000000..14b86e4 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,4 @@ +{ + "flutter": "3.7.11", + "flavors": {} +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 0574f2a..35f1790 100644 --- a/.gitignore +++ b/.gitignore @@ -45,5 +45,5 @@ app.*.map.json /.env *.sqlite* -/.fvm/flutter_sdk +.fvm/ *.keystore