I\'m trying to run NDK to compile native code to run on Atom(x86) processor as well as ARM. No matter how I set APP_ABI, NDK is generating armeabi library. Even if I put o
If you don't have an Application.mk file, create one inside jni folder under project root.
Application.mk
jni
project root
project_root/jni/Application.mk
Add target compile platform to it:
APP_ABI := x86
Or platforms:
APP_ABI := armeabi armeabi-v7a x86 mips