For my android application I'm using the "sharedPreferences" to save the logIn password and some other data. I have the following problem:
When I install my APK and I create an account the LogIn data are saved with sharedPreferences. After deleting my application and reinstalled I can still use the old password.
Is there any possibility to remove what ever is saved through sharedPreferences? My last question is, is the method to save my LogIn Password with sharedPreferences a good technique or I should use something else?
Thank you in advance!
As far as I know, It's a good way to use SharedPreferences when you need to save Login Password, Now coming to your main question, You might have android:allowBackup="true"
in your manifest, Try passing "False" instead
Update
Just for your information, SharedPreferences deletes the info on uninstallation.