How to include jar files of the Android platform when using the javah tool to create a C/C++ .h header file ???
Assuming:
Open command line window. Go to C:\android\ndk\samples\hello-jni folder. And execute the following:
javah -classpath C:\android\sdk\platforms\android-3;src com.example.hellojni.HelloJni
It will generate com_example_hellojni_HelloJni.h
file with JNI functions for hello-jni example from Android NDK.