[android-developers] Does Android cache http-requested data?

2012-10-14 Thread Keith Wiley
Does Android cache http-requested data? I keep a small text file with various app-settings on my webserver. When my app launches, it sends an http request to my webserver to grab the text file and retrieve the settings. This enables me to update the settings of an app installed on a phone in

Re: [android-developers] Does Android cache http-requested data?

2012-10-14 Thread TreKing
On Sun, Oct 14, 2012 at 7:58 AM, Keith Wiley kbwi...@gmail.com wrote: Any ideas why a browser on the same device successfully retrieves the updated file and my code doesn't? Not sure, but looking at the API, there's this:

Re: [android-developers] Does Android cache http-requested data?

2012-10-14 Thread Keith Wiley
Thanks, I'll definitely look into that. I can see that it the cache value is set to true but I can't test whether turning it off fixes the problem right now. I'll try it later. That seems like a very strong possibility for this issue. Thanks again. -- You received this message because you

Re: [android-developers] Does Android cache http-requested data?

2012-10-14 Thread Kristopher Micinski
FYI depending on how caching happens turning off the device won't necessarily solve your problems. kris On Sun, Oct 14, 2012 at 3:58 AM, Keith Wiley kbwi...@gmail.com wrote: Does Android cache http-requested data? I keep a small text file with various app-settings on my webserver. When my