The platform you're using doesn't support that targets, you must change your APP_PLATFORM (minimum is android-21 for 64bit support) or remove the unsupported ABI. For example:
APP_ABI := armeabi armeabi-v7a mips x86
APP_PLATFORM := android-14
or
APP_ABI := armeabi armeabi-v7a mips x86 arm64-v8a x86_64 mips64
APP_PLATFORM := android-21
本文探讨了在使用NDK Build进行X86_64目标平台编译时遇到的问题及解决方法,包括修改APP_ABI和APP_PLATFORM配置以确保编译成功。
429

被折叠的 条评论
为什么被折叠?



