DroidDweeb
Lurker
We have a web application geared towards mobile phones. It was originally targeted for the iPhone safari browser, but we would like to advertise that it is Android compatible as well.
The webkit browser displays the pages well, but we're having trouble with the browser displaying out of date information from the cache. We're adding the usual response headers...
...but the user has to refresh the screen for the app to make a request for updated information.
Is there something specific that the Android browser looks for when deciding to pull a cached or fresh copy of a page?
Thanks
The webkit browser displays the pages well, but we're having trouble with the browser displaying out of date information from the cache. We're adding the usual response headers...
Code:
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", -1);
Is there something specific that the Android browser looks for when deciding to pull a cached or fresh copy of a page?
Thanks