当前位置:   article > 正文

Android Studio启动虚拟机时一直提示安装Haxm_install haxm

install haxm

目录

问题描述

问题截图

原因猜测

解决方案 


问题描述

Android Studio启动虚拟机时一直出现Install Haxm,但是按照他的安装步骤后还是不停的弹出提示安装Haxm

问题截图

原因猜测

为什么会出现这种情况那?我猜测应该是权限问题,也就是说win11/win10应该是需要手动或者管理员模式才能去安装什么东西

解决方案 

1 打开File-》Setings-》点击

2 找到Android SDK 然后复制看到的路径,并打开资源管理器,将刚刚复制的路径,粘上

 

3 然后找到以下目录,看图,我的具体目录是:

 B:\Android Studio adk\extras\intel\Hardware_Accelerated_Execution_Manager 

4 找到haxm...exe点击安装即可 

5 安装完成后回到Android Studio发现已经没有了提示安装Haxm,然后我们点击启动(第一次要等个3分钟左右)发现虚拟机可以正常启动了!

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.MyApplication"
        tools:targetApi="31">
        <activity
            android:name=".MainActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:theme="@style/Theme.MyApplication.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
    </application>

</manifest>

 

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <application
  5. android:allowBackup="true"
  6. android:dataExtractionRules="@xml/data_extraction_rules"
  7. android:fullBackupContent="@xml/backup_rules"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/Theme.MyApplication"
  13. tools:targetApi="31">
  14. <activity
  15. android:name=".MainActivity"
  16. android:exported="true"
  17. android:label="@string/app_name"
  18. android:theme="@style/Theme.MyApplication.NoActionBar">
  19. <intent-filter>
  20. <action android:name="android.intent.action.MAIN" />
  21. <category android:name="android.intent.category.LAUNCHER" />
  22. </intent-filter>
  23. <meta-data
  24. android:name="android.app.lib_name"
  25. android:value="" />
  26. </activity>
  27. </application>
  28. </manifest>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/231031
推荐阅读
相关标签
  

闽ICP备14008679号