I have an app that saves game info (player names and scores, etc.):
File.WriteString(File.DirInternal, "SavedHand.txt", GameString)
The game is currently in Closed Testing on Google Play. I expect that when I uninstall the game this file should get uninstalled as well. When I uninstall then download the game again I get the previous saved values for the game, not the new default values. It looks like the file SavedHand.txt is persisting in DirInternal when I uninstall the app but as I understand that shouldn't be the case.
Any insights why?