<div dir="ltr">Hello!<div><br></div><div>I'm wondering if it would be possible to extend QAndroidJniObject's callStaticMethod to a version that supports passing in a single string argument and the return value is also a string.</div><div><br></div><div>I tried something like this locally, but both gave me JNI error when trying to use them (the parameterless int return valued callStaticMethod works fine but would it be good to pass in string,  same for return value), but I'm not really familiar with SIP so it was just guess work (also tried changing int to QString but that also gave me an error)</div><div><br></div><div>    static int callStaticMethod(const char *className, const char *methodName, const char *signature, const char *parameter);<br>%MethodCode<br>        sipRes = QAndroidJniObject::callStaticMethod<int>(a0, a1, a2, a3);<br>%End<br><br>    static int callStaticMethod(const char *className, const char *methodName, const char *parameter);<br>%MethodCode<br>        sipRes = QAndroidJniObject::callStaticMethod<int>(a0, a1, "(Ljava/lang/String;)I", a2);<br>%End<br></div></div>