user1719747
user1719747

Reputation: 323

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

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

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

Upvotes: 25

Views: 45465

Answers (1)

wangyif2
wangyif2

Reputation: 2863

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.

Upvotes: 39

Related Questions