Reputation: 1
I am having a problem when trying to run my flutter app on an IOS emulator. I get this error "Unable to find DartDev snapshot". See the image below.Please help XD
My "flutter doctor" is all green when I run it.
Upvotes: 0
Views: 768
Reputation: 1
I removed my Avast antivirus and it 100% solved the issue. It was blocking the directory from accessing the files.
Upvotes: 0
Reputation: 11
Try the following solution -
cd [path, where your flutter unzip, is located]/flutter/bin
rm -rf cache/
navigate back to project
flutter clean
flutter run
Upvotes: 1