Android : Android APIs and CPU Architectures

on Saturday, September 6, 2014


I'm building my native components from the command line (and not from Android.mk). I'm trying to determine the intersection of CPU architectures with API levels. I know:



  • armeabi is ARMv5TE

  • armeabi-v7a is ARMv7-A


I'm trying to determine the minimum API level required for armeabi (ARMv5TE) and armeabi-v7a (ARMv7-A). I need the minimum API level to select the proper sysroot. For example, I can select:



  • /opt/android-ndk-r9/platforms/android-19/arch-arm


or



  • /opt/android-ndk-r9/platforms/android-9/arch-arm


What are the intersections of API levels with armeabi and armeabi-v7a?


0 comments:

Post a Comment