How to share flutter Linux desktop release application without uploading to Snap Store

868 views Asked by At

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.

1

There are 1 answers

0
HII On

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