Hi Steve
May I know how to write my java library and wrap it in a java plugin for DroidScript?
I would like to port a my library to be able accessed by DroidScript
It accept script and some input parameters, the script will process the request and return output.
Basically I want :
DroidWrap a = new DroidWrap();
The Execute will execute syntax my language which basically does Web Automation, it is not as simple as above sample which shows only get a page and return HTML response, there are various methods that manipulate the output or send input to a website. Since re-writing it in Javascript takes lots of effort, I would like to make the already written java app to a jar and wrap it to be used by DroidScript.
Can show me some sample to make SDK plugin? Thanks