AVD经理:AVD的模拟器进程已终止,Android Studio 4.MacOS High Sierra 1013.6

pgky5nke  于 2023-05-01  发布在  Android
关注(0)|答案(9)|浏览(252)

我在对象中收到错误。我试图做所有的检查(所有升级和正确安装),但我仍然有错误:
AVD经理:
AVD的模拟器进程已终止。

以下是模拟器的详细信息:

Name: Pixel_3a_API_30
CPU/ABI: Google Play Intel Atom (x86)
Path: /Users/simone/.android/avd/Pixel_3a_API_30.avd
Target: google_apis_playstore [Google Play] (API level 30)
Skin: pixel_3a
SD Card: 512M
fastboot.chosenSnapshotFile: 
runtime.network.speed: full
hw.accelerometer: yes
hw.device.name: pixel_3a
hw.lcd.width: 1080
hw.initialOrientation: Portrait
image.androidVersion.api: 30
tag.id: google_apis_playstore
hw.mainKeys: no
hw.camera.front: emulated
avd.ini.displayname: Pixel 3a API 30
hw.gpu.mode: software
hw.ramSize: 1536
PlayStore.enabled: true
fastboot.forceColdBoot: no
hw.cpu.ncore: 4
hw.keyboard: yes
hw.sensors.proximity: yes
hw.dPad: no
hw.lcd.height: 2220
vm.heapSize: 256
skin.dynamic: yes
hw.device.manufacturer: Google
hw.gps: yes
hw.audioInput: yes
image.sysdir.1: system-images/android-30/google_apis_playstore/x86/
showDeviceFrame: yes
hw.camera.back: virtualscene
AvdId: Pixel_3a_API_30
hw.lcd.density: 440
hw.arc: false
hw.device.hash2: MD5:0e6953ebf01bdc6b33a2f54746629c50
fastboot.forceChosenSnapshotBoot: no
fastboot.forceFastBoot: yes
hw.trackBall: no
hw.battery: yes
hw.sdCard: yes
tag.display: Google Play
runtime.network.latency: none
disk.dataPartition.size: 2G
hw.sensors.orientation: yes
avd.ini.encoding: UTF-8
hw.gpu.enabled: yes
sulc1iza

sulc1iza1#

在M1 Mac上模拟时,您需要从“其他图像”选项卡中选择系统图像。请确保您拍摄的是 arm64 图像。
谷歌也有一个关于M1仿真的preview-repo

frebpwbc

frebpwbc2#

修复:按照这里的指南Codesign QEMU .使用/Users/<username>/Library/Android/sdk/emulator/qemu/darwin-x86_64/qemu-system-x86_64作为qemu的目录(可能不同)。
我遇到的问题是qemu-system-x86_64。在终端中运行模拟器将显示此错误:cannot add library /Users/<username>/Library/Android/sdk/emulator/qemu/darwin-x86_64/lib64/vulkan/libvulkan.dylib: failed
为了解决这个问题,我找到了这些帖子:RedditCodesign QEMU

bfhwhh0e

bfhwhh0e3#

更新- 28/4/2021

1.创建权利。xml文件,内容如下:

<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>com.apple.security.hypervisor</key>
        <true/>
    </dict>
    </plist>

1.并根据需要在SDK所在的qemu路径上运行。

codesign -s - --entitlements entitlements.xml --force ~/Library/Android/sdk/emulator/qemu/darwin-x86_64/qemu-system-x86_64

基于https://www.arthurkoziel.com/qemu-on-macos-big-sur/的答案
相关问题:
https://issuetracker.google.com/issues/181142249https://issuetracker.google.com/issues/186436367

更新到Android Emulator 3。5.6现在就可以解决了

Original solution >>> Thanks to laalto

g6baxovj

g6baxovj4#

更改“hw.gpu.模式:自动“到”硬件。gpu.mode = software”。

qaxu7uf2

qaxu7uf25#

我以前遇到过这个问题,只要按照下面的步骤;
1.转到SDK管理器-〉SDK工具

  • 更新以下2个选项:
  • Android模拟器
  • 英特尔x86仿真器加速器(HAXM安装程序)

rggaifut

rggaifut6#

Android Emulator的早期版本似乎无法与HAXM 7一起使用。6.5.如果您安装了新版本的Android Emulator(30.5.6),它将正常工作。如果仍然不工作,您应该尝试冷 Boot 。对我很有效

oalqel3c

oalqel3c7#

我在Windows 10上遇到了这个问题,问题出在一个名为Winspool的文件系统上。drv尝试修复此文件这是什么解决了我的问题在windows中打开cmd并以管理员身份运行它并键入此命令sfc /scannow它将进行扫描并将在扫描完成后修复损坏的文件重新启动计算机并尝试再次运行模拟器

q8l4jmvw

q8l4jmvw8#

你可以使用Android Emulator Apple Silicon Preview.我尝试了所有其他选项,没有什么适合我。
但目前这有一定的局限性。将来可能会工作得更好。
目前已知的问题也在这里解释。https://androidstudio.googleblog.com/2020/12/android-emulator-apple-silicon-preview.html
这里有一篇关于这个旅程和完整设置的好文章,以及不同解决方案面临的问题:https://medium.com/mobile-app-development-publication/my-journey-to-setup-android-emulator-for-m1-macbook-pro-b8365321b3e7

6kkfgxo0

6kkfgxo09#

这有一个非常简单的解决方案,只有当安装过程完成,模拟器仍然没有启动,解决方案:只要尝试使用较旧的API版本或任何较旧的稳定的Android API版本。在我的情况下,我拥有的最新版本是API-31,但API-28对我有效。将您的Android API更改为任何旧版本尝试一下。这对我很有效。

相关问题