I'm tring to build a simple application in dart/flutter for windows. After flutter build windows --release it creates a .exe with all .dll files that application uses. Obviously when I copy and past the .exe in another folder the .exe does't work.
There are a way to embed .dll into the .exe?
-
Flutter itself does not provide something like that, you have to look for a third-party tool or such. Flutter doesn't even include in the release folder additional DLLs that might be needed by some packages.il_boga– il_boga2023-03-16 15:48:09 +00:00Commented Mar 16, 2023 at 15:48
-
Even if it is technically possible, it might not be legal (i.e., it might violate licensing terms).jamesdlin– jamesdlin2023-03-16 18:22:36 +00:00Commented Mar 16, 2023 at 18:22
-
1You can use Inno Setup app to create windows installer. Follow this tutorial protocoderspoint.com/…Miftakhul Arzak– Miftakhul Arzak2023-03-17 10:17:39 +00:00Commented Mar 17, 2023 at 10:17
Add a comment
|