Configuration
Configure FVM and IDEs for better support for different development environments.
#
ProjectFVM will create a relative symlink in your project from .fvm/flutter_sdk
to the cache of the selected version. Add it to your .gitignore
#
FVM#
Cache DirectoryYou can configure the fvm cache directory by setting FVM_HOME
environment variable. If nothing is set the default fvm path will be used. You are also able to change the directory by setting the --cache-path
on the config. See below
#
ConfigThere are some configurations which you can change on FVM. All settings set on CLI are compatible with the Sidekick(GUI).
#
Different Flutter RepoYou can use a different Flutter repo, a fork or as a local cache, by setting the FVM_GIT_CACHE
environment variable.
#
List config#
Set cache pathLocation where Flutter SDK versions will be stored. If nothing is set, the default will be used.
#
IDEinfo
You might have to restart your IDE and the Flutter debugger to make sure it uses the latest version of the configurations in some situations.
#
VS Code#
Option 1 - Automatic Switching (Recommended)You can add the version symlink for a dynamic switch. Simply execute fvm use <desired version>
in the project root directory and fvm will create the following file:
VS Code will always use the version selected within the project for all IDE tooling. Also, remove the flutter SDK from search to make things easier.
#
Option 2 - View all SDKs (Manual switching)VSCode has the ability for you to switch between all cached Flutter SDKs using Flutter: Change SDK
.
info
Use command fvm list
to show you the cache path to the versions.
#
List all versions installed by FVMYou can see all the versions installed by FVM in VS Code by just providing path to versions
directory. In the following example path for macOS, replace $USER
with your username:
Alternatively, you can specify only selected versions. The following snippet will cause VS Code to show only stable
and dev
versions of Flutter.
To change current Flutter version open a project and select Flutter: Change SDK
in the command palette. You should see all the versions as depicted in the following screenshot.
#
Android Studio- Go to
Languages & Frameworks > Flutter
or search for Flutter and change Flutter SDK path. - Copy the absolute path of fvm symbolic link in your root project directory. Example:
/absolute-project-path/.fvm/flutter_sdk
- Apply the changes.
- Restart Android Studio to see the new settings applied.
important
For Android Studio to detect the dynamic change of SDKs, the installed SDK must have finished setup.
Using fvm install <VERSION>
will ensure that setup during install.
If you have installed through another command and setup was not completed. You can finish by just running fvm flutter --version
Android Studio might take a few seconds to detect the dynamic SDK change.
If you want to ignore the Flutter SDK root directory within Android Studio you can add the following to .idea/workspace.xml
.
If that doesn't work, go to Android Studio -> Preferences -> Editor -> File Types -> Ignored Files and Folders and add flutter_sdk
: