我在 android ndk 项目上收到以下错误:“无法解析类型'size_t'”,但我已经添加了库路径:
/Users/ademar/android-ndk-r8e/platforms/android-8/arch-arm/usr/include
/Users/ademar/android-ndk-r8e/sources/cxx-stl/stlport/stlport
/Users/ademar/android-ndk-r8e/sources/cxx-stl/gnu-libstdc++/4.7/include
所以我不明白为什么会出现这个错误。
我得到错误的代码:
static inline bool simplejson_wcsnlen(const wchar_t *s, size_t n)
我添加了此处描述的每个标题,但仍然无法正常工作。
我尝试了以下方法:
#include <string.h>
#include <jni.h>
#include <android/log.h>
#include <iostream>
#include <stdio.h>
extern "C" {
JNIEXPORT jstring JNICALL Java_xxx_getStringFromJNI(JNIEnv* env, jobject thiz, jstring param) {
size_t x;
return env->NewStringUTF("test");
}
}
它也不起作用......