0

I need to know the name of all destination files and folders that current version of stable flutter will create after building project on Linux(for example Ubuntu) by this command:

flutter build linux

I just need to know the name of files that are necessary to run the application on another Linux system.

ArdeshirV
  • 76
  • 6

1 Answers1

1

The build files are inside: /build/linux/x64/release/bundle

Mayank
  • 1,595
  • 1
  • 11
  • 26
  • Thank you and I know it! but I need to know the name of files not directory, specially dynamic linking library files. – ArdeshirV Dec 13 '21 at 20:44