NDK 编译报错:request for member 'FindClass' in something not a structure or union
ndk编译 xx.c文件时一直报下面的错误: ”request for member 'FindClass' in something not a structure or union ...” 原因是源码是 .c 文件 而c文件中 使用env 需要 使用“(*env)->” 而我在别的地方拷贝的代码里使用的是 c++ 形式的 用法:“env->”解决方法 把.c ...