skip to Main Content

I created simple Flutter app, installed Nexus virtual device, but when I tried to start an app, I get the error shown below.

Android emulator version 31.3.9.0 (build_id 8700579) (CL:N/A) emulator: INFO: Found systemPath E:AndroidStudioSettingssystem-imagesandroid-30google_apis_playstorex86 emulator: INFO: Found systemPath E:AndroidStudioSettingssystem-imagesandroid-30google_apis_playstorex86 WARNING | unexpected system image feature string, emulator might not function correctly, please try updating the emulator. ERROR | Running multiple emulators with the same AVD ERROR | is an experimental feature. ERROR |
Please use -read-only flag to enable this feature. INFO | Duplicate loglines will be removed, if you wish to see each indiviudal line launch with the -log-nofilter flag.

I have the latest Android studio, Android virtual device, Flutter and Dart plugins.

2

Answers


  1. Just go to terminal and run the command:

    flutter config --android-sdk pathToYourSDK
    

    If you are not sure where is your Android SDK located, do the following:
    Go to Tools --> SDK Manager and you will see Android SDK location.

    Login or Signup to reply.
  2. Simply download another virtual device, select the new device and try to run on that device.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search