Session variables
Re: Session variables
Had 2 more problems today where android session variables were wiped out.
Re: Session variables
AGain this morning 2 more android devices lost session variables.
Re: Session variables
Thanks for letting us know this. We will have a code review as soon as possible see if there's any possibility may cause this issue. We will also keep testing our program see if we can reproduce it. As long as we can reproduce this issue, it would be easy to fix it.
Re: Session variables
The SharedStates variables are stored in device's internal storage that is private for app, only the following situations can clear it
1. Explicitly clear it from server
2. The device's internal storage is full, in this case, OS may clear it. (It rarely happen)
3. User deleted server profile or used a new one
4. User uninstalled the app
5. User cleared app data in device settings
1. Explicitly clear it from server
2. The device's internal storage is full, in this case, OS may clear it. (It rarely happen)
3. User deleted server profile or used a new one
4. User uninstalled the app
5. User cleared app data in device settings
Re: Session variables
Happened 2 more times this weekend.
How would server clear them all at once (not individually)?
How does user clear them in settings (android)?
How would server clear them all at once (not individually)?
How does user clear them in settings (android)?
Re: Session variables
Server can't clear them all.
In Android settings, under each app, there is a "Clear Data" button, which will clear saved data.
In Android settings, under each app, there is a "Clear Data" button, which will clear saved data.
Re: Session variables
The android clear cache seems to be what is happening. There is a free app you can download too to clear the cache automatically at intervals which is the likely culprit.
Re: Session variables
That makes sense. Thank you.