Embed Python in Java on Android

android, java, python

Solution

Take a look on this, it works for J2SE, you can try run on Android.

Problem

By embed I mean execute Python code from String in Java. Jython won't compile for Android, and Scripting Layer for Android doesn't seem to let me embed Python through my Java application. So how to embed Python in a Java application on Android?

Original source

Related problems