I am trying to make an app in which the user can store x number of alarm times.
The other next time the user opens it up, all the previous sequences of times are shown…he can select one sequence, total mumber of alarms, and change first alarm time.
I will be saving a maximum of 10 such sequences. Which will be better for storing this data…SharedPreferences or SQLite ?
if records is only limit to 10 then
SharedPreferencesis the best choice as it is easy,fast and quick to implement..