一、‘override‘ 错误
出现大量的error: ‘override‘ does not name a type错误,
这是由于NDK的版本太低了,override是C++11中才有的关键字,
而到NDKr10才支持C++11,所以要升级NDK. 到官网去下载
或者是
解决办法:终端输入ndk-build V=1, 查看输出信息,当前NDK用的是arm-linux-androideabi-4.6,
版本低了,查看了下我的NDK还支持4.8和4.9,于是在Application.mk中添加:
NDK_TOOLCHAIN_VERSION = 4.9 或者 4.8
二、java.lang.NullPointerException
方法1. 在"开始"-->"运行"---->打入"cmd"进入命令提示行后,再进入eclipse的安装目录,
然后输入eclipse -clean即可(我用的这个方法 成功了)
方法2. 删除configuration文件夹里除config.ini以外的所有文件,重启Eclipse
方法3.删除proj.android下面的 ".cproject"文件(可行)不能删除(该文件为CDT文件)
三、ndk 使用vector、string等stl库的方法
1、项目右键properties
2、C/C++ General
3、Paths and Symbols
4、Includes -》 Add
5、F:\android\android-ndk-r10\sources\cxx-stl\stlport\stlport
还有建立一个Application.mk,里面写上‘
APP_STL := stlport_shared
APP_STL := stlport_static (不要乱改,会重新编译cocos,好漫长)
eclipse代码中有错误项目中却不显示红叉 ***修改eclipse 代码提示级别 1.单个项目修改 项目上右键-->properties-->java compiler-->building-->enable project specific setting -->build path problems-->选中abort Incomplete build path/Circular dependencies 这两个选项修改为Warning 2.整个环境修改 window->preferences->java->compiler->building->build path problems-->选中abort Incomplete build path/Circular dependencies 这两个选项修改为Warning