0

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?

user5500849
  • 71
  • 1
  • 5

1 Answers1

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