Gabriel Pettier

Results 130 comments of Gabriel Pettier

I got the same issue and started experimenting with solutions, but i don't have a working one yet https://gist.github.com/tshirtman/4bf8fdf745eb4a961b0f83066fe6a8d3

https://github.com/kivy/python-for-android/blob/develop/pythonforandroid/recipes/android/src/android/activity.py#L4 this one uses mActivity, do you have an exmaple of where we do this call on the class?

i didn't try it, but JavaException has a stacktrace attribute, that seems to be populated with a conversion of the java stacktrace, in check_exception() ? https://github.com/kivy/pyjnius/blob/master/jnius/jnius_utils.pxi#L91 that was already the...

i would assume there https://github.com/kivy/pyjnius/blob/master/jnius/jnius_export_class.pxi#L831-L836 which would mean the error didn't happen in java, it happened in python before the call to the java function, so there is no java...

Hey, sorry for lack of answer, i've had to do some tricks for the windows build to work with python3.8, as they changed how the dll lookup work, i'm not...

This is not a hotline, if you want help, give as much info as possible, if possible a way to reproduce. Don't except immediate help anyway, there is no support...

hm, i'm a bit confused by this discussion, as our tar.gz releases don't contain c files, (and our wheels are of course compiled for each specific python, but that's not...

Thanks for reaching out! I might misremember because it's been years i didn't look at jpype, but i though it was using a different approach, of talking to the JVM...

Thanks a lot for the detailed explanations, and indeed, if anything, surely there are ideas we could use, and it would be worth studying the code, looking at the code...

To use on android, we package pyjnius as art of a python distribution built by python-for-android, (often using buildozer as a easier interface to it, but it's the same), and...