Yep, just fixed this one in my code...
My problem was that I was using env->FindClass("com.blah.MyClass"), and it couldn't find the class. There
are two fixes for this problem:
1) Put env->ExceptionClear() after failed env->xxx() calls (I put the ExceptionClear() before I even check to
see if it failed).
2) Use '/' instead of '.' when using FindClass: for example, env->FindClass("com/blah/MyClass");
I hope this helps!
Bryan