<div dir="ltr">My idea was that with a single string argument and string return value users can simply pass in/return JSON and that would cover multiple arguments and string/int/bool/float/list/dict types.<div><br></div><div>It's a little hacky but probably still nicer than hacking Qt and pyjnius together.<br><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Phil Thompson <<a href="mailto:phil@riverbankcomputing.com">phil@riverbankcomputing.com</a>> ezt írta (időpont: 2020. máj. 11., H, 22:39):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 11/05/2020 18:38, Kálmán Viktor wrote:<br>
> Hello!<br>
> <br>
> I'm wondering if it would be possible to<br>
> extend QAndroidJniObject's callStaticMethod to a version that supports<br>
> passing in a single string argument and the return value is also a <br>
> string.<br>
> <br>
> I tried something like this locally, but both gave me JNI error when <br>
> trying<br>
> to use them (the parameterless int return valued callStaticMethod works<br>
> fine but would it be good to pass in string,  same for return value), <br>
> but<br>
> I'm not really familiar with SIP so it was just guess work (also tried<br>
> changing int to QString but that also gave me an error)<br>
> <br>
>     static int callStaticMethod(const char *className, const char<br>
> *methodName, const char *signature, const char *parameter);<br>
> %MethodCode<br>
>         sipRes = QAndroidJniObject::callStaticMethod<int>(a0, a1, a2, <br>
> a3);<br>
> %End<br>
> <br>
>     static int callStaticMethod(const char *className, const char<br>
> *methodName, const char *parameter);<br>
> %MethodCode<br>
>         sipRes = QAndroidJniObject::callStaticMethod<int>(a0, a1,<br>
> "(Ljava/lang/String;)I", a2);<br>
> %End<br>
<br>
And what about other combinations of arguments? Each combination would <br>
have to be implemented on a case by case basis and I don't want to start <br>
taking random requests.<br>
<br>
Phil<br>
</blockquote></div>