I\'m trying to configure Android.mk to cross compile native code to support different chipset namely armeabi, mips, and x86. I know I can configure Application.mk in the fol
Check TARGET_ARCH_ABI:
TARGET_ARCH_ABI
ifeq($(TARGET_ARCH_ABI), armeabi-v7a) # v7a-specific stuff endif