I have no error when I am trying to call any method of the "Ursa_Routing_Output" object from the JNI code. But I am getting this error when calling the constructor.
Problem with the Empty constructor
Exception in
thread "Thread-23" java.lang.NoSuchMethodError: <init>
at com.comail.jni.UVSdk.getRPO(Native Method)
The corresponding methods in the
Java class are :
The corresponding class signatures generated through javap are :
public com.comail.pojo.Ursa_Routing_Output();
Signature: ()V
public java.lang.String getAreaCommitment();
Signature: ()Ljava/lang/String;
The code is able to find the class and its other methods. But it is not able to locate the constructor.
Can any one help me to locate the problem?