Waiting for another flutter command to release the startup lock - debugger output

I am making an app in flutter when I click on Run and Debug button in VS code the debugger output window showing message - Waiting for another flutter command to release the startup lock for a long time. How can I fix it any suggestion?

1 Answers

This could occur because the dart process has been hanged due to some issue and is not restarting. You can manually stop dart process or task by running commands in terminal. If you are using mcOS, you can try to run below command into terminal 

killall -9 dart

If you are using Windows OS, you can try below command in cmd window

taskkill /F /IM dart.exe

Now, you can start debugging process again after the above command executed successfully.

Ask question now
Never leave your website again in search of code snippets by installing our chrome extension.