Waiting for another flutter command to release the startup lock

When I run my flutter application it show

Waiting for another flutter command to release the startup lock

this messages and not proceed further.

34 Answers
34

In my case, following command in Terminal helped (as suggested by Günter):

killall -9 dart

On Windows (as suggested by upupming):

taskkill /F /IM dart.exe

Leave a Comment