简体   繁体   中英

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? Thanks.

Unofficial? Beta? Alpha? Any?

The ARM images for API 26 and 27 are not available yet. ARM images available till API 25 only.

Note: Google recommended an x86 system image on an x86 host for better emulation performance.

Just suggestion,

please check [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

A successful install:

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

If your APK does not have the 64-bit libraries:

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]

If your device does not support 64-bit, an emulator, for example:

adb install --abi arm64-v8a YOUR_APK_FILE.apk ABI arm64-v8a not supported on this device

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

Recent updates enabled computers with AMD processors to run Android Emulator and you don't need to install ARM images anymore. Taken from the Android Developers blog:

If you have an AMD processor in your computer you need the following setup requirements to be in place:

AMD Processor - Recommended: AMD® Ryzen™ processors

Android Studio 3.2 Beta or higher

Android Emulator v27.3.8+

x86 Android Virtual Device (AVD)

Windows 10 with April 2018 Update

Enable via Windows Features: "Windows Hypervisor Platform"

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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