Error launching application on Android SDK built for x86

后端 未结 5 2040
不知归路
不知归路 2021-02-12 19:22

There are a least a dozen previously compiled and running flutter applets that suddenly will not compile under Android Studio or Intellij.

Even if i build a new default

相关标签:
5条回答
  • 2021-02-12 19:46
    1. Open AVD Manager
    2. Wipe Data (delete datas from emulator)
    3. Open emulator
    4. Try to run app
    0 讨论(0)
  • I had a similar error when trying to run my flutter application. What I did was:

    1. Open AVD Manager
    2. Press on the small arrow (next to the pen) corresponding to your preferred device
    3. Select "Cold boot now"
    4. Wait for the emulator to open and boot
    5. Run your application

    I hope that helps you!

    0 讨论(0)
  • 2021-02-12 19:51

    Changing the emulator to cold boot rather than quick boot also seemed to resolve the problem. Rather than a complete wipe.

    It's in advanced settings > emulated performance > boot option when editing a device in AVD.

    0 讨论(0)
  • 2021-02-12 19:52

    no need to change system variables or adb. it's not adb or emulator error. change your device or emulator and check again!!!

    0 讨论(0)
  • 2021-02-12 19:57

    Try to install using adb through command line:

    <C:\Android\sdk\platform-tools\>adb -s yourdeviceID install -r build/app/outputs/apk/app.apk
    

    you can follow this for more explanation: https://github.com/flutter/flutter/issues/8605

    Thanks

    0 讨论(0)
提交回复
热议问题