描述:
Android NDK: jni/Android.mk: Cannot find module with tag '******' in import path
Android NDK: Are you sure your NDK_MODULE_PATH variable is properly defined ?
Android NDK: The following directories were searched:
Android NDK:
jni/Android.mk:21: *** Android NDK: Aborting. 。 停止。
NDK_MODULE_PATH设置有问题。
解决方法:
1、在Application.mk文件中加入 NDK_MODULE_PATH:=路径 。
2、在 $(call import-module,CocosDenshion/android) \ $(call import-module,cocos2dx) \ $(call import-module,extensions) 的前面加上: $(call import-add-path,/home/yc/cocos2d-2.1beta3-x-2.1.0/) $(call import-add-path,/home/yc/cocos2d-2.1beta3-x-2.1.0/cocos2dx/platform/third_party/android/prebuilt) 保存退出,重新编译,问题解决
原文链接:/javaschema/285975.html