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