0

I am developing an Android application which uses JNI and native source code for the implementation. In my C source file I have a variable of the type of wchar_t*.

The Eclipse compiler says that the type could not be resolved. I can't find a solution for this error.

krsteeve
  • 1,794
  • 4
  • 19
  • 29
ssrp
  • 1,126
  • 5
  • 17
  • 35

1 Answers1

1

It's an eclipse indexing bug, detailed here.

That page describes some workarounds that you can try...

Its worth noting that this is just an error in the indexing. Your code is likely compiling just fine.

krsteeve
  • 1,794
  • 4
  • 19
  • 29