- Home /
Saved informations not removed after uninstall on Android
Hey,
i'm working on my first game. After some tests with my own device and with help of friends, i found something strange.
PlayerPrefs and saved highscores (saved with IO stream as bin file) don't get removed after uninstalling the app.
I tryed to find some informations over the net, but till now couldn't find something similar. All I found was: When you remove the app everything gets deleted. Which, in my case, seems not true.
Any help would be nice. It's the only thing what keeps me from releasing the game :(
Thanks in advance.
Answer by vatsav-gundigara · Dec 28, 2018 at 11:58 AM
Saved informations not removed after uninstall on Android Answer : Change In Android Manifest Like That
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="24" />
<application
android:label="@string/appName"
android:icon="@drawable/icon_small"
android:installLocation="internalOnly"
android:largeHeap="true"
android:allowBackup="false"
android:fullBackupOnly="false"
/>
...
Answer by nindim · Jul 09, 2017 at 05:07 PM
I'm having the same issue, playerprefs are remaining between uninstall/reinstall cycle.
I'm using Android 6.0.1 and Unity 5.6.2p1.
PlayerPrefs have always deleted fro me on uninstall in the past. Not sure what has changed.
Have you submitted a bug for it?
Your answer
Follow this Question
Related Questions
Distribute terrain in zones 3 Answers
How to access android sharedpreferences using unity c# ? 2 Answers
Help with Load function on Button press 1 Answer