[android-developers] Re: removing preference file and its implication

2008-11-05 Thread Jason Parekh
The SharedPreferences keep a cache in memory. So, when you remove the file, it ends up using the cached value (false) from memory. Try rm'ing the file, killing your process (from Devices tab in eclipse), and then relaunching. jason On Wed, Nov 5, 2008 at 3:30 AM, [EMAIL PROTECTED] [EMAIL

[android-developers] Re: removing preference file and its implication

2008-11-05 Thread Devi Prasad
Hi jason, that works! Thanks for pointing me to it. On Thu, Nov 6, 2008 at 10:40 AM, Jason Parekh [EMAIL PROTECTED] wrote: The SharedPreferences keep a cache in memory. So, when you remove the file, it ends up using the cached value (false) from memory. Try rm'ing the file, killing your