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

如下

Type 'JNICALL' could not be resolved
Type 'jstring' could not be resolved
Type 'jclass' could not be resolved
Method 'NewStringUTF' could not be resolved
Symbol '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
我的简书
开发笔记

    原文作者:陈守印
    原文地址: https://www.jianshu.com/p/45fdcf1d009c
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞