Kurt Schoerie
Kurt Schoerie

Reputation: 1

Unable to find DartDev snapshot

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

enter image description here

My "flutter doctor" is all green when I run it.

enter image description here

Upvotes: 0

Views: 768

Answers (2)

Kurt Schoerie
Kurt Schoerie

Reputation: 1

I removed my Avast antivirus and it 100% solved the issue. It was blocking the directory from accessing the files.

Upvotes: 0

Kartikey Gautam
Kartikey Gautam

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

Related Questions