Shruti Ramnandan Sharma
Shruti Ramnandan Sharma

Reputation: 4565

How to get .exe file from my flutter desktop application?

I have built a desktop application with flutter. Now wanna share its .exe to another person. I have browsed for it and got some answers but according to this, I couldn't found.exe file.

First I run

flutter build windows

to release .exe file.

I went through the path but it created some strange file

build\windows\x64\Debug\

and found these 3 folder: enter image description here

Upvotes: 1

Views: 4491

Answers (2)

Yogesh Kumawat
Yogesh Kumawat

Reputation: 61

Create a setup of your release .exe using "inno setup", then you can easily share to anyone.

Upvotes: 0

Akadeax
Akadeax

Reputation: 132

The actual .exe is under build\windows\runner\Release. Good luck!

Upvotes: 4

Related Questions