I have a native method in my Android Class as:
public native void decode(Bitmap pTarget, byte[] pSource);
When I try to create the header file using Eclipse Javah tool from Externla Configuration tools, I get a message that says:
Error: Cannot determine signature for Bitmap
This does not happen if I remove the native method declaration. How can I debug this issue to make sure javah can locate the signature for Bitmap?