My application so far records a number of functions that are performed in a web view and stores them into variables. This has been done using JavaScript that I have injected it into my Android Application. So far I have used the JSON stringify function to create a JSONObject as shown.
var myJSONText = JSON.stringify(chars);
My Question is how do I get the myJSONText Variable from the JavaScript to Java so I can fiddle with it there. I have tired to look for how to do this but have not had any luck. Any help or links would be appreciated.