Home > Software design >  Build and export a Flutter app as real app from VS CODE
Build and export a Flutter app as real app from VS CODE

Time:01-03

How we can build and install a flutter app form VS code, lot of people i see they develop from vs code and build from android studio.

CodePudding user response:

To build your app from vs code, lot of people I see they develop from vs code and build from android studio, there is no need of it, you can build and your flutter app from vs code, just follow these steps

1 - (integrated terminal)

//run this command in your vs code integrated terminal

 # flutter build appbundle

enter image description here

after that run this command

flutter build apk --split-per-abi

enter image description here

it will build your apk file after that connect your phone or launch emulator that you want to install your app, after that type this command

flutter install

enter image description here

after that choose your device to install Woha! it's ready!!

  • Related