Home > Net >  Can't find emulator in VS Code. How can fix
Can't find emulator in VS Code. How can fix

Time:09-25

flutter emulators

"Unable to find any emulator sources. Please ensure you have some Android AVD images available." I am using win10, but when I want to connect to emulator with flutter I get this error. How do I introduce my device in genymotion to Visual Studio Code ?

CodePudding user response:

Launch your emulator, then run in terminal

flutter devices

Then in your file launch.json inside .vscode folder in your project, you can create something like the code above and name the emulators and put the deviceId that you see when you write ´flutter devices`

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "budgets",
            "request": "launch",
            "type": "dart"
        },
        {
            "name": "iPhone 12 Pro Max",
            "request": "launch",
            "type": "dart",
            "deviceId": "007153FC-9053-4A68-851A-20D1B6013518"
        },
        {
            "name": "iPhone 11",
            "request": "launch",
            "type": "dart",
            "deviceId": "73EE2120-4DB0-42FD-AA3A-DD4D417FE40A"
        },
        {
            "name": "Android",
            "request": "launch",
            "type": "dart",
            "deviceId": "emulator-5554"
        }
    ]
}

CodePudding user response:

I solved the problem by uninstalling vs code, genymotion and virtualbox and reinstalling them.

  • Related