I am making simple app for android using python and kivy. My app generates certain results. And those are regular variables. My question is what is the best way to save those results so I could have some sort of history of my results?
Asked
Active
Viewed 81 times
0
-
Some useful info here: http://stackoverflow.com/questions/31029380/kivy-and-android-sharedpreferences – Daniel Nugent Nov 28 '15 at 18:06
-
1sqlite and shared preferences those are your options imo – Bhargav Nov 28 '15 at 18:07
-
check the answer below – Androider Nov 29 '15 at 10:57
-
Thank you all, I used Sqlite and it's exactly what I wanted + it's super easy! – user5500849 Nov 30 '15 at 18:13
1 Answers
0
Save value to shared preferences or sqlite or file:
for share preferences guide visit: http://developer.android.com/training/basics/data-storage/shared-preferences.html
for sqlite guide visit : http://developer.android.com/reference/android/database/sqlite/package-summary.html
For storage options: http://developer.android.com/guide/topics/data/data-storage.html

Androider
- 3,833
- 2
- 14
- 24