Reputation: 3869
I know, that's a long title. However any shorter title would be a duplicate of the tons of other questions of this kind here on StackOverflow.
I am searching for a scripting language I could embed into my Android application. The user would write a script. Later on I trigger a specific function of this script and process its returned result. The triggering and processing should run without any console - like - gui just in the background while the user is viewing a beautiful android activity. This is what I would like to achieve. However I did not find a language for Android that suits my needs. It should be:
I found no language, which suits all my needs.
I found:
Is there really no language available that suits my needs? Wouldn't we need a language like it which is easy to embed?
Upvotes: 1
Views: 650
Reputation: 3869
I finally found a project which fits to my needs: BeanShell (beanshell.org) .
It is Java-like but more easy. It has direct access to Java libraries and sharing variables between the host app and the script is very easy. It is lightweight. It is quiet popular and has a good documentation (even for android purposes)
Upvotes: 1