Home > Mobile >  Failed to start monitoring 09768fb90408
Failed to start monitoring 09768fb90408

Time:08-31

I have two flutter project in android studio. in one of the project when I trying to generate the release build it is giving

Failed to start monitoring 09768fb90408

But in another project it is getting generated with out any issues

CodePudding user response:

I was also facing same issues. Instead of generating build from Android studio Generate through terminal Open terminal and fire these two command

flutter clean

And than

flutter build apk ---release
  • Related