1. Home
  2. Docs
  3. Flutter Store Manager
  4. Run App
  5. Run App

Run App

The app is based on the Flutter framework so if you are familiar with Flutter you can run it any way you like.

Run with Android Studio

  1. Open flutter_store_manager in Android Studio
  2. Locate the main Android Studio toolbar:
    Main IntelliJ toolbar
  3. In the target selector, select an Android device for running the app. If none are listed as available, select Tools > AVD Manager and create one there. For details, see Managing AVDs.
  4. Click the run icon in the toolbar, or invoke the menu item Run > Run.

Run with Command Line

1. NAVIGATE THE TERMINAL TO flutter_store_manager FOLDER

2. INSTALL DEPENDENCIES

flutter pub get

3. CHECK THAT AN ANDROID DEVICE IS RUNNING. IF NONE ARE SHOWN, FOLLOW THE DEVICE-SPECIFIC INSTRUCTIONS ON THE INSTALL PAGE FOR YOUR OS.

flutter devices

If no Android devices are connected you can check this open one emulator: https://developer.android.com/studio/run/emulator-commandline

4. RUN THE APP WITH THE FOLLOWING COMMAND:

flutter run -d ANDROID_DEVICE_ID

ANDROID_DEVICE_ID you can see the screenshot below:

After the app build completes, you’ll see the starter app on your device.

Warning Flutter 3

When you running the app and see the issue

Warning: Operand of null-aware operation '!' has type 'SchedulerBinding' which excludes null.

These are caused by a simplification of the API (the instance property on bindings is now non-nullable), combined with an eager compiler that wants to report any case where redundant null-aware operators (such as ! and ?.) that are used when they’re not necessary.

It shows up from dependencies used in the project, not from the source code. So you can ignore it when dependencies upgrade we will update the new version and release it later.

https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-3.0.0
Was this article helpful to you? Yes No

How can we help?