I need to generate callbacks to Lua from within android plugin, going through the forum I can see some references but nothing that jumps out (to my very limited experience with android/java)
I recently wrote an Objective C library where I used the the following technique to allow callbacks to the Lua code from anywhere within the library
https://forums.coronalabs.com/topic/27486-ios-calling-lua-from-my-mm-module/
This has been working well, so now hope to implement similar in the Android version of our app being developed.
However, I can’t see how to go about it, all examples I can see return a result directly from a method called from lua, whereas I need to generate ad-hoc lua callbacks from within the plugin
Is there a solution to do this in android?
Scott