当我尝试在android studio上构建我的游戏时出现以下错误:
Error:(81) Android NDK: Application targets deprecated ABI(s): armeabi
Error:(82) Android NDK: Support for these ABIs will be removed in a future NDK release.
从命令行运行正常:
cocos run . -p android --android-studio
答案 0 :(得分:0)
转到Android.mk,将APP_ABI
从armeabi
更改为armeabi-v7a
。
如果您正在使用CMakeLists来构建项目,则如果要添加更多架构,请转到gradle.properties
,并按照PROP_APP_ABI=armeabi-v7a
文件中的说明更改为gradle.properties
。