Reputation: 181
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
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