简体   繁体   English

找不到 Android 8.0-8.1 (Oreo) API 26-27 ARM 系统映像

[英]Can't find Android 8.0-8.1 (Oreo) API 26-27 ARM System Images

Are there anywhere Android 8.0 (Oreo) API 26 and Android 8.1 (Oreo) API 27 ARM System images (ARM, not x86 Intel) for AVD Manager?是否有适用于 AVD 管理器的 Android 8.0 (Oreo) API 26 和 Android 8.1 (Oreo) API 27 ARM 系统映像(ARM,而不是 x86 Intel)? Thanks.谢谢。

Unofficial?非官方? Beta?测试版? Alpha? Α? Any?任何?

The ARM images for API 26 and 27 are not available yet. API 26 和 27 的 ARM 映像尚不可用。 ARM images available till API 25 only. ARM 映像仅在 API 25 之前可用。

Note: Google recommended an x86 system image on an x86 host for better emulation performance.注意: Google 建议在 x86 主机上使用 x86 系统映像以获得更好的仿真性能。

Just suggestion,只是建议,

please check [https://developer.android.com/games/optimize/64-bit#test-64-bit-hardware][1]请检查 [https://developer.android.com/games/optimize/64-bit#test-64-bit-hardware][1]

They have given how to install new abi along with apk to your device- :: Command Line他们已经给出了如何将新的 abi 和 apk 安装到您的设备上 - :: 命令行

A successful install:安装成功:

adb install --abi armeabi-v7a YOUR_APK_FILE.apk Success adb install --abi armeabi-v7a YOUR_APK_FILE.apk 成功

If your APK does not have the 64-bit libraries:如果您的 APK 没有 64 位库:

adb install --abi arm64-v8a YOUR_APK_FILE.apk adb: failed to install YOUR_APK_FILE.apk: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113] adb install --abi arm64-v8a YOUR_APK_FILE.apk adb:安装YOUR_APK_FILE.apk失败:失败[INSTALL_FAILED_NO_MATCHING_ABIS:无法提取本机库,res=-113]

If your device does not support 64-bit, an emulator, for example:如果您的设备不支持 64 位,一个模拟器,例如:

adb install --abi arm64-v8a YOUR_APK_FILE.apk ABI arm64-v8a not supported on this device adb install --abi arm64-v8a YOUR_APK_FILE.apk 此设备不支持 ABI arm64-v8a

您应该自己为特定平台构建 Android 源代码

Recent updates enabled computers with AMD processors to run Android Emulator and you don't need to install ARM images anymore.最近的更新使配备 AMD 处理器的计算机能够运行 Android Emulator,您不再需要安装 ARM 映像。 Taken from the Android Developers blog:摘自 Android 开发者博客:

If you have an AMD processor in your computer you need the following setup requirements to be in place:如果您的计算机中有 AMD 处理器,则需要满足以下设置要求:

AMD Processor - Recommended: AMD® Ryzen™ processors AMD 处理器 - 推荐:AMD® Ryzen™ 处理器

Android Studio 3.2 Beta or higher Android Studio 3.2 Beta 或更高版本

Android Emulator v27.3.8+安卓模拟器 v27.3.8+

x86 Android Virtual Device (AVD) x86 Android 虚拟设备 (AVD)

Windows 10 with April 2018 Update带有 2018 年 4 月更新的 Windows 10

Enable via Windows Features: "Windows Hypervisor Platform"通过 Windows 功能启用:“Windows 管理程序平台”

And that's it!就是这样! I strongly recommend reading the whole blog post:我强烈建议阅读整篇博文:

https://android-developers.googleblog.com/2018/07/android-emulator-amd-processor-hyper-v.html https://android-developers.googleblog.com/2018/07/android-emulator-amd-processor-hyper-v.html

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

相关问题 onTaskRemoved()在Android 8.0 Oreo API级别26上不起作用 - onTaskRemoved() doesn't work on Android 8.0 Oreo API level 26 如何在Android 8.0 Oreo API 26及更高版本上检测到应用终止 - How can I detect app kill on Android 8.0 Oreo API 26 and after 从API 26:Android 8.0 Oreo开始,不推荐使用Build.SERIAL - Build.SERIAL is deprecated as of API 26: Android 8.0 Oreo 如何在 Android 8.0 中正确更新小部件 - Oreo - API 26 - How To Properly Update A Widget In Android 8.0 - Oreo - API 26 模拟器的android 8.0 api 26 arm64-v8a系统映像 - android 8.0 api 26 arm64-v8a system image for emulator 找不到Android 7.1.1(牛轧糖)API 25 ARM系统映像 - Can't find Android 7.1.1 (Nougat) API 25 ARM System Images 无法在 Xamarin Android 8.1 API 27 上获取位置 - Can't get location on Xamarin Android 8.1 API 27 在Android 8.0(API 26,Oreo)上Twilio聊天客户端关闭期间崩溃 - Crash during Twilio chat client shutdown on Android 8.0 (API 26, Oreo) API 26(Android 8.0 Oreo)不推荐使用IntentService + WakefulBroadcastReceiver + AlarmManager。 哪个是最好的选择? - IntentService + WakefulBroadcastReceiver + AlarmManager are deprecated with API 26 (Android 8.0 Oreo). Which is the best alternative? 在Xamarin.Forms中使用Android支持库API Level 26(MonoAndroid 8.0 Oreo)? - Using android support libraries API Level 26 (MonoAndroid 8.0 Oreo) in Xamarin.Forms?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM