D:\ndk\android-ndk-r16b\build\core\setup-app.mk
Error:(81) Android NDK: Application targets deprecated ABI(s): mips64 armeabi mips
Error:(81) Android NDK: Application targets deprecated ABI(s): mips64 armeabi mips
Error:(82) Android NDK: Support for these ABIs will be removed in a future NDK release.
我的解决办法是在app module下的build.gradle文件中添加
ndk{
abiFilters "armeabi-v7a"
}
截图
ndk{ moduleName "hello1" abiFilters "armeabi-v7a" }