繁体   English   中英

Android Studio Flutter - 警告:另一个模拟器仍在运行 - windows 10

[英]Android Studio Flutter - WARNING: Another emulator is still running - windows 10

我在关闭模拟器后重新启动模拟器时遇到问题。 重新启动 android 工作室 - 没有帮助。 重新启动我的电脑有帮助。 我也无法通过任务管理器找到并[停止此过程]。 这样我就无法重启。 顺便说一句,错误显示为拼写错误。 帮助。 谁遇到过这样的问题,如何解决?

emulator: WARNING: Another emualtor is still running, wait for a sec... emulator: WARNING: 
Another emualtor is still running, wait for a sec... emulator: WARNING: Another emualtor is 
still running, wait for a sec... emulator: ERROR: Another emulator instance is running. 
Please close it or run all emulators with -read-only flag. emulator: Android emulator version
30.6.5.0 (build_id 7324830) (CL:N/A)

另一个仿真器仍在运行

[√] Flutter (Channel stable, 2.2.2, on Microsoft Windows [Version 10.0.19042.1052], locale ru-UA)
    • Flutter version 2.2.2 at C:\src\flutter
    • Framework revision d79295af24 (4 days ago), 2021-06-11 08:56:01 -0700
    • Engine revision 91c9fc8fe0
    • Dart version 2.13.3
[√] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at C:\Users\ArtRyzen\AppData\Local\Android\sdk
    • Platform android-30, build-tools 30.0.3
    • Java binary at: C:\Android\Android Studio\jre\bin\java
    • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174)
    • All Android licenses accepted.
[√] Chrome - develop for the web
    • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe
[√] Android Studio
    • Android Studio at C:\Android\Android Studio
    • Flutter plugin can be installed from:
       https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
       https://plugins.jetbrains.com/plugin/6351-dart
    • android-studio-dir = C:\Android\Android Studio
    • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6842174)
[√] Connected device (3 available)
    • sdk gphone x86 (mobile) • emulator-5554 • android-x86    • Android 11 (API 30) (emulator)
    • Chrome (web)            • chrome        • web-javascript • Google Chrome 91.0.4472.101
    • Edge (web)              • edge          • web-javascript • Microsoft Edge 91.0.864.48

通过重新安装模拟器解决了问题。

在 Windows 上,运行 Android 仿真器的软件称为“qemu-system-x86_64.exe”。

尝试杀死这个软件。

您可以使用 Windows 任务管理器 ( Ctrl + Shift + Esc ) 或命令提示符中的内置taskkill实用程序:

  1. 打开命令提示符(在 Windows 搜索中输入 CMD)
  2. 输入: taskkill /F /IM "qemu-system-x86_64.exe" /T

taskkill命令说明:

/F    Specifies that processes be forcefully ended. This parameter is ignored for remote processes; all remote processes are forcefully ended.

/T    Ends the specified process and any child processes started by it.

/IM   Specifies the image name of the process to be terminated.

对于 MacOS 和 Linux:

rm ~/.android/avd/Pixel_4_XL_API_33.avd/*.lock

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM