Skip to main content

Android Native CPU ABI


Every piece of native code generated with the Android NDK matches a given ABI(Application Binary Interface). ABI defines exactly how machine code is expected to interact with the system at runtime.
ABI describes following things at runtime:
  • the CPU instruction set that the machine code should use
  • the endianness of memory stores and loads at runtime
  • the format of executable binaries (shared libraries, programs, etc...) and what type of content is allowed/supported in them.
  • various conventions used to pass data between your code and the system (e.g. how registers and/or the stack are used when functions are called, alignment constraints, etc...)
  • alignment and size constraints for enum types, structure fields and arrays.
  • the list of function symbols available to your machine code at runtime, generally from a very specific selected set of libraries.
Android Supported ABIs:

1.armeabi: This ABI is for ARM-based CPUs that support at least the ARMv5TE instruction set.It is the ARM Architecture.
2.armeabi-v7a: Thi is an extension of armeabi for ARM-based CPUs which has included a few cpu instruction.
3.X86: This is the name of an ABI for CPUs supporting the instruction set which targets Pentium Pro instruction set.Generated code is optimized for Atom CPU
4.mips: This is the name of an ABI for MIPS-based CPUs that support at least the MIPS32r1 instruction set. It includes MIPS32 revision 1 ISA, Little-Endian, O32, Hard-Float, no DSP application specific extensions.

By default, The Android NDK generats machine code for 'armeabi' ABI.However we can define APP_ABI in Application.mk file to generate ABI for compatible machine code. For more this.

When we install apk, the package manager service will scan the .apk and look for any shared library form:

lib/<primary-abi>/lib<name>.so

If anyone is found, then it's copy under $APPDIR/lib/lib<name>.so, where $APPDIR corresponds to the application's specific data directory.
If none is found, and a secondary ABI is defined, the service will then scan for shared libraries of the form: 
lib/<secondary-abi>/lib<name>.so
If anything is found, then it's copy under $APPDIR/lib/lib<name>.so

This automatically extract the best machine code for the target device from the package at installation time.

Comments

Popular posts from this blog

Android O New Features Overview

This post assumes, you are an experienced developer who wants to get started with the latest version of Android. Android O is not a huge update to the OS and application framework like M but it still has many useful features for both developer and an user. Android O has focus on below areas. Notification redesigned Picture-in-Picture(PIP)  Visual adaption for different devices  Battery life improved Setting app reorganized Notification redesigned: Android O notification changes includes more easy and manageable way to manager your notification behavior and settings. It includes: Notification Channel: Notification channel allows you to create user customizable channel for each type of notification you wanna display. A single application can have multiple channel, a separate channel for each type of notification you wanna display. Having said this, you can create s separate channel for audio & image notification. User can disable specific notification channe...

Display News and Videos through RSS and Display it in Listview

Hi friends , In this tutorial ,i'm going to describe about how to fetch data from rss feed.Here i had also problem ,when i was developing my recent project.I had also faced  many problem and at last i developed my best project. Here is the code that describe how to fetch news headline from rss This class describes how to parse XML data: import java.net.URL; import java.util.ArrayList; import org.xmlpull.v1.XmlPullParser; import android.content.res.XmlResourceParser; import android.util.Log; import android.util.Xml; public class XmlFeedParser {         //Feed Parsing Method     public ArrayList<Implement> parse(String url) {                 //Array of Episode Objects         ArrayList<Implement> episodes = null;          ...

Display video from specific folder with rounded shape thumbnail

Hi friends ,This is complete post, about how to display video form specific folder and display it with rounded shape and play it on click event. For Rounded shape I have used custom ImageView. Now have a look on code part. main.xml <?xml version="1.0" encoding="utf-8"?> <GridView xmlns:android="http://schemas.android.com/apk/res/android"     android:id="@+id/gridView1"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:columnWidth="100dp"     android:gravity="center"     android:numColumns="auto_fit"     android:stretchMode="columnWidth" > </GridView> gridlayout.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="wrap_content"     android:layo...