In my android application ,user has to register by agreeing the terms and condition giving their email id. If user upgrade the application to next version, I should not get the agreement page or email registration window. I am controlling it using global variables but if user upgrade application to newer version, global variables get reset, so user get the agreement page and registration window again. So how can I do this? Thanks for help in advance.
|
You Have two ways to storing your data @ local media.
When i should use Shared Preference ? If your number of storing variable are not more and it should be primitive values then you can use See This for sample code . Or When i should use SQLite Database ? If you have to store number of variable and which are not primitive and also you need that data for long time then you should use See This for sample code . Now its |
|||||||
|
|
You could use SharedPreferences
|
||||
|
|
|
I use this piece of code to display the ChangeLog in my app to detect if the version has changed and display the ChangeLog accordingly. The same logic can be used for displaying or not displaying the Agreement, as the case may be. These are my Global Declarations:
EDIT: Alongwith this code, I also use a
|
||||
|
|
