解决NDK开发中Eclipse报错“Unresolved inclusion jni.h”的最终方法

来源:互联网 发布:河北软件职业技术学校 编辑:程序博客网 时间:2024/06/04 18:55

在做NDK开发过程中有时候在eclipse里会遇到其无法处理inclusion导致symbol显示错误,网上有许多方法可以解决类似“Unresolved inclusion jni.h 错误的方法,包括include path等方法,不过对我都不管用。

最终的解决办法就是初始化eclipse对该project的native support:

1. 在eclipse中关闭指定Project

2. 用其他编辑工具打开该project的.project文件,删除以下内容:

......
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
......
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>

......

<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>


3. 删除.cproject文件

4. 在eclipse里打开原来的project, refresh,然后右键->properties->Android Tools -> Add Native Support

5. 搞定

原文链接:http://www.jeepshoe.org/446286204.htm

其它方式 2:

NDK导入Eclipse CDT出现jni.h找不到解决方法

网上给的方法:

于是就要给gcc添加一个环境变量让它来找到jni.h了,环境变量名称为C_INCLUDE_PATH

根本不管用,我是用echo查看也是正确,但是不行。需要如此解决:::

Project Properties 选择 C/C++ General 选择 Path and Symbols

缺省就是include标签

点击Add -> jni的路径
且选中All languages.
最后Apply -> OK
搞定


0 0