wahab sohail
wahab sohail

Reputation: 181

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

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.

Upvotes: 3

Views: 984

Answers (1)

HII
HII

Reputation: 4129

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

Upvotes: 1

Related Questions