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
after that run this command
flutter build apk --split-per-abi
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
after that choose your device to install Woha! it's ready!!