tags:

views:

37

answers:

1

I want to create a settings file for my app which I store in the internal memory. I am wondering if this file will be deleted when the user updates the app to a newer version.

+2  A: 

No they are only deleted on uninstall. You want to look into SharedPreferences though for storing basic preferences.

BrennaSoft
Thank you, I overlooked that part.
achie