Questions tagged [androlua]

AndroLua is the Lua interpreter ported to the Android platform.

AndroLua is the Lua interpreter ported to the Android platform. Others have ported Lua to Android, but this project is special:

  • it includes LuaJava, so you can access (almost) everything the Android API provides
  • because writing code on the soft keyboard can be hard, you can connect to it using TCP an upload code from your computer

https://github.com/mkottman/AndroLua

2 questions
0
votes
1 answer

Proguard config when using luajava

Trying to Proguard my app that uses luajava (with AndroLua) and it runs fine until I proguard it and then it fails to start, i just get a black screen, and the logs fill up with the below entries which don't stop until app is uninstalled. I'm…
scottyab
  • 23,621
  • 16
  • 94
  • 105
0
votes
1 answer

Passing String arg to Lua method with LuaJava in AndroLua

I have a Lua function defined in a Java String, and I'd like to pass it a String arg String luaCode = "function hello(name) return 'Hello ' + name +'!' end"; Executng code public String runGreetingFromLua(String src, String arg) throws LuaException…
scottyab
  • 23,621
  • 16
  • 94
  • 105