问题
编译一个内部录音工程的时候,发现提示以下问题:
ABIs [armeabi] are not supported for platform. Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64].
问题原因
当前(20200702)NDK基本为20甚至21版本,而根据Android官网AndroidABIs页面提示,从v17开始就不再支持armeabi
、mips
等架构
Note: Historically the NDK supported ARMv5 (armeabi), and 32-bit and 64-bit MIPS, but support for these ABIs was removed in NDK r17.
解决
删除armeabi
在各个build.gradle
文件中的android
-> defaultConfig
-> ndk
节点设置abiFilters中删除掉"armeabi"
改用旧版本NDK
参考以下文章,文章中提供了下载链接:
ERROR:ABIs [armeabi] are not supported for platform.Supported ABIs are [arm64-v8a, armeabi-v7的完美解决方案
https://blog.csdn.net/weixin_37639900/article/details/99866131