I created a flutter Linux release application and I want to test that application on different Linux systems. How I can share my Linux Application with other users.
Asked
Active
Viewed 618 times
3
-
Hi, did you find the answer? – Yakhyo Mashrapov Nov 29 '21 at 18:55
-
@YakhyoMashrapov Not yet – wahab sohail Dec 01 '21 at 08:13
-
Recently I found that if you compress and share bundle folder inside release folder, you can open it on other machines – Yakhyo Mashrapov Dec 02 '21 at 08:22
-
@YakhyoMashrapov cool can you please share the link where did you find that solution. – wahab sohail Dec 02 '21 at 13:43
-
I found it experimentally) Just run "flutter build linux" Go to your project folder, then build/linux/x64/release/bundle Open file named as your project – Yakhyo Mashrapov Dec 02 '21 at 17:16
1 Answers
1
You can run at the root directory of your project the command flutter build linux --release
.
Then in the build/linux/x64/release/bundle
folder of you project you can find an executable file with your app's name. You can change directory to the location of this file and run it via ./your_file_name

HII
- 3,420
- 1
- 14
- 35