In fact, you can easily port the Lua library to Android using the NDK . Take a look at my attempt - AndroLua , which allows you to run scripts, write them using the GUI or over the network and print output from print .
It even comes with LuaJava , so you can work with Java objects in Lua, for example, the current launch of Activity is available in Lua as a global Activity , and from this you can call, for example, activity:setTitle('Modified from Lua') .
Michal kottman
source share