"jni" module - JavaVM "foreign interface" (including Android VM)
Posted: Wed Sep 02, 2015 7:11 pm
I started working on a module which allows uPy to integrate with a JavaVM which provides a compliant JNI interface. The motivation is to extend capabilities of Android port (http://forum.micropython.org/viewtopic.php?f=15&t=898).
Currently, it can for example do:
Currently, it can for example do:
Code: Select all
import jni
System = jni.cls("java/lang/System")
System.out.println("Hello Java!")