Tuesday, 13 August 2013

Android Service reads localStorage?

Android Service reads localStorage?

I have developed a PhoneGap application for Android. The application is
composed by the webapp (HTML/jQuery) and a background service (Java code)
that's started by the webapp.
This webapp writes to window.localStorage like
<script>
window.localStorage.setItem("name","MyName");
</script>
Is it possible to read this name that is in the localStorage from my Java
code?

No comments:

Post a Comment