What does ABIs: armeabi-v7a in the android version detail mean? please provide the internal details of how this is used?

user1719747 picture user1719747 · Apr 21, 2013 · Viewed 43.2k times · Source

When running android list targets, I got ABIs: armeabi-v7a

what does this mean? please provide the internal details of how this is used?

Answer

wangyif2 picture wangyif2 · Apr 21, 2013

ARM is a type of instruction set for CPUs usually used on mobile devices.

armeabi stands for ARM embedded application binary interface, it means the image that the android is running is built with EABI support. armeabi-v7a code is extended armeabi code which can contain extra CPU instructions, and have support for hardware floating point operations.

You'll find a more detailed answer at: Why use armeabi-v7a code over armeabi code? link.