-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use FVM #146
Use FVM #146
Changes from 4 commits
9494332
7fb62c5
1dfa58f
6dde8c2
dfb6ee9
59f8bea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"flutterSdkVersion": "2.5.2", | ||
"flavors": {} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// Set the path of the Flutter SDK to the path of the FVM Flutter version. | ||
// | ||
// VS Code will always use the version selected within the project for all | ||
// IDE tooling. | ||
// | ||
// Source: https://fvm.app/docs/getting_started/configuration#option-1---automatic-switching-recommended | ||
"dart.flutterSdkPath": ".fvm/flutter_sdk", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Android Studio users need to set up FVM for themselves in Android Studio, because I think in Android Studio isn't something like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the info, then we should add this to our setup documentation doc as well |
||
"search.exclude": { | ||
// Remove .fvm files from search | ||
"**/.fvm": true | ||
}, | ||
"files.watcherExclude": { | ||
// Remove .fvm files from file watching | ||
"**/.fvm": true | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will update the Flutter version in a seperate PR