I'm flutter developer, and some of my clients still using Windows 7.
According to the docs, flutter deployed apps supports Windows 7, But when I try to run my app on Windows 7, I faced this issue:
I try manual adding missing dll files, but still not works:
Any solution?
For anyone facing this issue or similar issue, this is caused by one of your packages.
Yes, flutter apps support windows 7 but some packages which imports native windows codes or dlls, doesn't support win 7
For me it was caused by local_auth package which support only for windows 10 and later:
You can fix this issue by these steps:
flutter build windows --release
\build\windows\runner\Release
folder of your project..dlls
, search every .dll
file name and see it's package documents and find that package which doesn't supports windows 7.pubspec.yaml
and build your app again.