Eclipse中编写jni c文件中报错Type could not be resolved

来源:互联网 发布:创维酷开电视直播软件 编辑:程序博客网 时间:2024/05/22 14:19

如下

Type 'JNICALL' could not be resolvedType 'jstring' could not be resolvedType 'jclass' could not be resolvedMethod 'NewStringUTF' could not be resolvedSymbol 'NULL' could not be resolved

出现的提示信息如下:

Multiple markers at this line  - Syntax error  - Type 'JNIEnv' could not be resolved  - Type 'JNICALL' could not be resolved

是由于没有将jni.h导入的缘故,而这个文件在ndk的目录下面。所以,参照以下步骤:
Project Properties -> C/C++ General -> Path and Symbols
选择include标签,Add -> $Android_NDK_HOME/platforms/android-14/arch-arm/usr/include
且选中All languages. 最后Apply -> OK 这样错误就解决了。

NdkDemo代码已上传至Github

如有不正支出,欢迎留言交流!
我的GitHub
我的CSDN
我的简书
开发笔记

阅读全文
0 0