Questions tagged [fvm]

31 questions
10
votes
4 answers

How can I fix java.lang.AssertionError: annotationType(): unrecognized Attribute name MODULE?

On my flutter project, using fvm, I migrated the project from flutter 2.0.6 to flutter 2.5.2. After fixing all null safesty issues. I get the following error when I try to run my project: $ fvm flutter run Using hardware rendering with device sdk…
Kin Pu
  • 400
  • 1
  • 4
  • 13
3
votes
1 answer

Fvm requires permission on Windows

I am using Fvm v2.4.1 and using commands like: fvm list fvm config fvm doctor It work fine, but when fvm use --verbose is entered it displays: [0.076s] Version: 3.0.3 - already installed. [0.097s] FileSystemException: Cannot create link…
2
votes
1 answer

Problem with fvm installation on windows 10 (choco install fvm)

I'm trying to install FVM with choco install fvm and getting an error as can be seen in the image link. It says the installation is complete BUT when I try to run fvm I get the following error: Cannot find file at '..\lib\fvm\bin\fvm.exe'…
2
votes
1 answer

How to clean uninstall flutter fvm package

which folder has to be delete for clean uninstall FVM package/Flutter Version Management ?
CCP
  • 886
  • 1
  • 10
  • 30
1
vote
1 answer

Cannot find file at '..\lib\fvm\bin\fvm.exe' (C:\ProgramData\chocolatey\lib\fvm\bin\fvm.exe). This usually indicates a missing or moved file

When i run: flutter pub global list i get: fvm 2.4.1 but when i run fvm i get the error: Cannot find file at '..\lib\fvm\bin\fvm.exe' (C:\ProgramData\chocolatey\lib\fvm\bin\fvm.exe). This usually indicates a missing or moved file. i have tried…
1
vote
0 answers

Cannot find file at '..\lib\fvm\bin\fvm.exe' error while installing FVM

During the installation of FVM flutter, I ran the command "dart pub global activate fvm", after which I tried to enter the command "fvm list", but an error appeared - "Cannot find file at '..\lib\fvm\bin\fvm.exe' (…
1
vote
2 answers

defining a multivariate gaussian initial condition in FiPy

I'm trying to use a multivariate gaussian initial condition for a Fipy integration. I'm currently using the following code: from fipy import CellVariable, Grid2D, Viewer from scipy.stats import multivariate_normal import numpy as np import…
alxg
  • 368
  • 1
  • 4
  • 15
1
vote
1 answer

How can I change the Dart SDK version with FVM in my Flutter project?

I was running an old project and using FVM to change the flutter sdk version. It changes flutter's SDK version but not the Dart SDK version which leads to some error. How can I set dart SDK version to any desired version.
Shanu
  • 311
  • 2
  • 16
1
vote
2 answers

Use fvm to change flutter version in vscode, but the flutter version not work?

I added fvm to my project and set it up like this. Now I can run all the commands for example fvm use x.x.x or fvm flutter pub get. Everything works. BUT when running the application through VSCode directly (Play button or shortcut) it always uses…
Chris
  • 1,828
  • 6
  • 40
  • 108
1
vote
2 answers

how to run "melos bootstrap" command with fvm

Currently on my computer installed Flutter version 3.3, but my project works on 2.5.3 So I'm using fvm for that, I've set up everything, but when I run melos bootstrap, I think it's just running command "flutter pub get" instead of "fvm flutter pub…
SardorbekR
  • 1,388
  • 3
  • 18
  • 33
1
vote
1 answer

Debug Flutter by pressing F5 as well as the command

We use Flutter with VSCode. We have been able to debug as expected with the following commands. fvm flutter run --debug --flavor production --target lib/main-production.dart But when we press F5 to run from VSCode, the following code throws a…
Ganessa
  • 782
  • 2
  • 7
  • 24
1
vote
1 answer

Configure flutter SDK by project in Android Studio

I am using FVM (Flutter version management) with multiple projects in Android Studio. I'd like for each android studio project to configure the flutter sdk to /.fvm/flutter_sdk so that each project uses the right version of the…
Reblochor
  • 11
  • 1
0
votes
0 answers

Xcode Error compiling not working with fvm default as sdk path

» fvm flutter run No devices found yet. Checking for wireless devices... Launching lib/main.dart on Ninja1(physical iOS test device) in debug mode... Automatically signing iOS for device deployment using specified development team in Xcode project:…
N1nja
  • 1
  • 2
0
votes
0 answers

FVM Error!!! HEAD is now at 84a1e904f4 [flutter_releases] Could not install 3.10.0

I have to modify a project that makes use of flutter version manager. I had to opt in for FVM. did the set up correctly. but i can't make use of it to run the application thne i am getting this error if i run with a version i download or while…
0
votes
1 answer

How to unset global sdk set by fvm?

Global sdk can be set by the command: fvm global 3.x.x But how do I revert this command? I was expecting somethig like: fvm global unset or fvm reset global In order to unset the global flag what I do not want to do: Set another version as global…
Alif
  • 1,005
  • 10
  • 9
1
2 3