rubicon-java
rubicon-java copied to clipboard
A bridge interface between Python and Java.
#23 added an explicit warning for any attempt to subclass a Java class. This is a workaround to flag a known error case. We should add support for subclassing. The...
**Describe the bug** If there's a Java exception, we need to at least clear the exception so JNI knows we're aware of it. When do we so, it is smart...
**Describe the bug** I'm not able to instantiate the `JavaClass`. Segmentation fault (core dumped) **To Reproduce** Steps to reproduce the behavior: 1. Cloned the repository; 2. Installed the package locally...
Do you have a detailed tutorial? I didn't find a detailed tutorial on the official website.
Currently, `rubicon-java` cannot be used to implement a Java Interface's methods that return data types other than `int` and `void`. This means the following Interface is unimplementable in Python at...
Right now, rubicon-java only looks at the immediate interfaces a class implements along with its superclasses. `ArrayAdapter` in Android fails to find `SpinnerAdapter`, so we have to do this ugly...