Is it possible to evaluate a string of python code (or Perl) from Java when developing Android applications?
I am try to do something like evaluating a text-input script:
e.g.
String script = text1.getText().toString();
String result = PythonRuntime.evaluate(script);
text2.setText(result);