What is the use of the ARM EABI v7a system image in Android?

Why do we need an ARM EABI v7a system image in Android development? What is the purpose of this particular image?

+64
android arm eabi
Nov 03 2018-11-11T00:
source share
6 answers

if you are working with NativeDK, without this image, the emulator cannot simulate ARMv7 code execution (for example, multi-core commands and the NEON floating-point block)

+33
Nov 14 2018-11-11T00:
source share

This is an image of the core. You must install it, otherwise the image will not start without receiving

ERROR: kernel file missing from this AVD configuration

+10
Feb 05 2018-12-12T00:
source share

This is an emulator image that supports ARMv7-A hardware, which is true for all new Android phones.

Since ARMv7-a is backward compatible with ARMv5, this is the only supported image with later system images.

+2
Mar 16 '14 at 6:44
source share

The only line I know

I believe that you need to use the Android SDK Manager, the ARM EABI v7a System image, to add support for the ARM EABI processor to the local SDK.

+1
Nov 03 2018-11-11T00:
source share

This package is responsible for faster floating point operations.

+1
Nov 19 '11 at 17:14
source share

The system image is used by the emulator for virtualization of the Android OS, so applications can be tested / debugged on a PC without having to download the application to the phone every time the code is changed. This speeds up the development process and allows you to test phones that are physically inaccessible.

+1
Aug 29 '15 at 16:01
source share



All Articles