3

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.

HII
  • 3,420
  • 1
  • 14
  • 35
wahab sohail
  • 161
  • 1
  • 12

1 Answers1

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