I am setting a value in localStorage while running the app. The working of this app is based on the value being set in localStorage. Exiting the app or rebooting the device does not cause any change in the data being stored in localStorage. This value is cleared when the app is manually removed. The value is again being set after installing and executing the app. This is fine. But the problem is the value is not being cleared if I re-install the app without removing. It takes the old value from localStorage. How to clear the localStorage when updating the app? Please help
How to clear localStorage when updating an app in webOS?
699 Views Asked by indira At
1
There are 1 best solutions below
Related Questions in LOCAL-STORAGE
- Using html5 localstorage instead of cookies with passport.js
- Javascript: localStorage.getItem(key) not working
- What is the minimum "acceptable" delay for a local storage in an interval loop (for "auto-saving")?
- Ionic local storage and routing
- Android How to save msg into local storage?
- Get image and save in storage
- In angularjs how do you catch an error for ngStorage when localStorage is full?
- Sort object by array within array?
- Storing the last input text whilst using the POST method with PHP
- can i save data of an my app user in a file not data base
- How to save number of times a user has tapped on a view
- How do I clear localStorage with a button?
- Does Python have a default Caching service
- How to increase size of local Storage for sencha app
- Use LocalStorage in WinForms WebBrowser Control - change event not recieved
Related Questions in WEBOS
- Pop up or notification in webOS
- Is there any way to keep LG WebOS service alive?
- How to support OTA video in custom web app (for LG TV)?
- Launch ares-launch ERR! uncaughtException Error: spawn cmd ENOENT
- Parse HTML Page and Access Textfields and Buttons on webos
- Submit and store data in webOS application?
- simulator for windows phone 7 and webos
- JQuery fade in function causes everything to disappear in WebOS application?
- Floating widget application on LG webOS Smart TV
- link my mysql database with my webOS application for tv lg
- which webOS Enyo element/component is suitable for this case?
- webos: swipe to delete rows / lists. howto?
- webos / enyo: setting button size explicitly for both landscape and portrait. howto?
- Trying to make 3 columns of data with equal spacing in Enyo
- Can't access components of ModalDialog
Related Questions in ENYO
- enyo framework to integrate which raphael
- Enyo custom event is not handled and undefined in simple example
- Can We use a small part out of Enyo's ilib package?
- Enyo MVC implementation and particle view rendering
- How to programatically change the background image of canvas in enyo
- Download file using enyo
- How to access children component of an enyo kind?
- Converting D3 Blocks to Enyo Component
- Displaying External Webpages within an Enyo App
- Trying to find informtion on how to format enyo controls
- which webOS Enyo element/component is suitable for this case?
- webos: swipe to delete rows / lists. howto?
- Trying to create web services using NODEJS and enyo as a front end
- webos / enyo: setting button size explicitly for both landscape and portrait. howto?
- Trying to make 3 columns of data with equal spacing in Enyo
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would suggest that you store the version number of the app (or a version number corresponding with a data model version) and compare that on app startup. When your app starts, compare the data in local storage against the new version number and clear values when they are outdated.