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

44,316

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.

Share:
44,316

Related videos on Youtube

user1719747
Author by

user1719747

Updated on March 06, 2021

Comments

  • user1719747
    user1719747 over 3 years

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

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