Android NDK: APP_PLATFORM not set. Defaulting to minimum supported version android-14.

1.错误描述

Android NDK: APP_PLATFORM not set. Defaulting to minimum supported version android-14.
D:/ProgramFiles/Android/ndk15/build//../build/core/build-binary.mk:688: Android NDK: Module yuv depends on undefined modules: jpeg
D:/ProgramFiles/Android/ndk15/build//../build/core/build-binary.mk:701: *** Android NDK: Aborting (set APP_ALLOW_MISSING_DEPS=true to allow missing dependencies)    .  Stop.

2.错误原因

Application.mk设置的ndk版本与使用的ndk版本不一致;

3.解决方案

在Application.mk中添加或修改:

APP_PLATFORM := android-15
APP_ALLOW_MISSING_DEPS=true

 

你可能感兴趣的:(NDK开发错误,NDK)