英文:
Flutter : the code execution cannot proceed because flutter_windows.dll was not found. Reinstalling the program may fix this problem
问题
"Hello I am trying to create desktop app from flutter and I genrate exe file and .dll file also. When I install in my PC its perfectly work but when I share to other and they trying to install then its fire error "flutter exe file error the code execution cannot proceed because flutter_windows.dll was not found. Reinstalling the program may fix this problem""
英文:
Hello I am trying to create desktop app from flutter and I genrate exe file and .dll file also. When I install in my PC its perfectly work but when I share to other and they trying to install then its fire error "flutter exe file error the code execution cannot proceed because flutter_windows.dll was not found. Reinstalling the program may fix this problem"
答案1
得分: 1
flutter_windows.dll
是必须与您的 EXE 文件一起放入文件夹中的 DLL 之一。在您的计算机上,它可能已经在 Windows 中注册,因此不需要:在其他计算机上,您必须将其包含在其中,以确保您的应用程序可以使用它。
详见此处:链接。
英文:
That flutter_windows.dll
is one of the DLLs that must be included in the folder along with your EXE file. On your computer is probably already registered in Windows, so it won't be required: on other computers, you have to include it to be sure it will be available to your app.
See here: link
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论